UnknownSec Bypass
403
:
/
usr
/
share
/
phpmyadmin
/
libraries
/
classes
/
Properties
/
Options
/
Items
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
SelectPropertyItem.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Holds the PhpMyAdmin\Properties\Options\Items\SelectPropertyItem class * * @package PhpMyAdmin */ namespace PhpMyAdmin\Properties\Options\Items; use PhpMyAdmin\Properties\Options\OptionsPropertyOneItem; /** * Single property item class of type select * * @package PhpMyAdmin */ class SelectPropertyItem extends OptionsPropertyOneItem { /** * Returns the property item type of either an instance of * - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem ( f.e. "bool", * "text", "radio", etc ) or * - PhpMyAdmin\Properties\Options\OptionsPropertyGroup ( "root", "main" * or "subgroup" ) * - PhpMyAdmin\Properties\Plugins\PluginPropertyItem ( "export", "import", "transformations" ) * * @return string */ public function getItemType() { return "select"; } }
Copyright © 2025 - UnknownSec