|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/CyberCP/public/phpmyadmin/libraries/classes/Properties/Options/ |
Upload File : |
<?php
/**
* The top-level class of the "Options" subtree of the object-oriented
* properties system (the other subtree is "Plugin").
*/
declare(strict_types=1);
namespace PhpMyAdmin\Properties\Options;
use PhpMyAdmin\Properties\PropertyItem;
/**
* Superclass for
* - PhpMyAdmin\Properties\Options\OptionsPropertyOneItem and
* - OptionsProperty Group
*/
abstract class OptionsPropertyItem extends PropertyItem
{
/**
* Name
*
* @var string|null
*/
private $name;
/**
* Text
*
* @var string|null
*/
private $text;
/**
* What to force
*
* @var string|null
*/
private $force;
/**
* @param string $name Item name
* @param string $text Item text
*/
public function __construct($name = null, $text = null)
{
if ($name) {
$this->name = $name;
}
if (! $text) {
return;
}
$this->text = $text;
}
/* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */
/**
* Gets the name
*
* @return string|null
*/
public function getName()
{
return $this->name;
}
/**
* Sets the name
*
* @param string $name name
*/
public function setName($name): void
{
$this->name = $name;
}
/**
* Gets the text
*
* @return string|null
*/
public function getText()
{
return $this->text;
}
/**
* Sets the text
*
* @param string $text text
*/
public function setText($text): void
{
$this->text = $text;
}
/**
* Gets the force parameter
*
* @return string|null
*/
public function getForce()
{
return $this->force;
}
/**
* Sets the force parameter
*
* @param string $force force parameter
*/
public function setForce($force): void
{
$this->force = $force;
}
/**
* Returns the property type ( either "options", or "plugin" ).
*
* @return string
*/
public function getPropertyType()
{
return 'options';
}
}