Backend\Modules\Settings\Actions\Index::parse PHP 메소드

parse() 보호된 메소드

Parse the form
protected parse ( )
    protected function parse()
    {
        parent::parse();
        // show options
        if ($this->needsAkismet) {
            $this->tpl->assign('needsAkismet', true);
        }
        if ($this->needsGoogleMaps) {
            $this->tpl->assign('needsGoogleMaps', true);
        }
        // parse the form
        $this->frm->parse($this->tpl);
        // parse the warnings
        $this->parseWarnings();
    }