abstract class PropertyItem (View source)

Provides an interface for Property classes

Methods

string
getPropertyType()

Returns the property type ( either "Options", or "Plugin" ).

string
getItemType()

Returns the property item type of either an instance of

  • PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool", "text", "radio", etc ) or
  • PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main" or "subgroup" )
  • PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )

static|null
getGroup()

Only overwritten in the PhpMyAdmin\Properties\Options\OptionsPropertyGroup class: Used to tell whether we can use the current item as a group by calling the addProperty() or removeProperty() methods, which are not available for simple PhpMyAdmin\Properties\Options\OptionsPropertyOneItem subclasses.

Details

abstract string getPropertyType()

Returns the property type ( either "Options", or "Plugin" ).

Return Value

string

abstract string getItemType()

Returns the property item type of either an instance of

  • PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool", "text", "radio", etc ) or
  • PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main" or "subgroup" )
  • PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" )

Return Value

string

static|null getGroup()

Only overwritten in the PhpMyAdmin\Properties\Options\OptionsPropertyGroup class: Used to tell whether we can use the current item as a group by calling the addProperty() or removeProperty() methods, which are not available for simple PhpMyAdmin\Properties\Options\OptionsPropertyOneItem subclasses.

Return Value

static|null