Backend\Core\Engine\Base\ActionEdit::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
 /**
  * Parse the form
  */
 protected function parse()
 {
     parent::parse();
     // assign id, term
     $this->tpl->assign('id', $this->record['id']);
     $this->tpl->assign('term', $this->record['term']);
 }
All Usage Examples Of Backend\Core\Engine\Base\ActionEdit::parse
ActionEdit