Backend\Core\Engine\Base\ActionAdd::parse PHP 메소드

parse() 보호된 메소드

Parse the form
protected parse ( )
    protected function parse()
    {
        parent::parse();
        if ($this->frm) {
            $this->frm->parse($this->tpl);
        }
    }

Usage Example

예제 #1
0
파일: Add.php 프로젝트: bwgraves/forkcms
 /**
  * Parse the form
  */
 protected function parse()
 {
     parent::parse();
     // prevent XSS
     $filter = \SpoonFilter::arrayMapRecursive('htmlspecialchars', $this->filter);
     $this->tpl->assign($filter);
 }
All Usage Examples Of Backend\Core\Engine\Base\ActionAdd::parse
ActionAdd