TitanFramework::setInternalAdminPageOption PHP Method

setInternalAdminPageOption() public method

Doesn't perform a save, only sets the value in the class variable.
Since: 1.9
public setInternalAdminPageOption ( string $optionName, mixed $value ) : boolean
$optionName string The ID of the option (not namespaced).
$value mixed The value to set.
return boolean Always returns true
    public function setInternalAdminPageOption($optionName, $value)
    {
        // Run this first to ensure that adminOptions carries all our admin page options.
        $this->getInternalAdminOptions();
        $this->adminOptions[$optionName] = $value;
        return true;
    }