BaikalAdmin\Controller\Users::actionNew PHP Метод

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

protected actionNew ( )
    protected function actionNew()
    {
        $this->oModel = new \Baikal\Model\User();
        $this->initForm();
        if ($this->oForm->submitted()) {
            $this->oForm->execute();
            if ($this->oForm->persisted()) {
                $this->oForm->setOption("action", $this->linkEdit($this->oForm->modelInstance()));
            }
        }
    }