Search\Controller\Component\PrgComponent::_actionCheck PHP Метод

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

Checks if the action should be processed by the component.
protected _actionCheck ( ) : boolean
Результат boolean
    protected function _actionCheck()
    {
        $actions = $this->config('actions');
        if (is_bool($actions)) {
            return $actions;
        }
        return in_array($this->request->action, (array) $actions, true);
    }