예제 #1
0
파일: Type.php 프로젝트: appcia/webwork
 /**
  * @param string $path
  *
  * @return string
  */
 protected function compilePath($path)
 {
     $params = $this->resource->getParams();
     $tpl = new Template($path);
     $tpl->setParams($params, File::WILDCARD);
     $path = $tpl->render();
     return $path;
 }