| Server IP : 39.108.156.168 / Your IP : 216.73.216.104 Web Server : nginx/1.24.0 System : Linux e2.ksyuki.com 6.11.0-25-generic #25~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Apr 15 17:20:50 UTC 2 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/php/libraries/classes/Properties/Options/Groups/ |
Upload File : |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options\Groups;
use PhpMyAdmin\Properties\Options\OptionsPropertyGroup;
use PhpMyAdmin\Properties\PropertyItem;
/**
* Group property item class of type subgroup
*/
class OptionsPropertySubgroup extends OptionsPropertyGroup
{
/**
* Subgroup Header
*
* @var PropertyItem|null
*/
private $subgroupHeader;
/* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */
/**
* 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 'subgroup';
}
/**
* Gets the subgroup header
*
* @return PropertyItem|null
*/
public function getSubgroupHeader()
{
return $this->subgroupHeader;
}
/**
* Sets the subgroup header
*
* @param PropertyItem $subgroupHeader subgroup header
*/
public function setSubgroupHeader($subgroupHeader): void
{
$this->subgroupHeader = $subgroupHeader;
}
}