dokuwiki\Form\OptGroup::storeValue PHP Метод

storeValue() публичный Метод

This is intended to be only called from within @see DropdownElement::val()
public storeValue ( string $value ) : boolean
$value string
Результат boolean true if an option with the given value exists, false otherwise
    public function storeValue($value)
    {
        $this->value = $value;
        return isset($this->options[$value]);
    }