Sha256: 8fc0c35cf9eb317b6b5ea3c3bad6b81444d719e356f7a5f3df52f6378be7ddaa
Contents?: true
Size: 837 Bytes
Versions: 2
Compression:
Stored size: 837 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Holds the OptionsPropertyMainGroup class * * @package PhpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; } /* This class extends the OptionsPropertyGroup class */ require_once 'libraries/properties/options/OptionsPropertyGroup.class.php'; /** * Group property item class of type main * * @package PhpMyAdmin */ class OptionsPropertyMainGroup extends OptionsPropertyGroup { /** * Returns the property item type of either an instance of * - OptionsPropertyOneItem ( f.e. "bool", "text", "radio", etc ) or * - OptionsPropertyGroup ( "root", "main" or "subgroup" ) * - PluginPropertyItem ( "export", "import", "transformations" ) * * @return string */ public function getItemType() { return "main"; } } ?>
Version data entries
2 entries across 2 versions & 1 rubygems