Ejemplo n.º 1
0
 /**
  * create a new template instance
  *
  * @see icms_view_template_file_Object
  * @param bool $isNew is the new tempate new??
  * @return object icms_view_template_file_Object {@link icms_view_template_file_Object} reference to the new template
  **/
 public function &create($isNew = true)
 {
     $tplfile = new icms_view_template_file_Object();
     if ($isNew) {
         $tplfile->setNew();
     }
     return $tplfile;
 }