コード例 #1
0
ファイル: contentControl.php プロジェクト: com-itzcy/hdjob
 private function _getChannelTpl()
 {
     $dirs = dir::tree_dir(PATH_ROOT . '/templates/');
     $tpl = array();
     foreach ($dirs as $value) {
         if (file_exists($value['dirpath'] . '/config.php')) {
             $config = (include $value['dirpath'] . '/config.php');
             array_push($tpl, array('name' => $config['name'], 'dirname' => $config['dirname']));
         }
     }
     return $tpl;
 }