Sha256: 7c13285658ab5f77eaabbcb8c08f2e3f85866cf64955d33e7bea0c2b056bb854
Contents?: true
Size: 836 Bytes
Versions: 2
Compression:
Stored size: 836 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Holds the SelectPropertyItem class * * @package PhpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; } /* This class extends the OptionsPropertyOneItem class */ require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php'; /** * Single property item class of type select * * @package PhpMyAdmin */ class SelectPropertyItem extends OptionsPropertyOneItem { /** * 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 "select"; } } ?>
Version data entries
2 entries across 2 versions & 1 rubygems