Frontend\Modules\Mailmotor\Actions\Unsubscribe::parse PHP 메소드

parse() 개인적인 메소드

Parse the data into the template
private parse ( ) : void
리턴 void
    private function parse()
    {
        // form was unsubscribed?
        if ($this->URL->getParameter('unsubscribed') == 'true') {
            // show message
            $this->tpl->assign('mailmotorUnsubscribeIsSuccess', true);
            // hide form
            $this->tpl->assign('mailmotorUnsubscribeHideForm', true);
        }
    }