Frontend\Modules\Profiles\Actions\ForgotPassword::parse PHP 메소드

parse() 개인적인 메소드

Parse the data into the template
private parse ( )
    private function parse()
    {
        // e-mail was sent?
        if ($this->URL->getParameter('sent') == 'true') {
            // show message
            $this->tpl->assign('forgotPasswordSuccess', true);
            // hide form
            $this->tpl->assign('forgotPasswordHideForm', true);
        }
        // parse the form
        $this->frm->parse($this->tpl);
    }