Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.143.254.11
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
myadmin /
libraries /
classes /
Properties /
Delete
Unzip
Name
Size
Permission
Date
Action
Options
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
Plugins
[ DIR ]
drwxr-xr-x
2020-10-15 12:07
PropertyItem.php
1.34
KB
-rw-r--r--
2021-02-05 18:27
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * The top-level class of the object-oriented properties system. * * @package PhpMyAdmin */ declare(strict_types=1); namespace PhpMyAdmin\Properties; /** * Provides an interface for Property classes * * @package PhpMyAdmin */ abstract class PropertyItem { /** * Returns the property type ( either "Options", or "Plugin" ). * * @return string */ abstract public function getPropertyType(); /** * 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 */ abstract public function getItemType(); /** * Only overwritten in the PhpMyAdmin\Properties\Options\OptionsPropertyGroup class: * Used to tell whether we can use the current item as a group by calling * the addProperty() or removeProperty() methods, which are not available * for simple PhpMyAdmin\Properties\Options\OptionsPropertyOneItem subclasses. * * @return null */ public function getGroup() { return null; } }