mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
35 lines
No EOL
837 B
PHP
35 lines
No EOL
837 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* Holds the OptionsPropertyRootGroup class
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
if (! defined('PHPMYADMIN')) {
|
|
exit;
|
|
}
|
|
|
|
/* This class extends the OptionsPropertyGroup class */
|
|
require_once 'libraries/properties/options/OptionsPropertyGroup.class.php';
|
|
|
|
/**
|
|
* Group property item class of type root
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
class OptionsPropertyRootGroup extends OptionsPropertyGroup
|
|
{
|
|
/**
|
|
* 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 "root";
|
|
}
|
|
}
|
|
?>
|