/usr/share/phpmyadmin/libraries/classes/Properties/Options
Edit: /usr/share/phpmyadmin/libraries/classes/Properties/Options/OptionsPropertyItem.php (2219B)
name = $name;
}
if (! $text) {
return;
}
$this->text = $text;
}
/* ~~~~~~~~~~~~~~~~~~~~ Getters and Setters ~~~~~~~~~~~~~~~~~~~~ */
/**
* Gets the name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Sets the name
*
* @param string $name name
*
* @return void
*/
public function setName($name)
{
$this->name = $name;
}
/**
* Gets the text
*
* @return string
*/
public function getText()
{
return $this->text;
}
/**
* Sets the text
*
* @param string $text text
*
* @return void
*/
public function setText($text)
{
$this->text = $text;
}
/**
* Gets the force parameter
*
* @return string
*/
public function getForce()
{
return $this->force;
}
/**
* Sets the force parameter
*
* @param string $force force parameter
*
* @return void
*/
public function setForce($force)
{
$this->force = $force;
}
/**
* Returns the property type ( either "options", or "plugin" ).
*
* @return string
*/
public function getPropertyType()
{
return 'options';
}
}