Frontend\Core\Engine\Block\Widget::getAction PHP Метод

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

Get the current action REMARK: You should not use this method from your code, but it has to be public so we can access it later on in the core-code
public getAction ( ) : string
Результат string
    public function getAction()
    {
        // no action specified?
        if ($this->action === null) {
            $this->setAction($this->config->getDefaultAction());
        }
        // return action
        return $this->action;
    }