Added the zend framework 2 library, the path is specified in line no.26 in zend_modul...
[openemr.git] / phpmyadmin / libraries / properties / options / groups / OptionsPropertyMainGroup.class.php
blob4e69aa7ac87f2b063d2804ed88dc2f0c9fe90ce2
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Holds the OptionsPropertyMainGroup 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 main
18 * @package PhpMyAdmin
20 class OptionsPropertyMainGroup 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 "main";