本文整理汇总了PHP中util::scanDir方法的典型用法代码示例。如果您正苦于以下问题:PHP util::scanDir方法的具体用法?PHP util::scanDir怎么用?PHP util::scanDir使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类util
的用法示例。
在下文中一共展示了util::scanDir方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($forceLang = '')
{
// Timezone
date_default_timezone_set(date_default_timezone_get());
// Macgic quotes OFF
util::setMagicQuotesOff();
// Configuration
$this->config = util::readJsonFile(DATA . 'config.json', true);
// Error reporting
if ($this->config['debug']) {
error_reporting(E_ALL);
} else {
error_reporting(E_ERROR | E_PARSE);
}
// Tableau des paramètres d'URL
if ($this->getConfigVal('urlRewriting') == 1) {
if (isset($_GET['param'])) {
$this->urlParams = explode($this->getConfigVal('urlSeparator'), $_GET['param']);
}
} else {
foreach ($_GET as $k => $v) {
if ($k != 'p') {
$this->urlParams[] = $v;
}
}
}
// Liste des thèmes
$temp = util::scanDir(THEMES);
foreach ($temp['dir'] as $k => $v) {
$this->themes[$v] = util::readJsonFile(THEMES . $v . '/infos.json', true);
}
// Liste des langues
$this->langs = array('en');
$temp = util::scanDir(LANG);
foreach ($temp['file'] as $k => $v) {
$this->langs[] = substr($v, 0, 2);
}
// Tableau langue courante
if ($forceLang == '') {
$this->lang = util::readJsonFile(LANG . $this->getConfigVal('siteLang') . '.json', true);
} else {
$this->lang = util::readJsonFile(LANG . $forceLang . '.json', true);
}
if (file_exists(THEMES . $this->getConfigVal('theme') . '/lang/' . $this->getConfigVal('siteLang') . '.json')) {
$this->lang = array_merge($this->lang, util::readJsonFile(THEMES . $this->getConfigVal('theme') . '/lang/' . $this->getConfigVal('siteLang') . '.json', true));
}
if (!is_array($this->lang)) {
$this->lang = array();
}
// Quel est le plugin solicité ?
$this->pluginToCall = isset($_GET['p']) ? $_GET['p'] : $this->getConfigVal('defaultPlugin');
}
示例2: listPlugins
private function listPlugins()
{
$data = array();
$dataNotSorted = array();
$dataFromCache = $this->loadPluginsFromCache();
if (ROOT == './' && is_array($dataFromCache)) {
$data = $dataFromCache;
}
// Si pas de cache plugins, on reconstruit le fichier cache
if (!$dataFromCache) {
$items = util::scanDir(PLUGINS);
foreach ($items['dir'] as $dir) {
// Si le plugin est installé on récupère sa configuration
if (file_exists(DATA_PLUGIN . $dir . '/config.json')) {
$dataNotSorted[$dir] = util::readJsonFile(DATA_PLUGIN . $dir . '/config.json', true);
} else {
$dataNotSorted[$dir]['priority'] = '10';
}
}
// On tri les plugins par priorité
$dataSorted = @util::sort2DimArray($dataNotSorted, 'priority', 'num');
foreach ($dataSorted as $plugin => $config) {
$data[] = $this->createPlugin($plugin);
}
// On génère le cache
if (ROOT == './') {
$this->intiPluginsCache($data);
}
}
return $data;
}
示例3: listTemplates
public function listTemplates()
{
$core = core::getInstance();
$data = array();
$items = util::scanDir(THEMES . $core->getConfigVal('theme') . '/', array('header.php', 'footer.php', 'style.css', '404.php'));
foreach ($items['file'] as $file) {
if (in_array(util::getFileExtension($file), array('htm', 'html', 'txt', 'php'))) {
$data[] = $file;
}
}
return $data;
}