1<?php
2/* vim: set expandtab sw=4 ts=4 sts=4: */
3/**
4 * Holds the PhpMyAdmin\Properties\Options\Items\SelectPropertyItem class
5 *
6 * @package PhpMyAdmin
7 */
8namespace PhpMyAdmin\Properties\Options\Items;
9
10use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem;
11
12/**
13 * Single property item class of type select
14 *
15 * @package PhpMyAdmin
16 */
17class SelectPropertyItem extends OptionsPropertyOneItem
18{
19    /**
20     * Returns the property item type of either an instance of
21     *  - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool",
22     *  "text", "radio", etc ) or
23     *  - PhpMyAdmin\Properties\Options\OptionsPropertyGroup   ( "root", "main"
24     *  or "subgroup" )
25     *  - PhpMyAdmin\Properties\Plugins\PluginPropertyItem     ( "export", "import", "transformations" )
26     *
27     * @return string
28     */
29    public function getItemType()
30    {
31        return "select";
32    }
33}
34