Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / properties / options / items / RadioPropertyItem.class.php
blob4d8ed7a21ef44b290c962a10c0000a1bd243b1cb
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Holds the RadioPropertyItem class
6 * @package PhpMyAdmin
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /* This class extends the OptionsPropertyOneItem class */
13 require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
15 /**
16 * Single property item class of type radio
18 * @package PhpMyAdmin
20 class RadioPropertyItem extends OptionsPropertyOneItem
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 "radio";