コード例 #1
0
 /**
  * @see Mustache
  */
 protected function _renderPartial($tag_name, $leading, $trailing)
 {
     $output = '';
     $this->_pushTemplateName($tag_name);
     try {
         $output = parent::_renderPartial($tag_name, $leading, $trailing);
     } catch (MustacheException $exception) {
         throw $this->buildExceptionWithTemplateNamesInMessage($exception);
     }
     $this->_popTemplateName();
     return $output;
 }