Frontend\Modules\Profiles\Actions\ForgotPassword::parse PHP Method

parse() private method

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);
    }