예제 #1
0
파일: layout.php 프로젝트: pnixx/boot
 /**
  * Генерация CSS
  * @param $name
  * @return string
  */
 public function stylesheet_link_tag($name)
 {
     return Boot_View::getInstance()->stylesheet_link_tag($name);
 }
예제 #2
0
파일: boot.php 프로젝트: pnixx/boot
 /**
  * Инициализируем вьюху
  * @return string
  */
 private function init_view()
 {
     //Запускаем инстанс
     return Boot_View::getInstance()->run();
 }
예제 #3
0
파일: controller.php 프로젝트: pnixx/boot
 public function _render($name)
 {
     return Boot_View::getInstance()->render($name);
 }