コード例 #1
0
ファイル: Stylist.php プロジェクト: gmonte/midig-cms
 /**
  * Activates the view finder paths for a theme and its parents.
  *
  * @param Theme $theme
  */
 protected function activateFinderPaths(Theme $theme)
 {
     $this->view->addLocation($theme->getPath() . '/views/');
     if ($theme->hasParent()) {
         $this->activateFinderPaths($this->get($theme->getParent()));
     }
 }