dokuwiki\Form\DropdownElement::setValueInOptGroups PHP Метод

setValueInOptGroups() защищенный Метод

Set the value in the OptGroups, including the optgroup for the options without optgroup.
protected setValueInOptGroups ( string $value ) : boolean
$value string
Результат boolean
    protected function setValueInOptGroups($value)
    {
        $value_exists = false;
        /** @var OptGroup $optGroup */
        foreach ($this->optGroups as $optGroup) {
            $value_exists = $optGroup->storeValue($value) || $value_exists;
            if ($value_exists) {
                $value = null;
            }
        }
        return $value_exists;
    }