コード例 #1
0
ファイル: theme.php プロジェクト: rundiz/fuel-start
 public function __construct(array $config = array())
 {
     parent::__construct($config);
 }
コード例 #2
0
ファイル: theme.php プロジェクト: indigophp/fuel-core
 /**
  * {@inheritdocs}
  *
  * Finds the file in parent themes as well
  */
 public function find_file($view, $themes = null)
 {
     if (is_null($themes)) {
         $themes = $this->get_parent_themes($this->active['name']);
     }
     return parent::find_file($view, $themes);
 }