Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / properties / options / groups / OptionsPropertyRootGroup.class.php
bloba081744fad2852979d406199f971dec3823eddc9
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Holds the OptionsPropertyRootGroup class
6 * @package PhpMyAdmin
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /* This class extends the OptionsPropertyGroup class */
13 require_once 'libraries/properties/options/OptionsPropertyGroup.class.php';
15 /**
16 * Group property item class of type root
18 * @package PhpMyAdmin
20 class OptionsPropertyRootGroup extends OptionsPropertyGroup
22 /**
23 * Returns the property item type of either an instance of
24 * - OptionsPropertyOneItem ( f.e. "bool", "text", "radio", etc ) or
25 * - OptionsPropertyGroup ( "root", "main" or "subgroup" )
26 * - PluginPropertyItem ( "export", "import", "transformations" )
28 * @return string
30 public function getItemType()
32 return "root";