本文整理汇总了PHP中ModuleManager::modules方法的典型用法代码示例。如果您正苦于以下问题:PHP ModuleManager::modules方法的具体用法?PHP ModuleManager::modules怎么用?PHP ModuleManager::modules使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ModuleManager
的用法示例。
在下文中一共展示了ModuleManager::modules方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
/**
* Loads all installed classes definitions.
*
* Do not use directly.
*/
public static final function load_modules()
{
self::$modules = array();
$installed_modules = ModuleManager::get_load_priority_array(true);
$cached = false;
if (FORCE_CACHE_COMMON_FILES) {
$cache_file = DATA_DIR . '/cache/common.php';
if (!file_exists($cache_file)) {
self::create_common_cache();
}
ob_start();
require_once $cache_file;
ob_end_clean();
$cached = true;
}
foreach ($installed_modules as $row) {
$module = $row['name'];
$version = $row['version'];
ModuleManager::register($module, $version, self::$modules);
}
// all commons already loaded by FORCE_CACHE_COMMON_FILES
if ($cached) {
return;
}
$commons_with_code = Cache::get('commons_with_code');
if ($commons_with_code === null) {
$commons_with_code = array();
foreach ($installed_modules as $row) {
$module = $row['name'];
$version = $row['version'];
if (self::common_has_code($module, $version)) {
$commons_with_code[$module] = $version;
}
}
Cache::set('commons_with_code', $commons_with_code);
// this code includes all Common files to check for the code
// because there is a return
return;
}
foreach ($commons_with_code as $module => $version) {
if (isset(self::$modules[$module])) {
self::include_common($module, $version);
}
}
}