本文整理汇总了PHP中MainController::loadEngineTasks方法的典型用法代码示例。如果您正苦于以下问题:PHP MainController::loadEngineTasks方法的具体用法?PHP MainController::loadEngineTasks怎么用?PHP MainController::loadEngineTasks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MainController
的用法示例。
在下文中一共展示了MainController::loadEngineTasks方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: pre_module_load
if (Config::Get('DEBUG_MODE') == true) {
DB::show_errors();
} else {
DB::hide_errors();
}
if (!DB::connect(DBASE_USER, DBASE_PASS, DBASE_NAME, DBASE_SERVER)) {
Debug::showCritical(Lang::gs('database.connection.failed') . ' (' . DB::$errno . ': ' . DB::$error . ')');
die;
}
# Set the charset type to send to mysql
if (Config::Get('DB_CHARSET_NAME') !== '') {
DB::query('SET NAMES \'' . Config::Get('DB_CHARSET_NAME') . '\'');
}
# Include ORM
#include_once(VENDORS_PATH.DS.'orm'.DS.'idiorm.php');
#include_once(VENDORS_PATH.DS.'orm'.DS.'paris.php');
#ORM::configure('mysql:host='.DBASE_SERVER.';dbname='.DBASE_NAME);
#ORM::configure('username', DBASE_USER);
#ORM::configure('password', DBASE_PASS);
}
include CORE_PATH . DS . 'bootstrap.inc.php';
if (function_exists('pre_module_load')) {
pre_module_load();
}
MainController::loadEngineTasks();
define('ACTIVE_SKIN_PATH', LIB_PATH . DS . 'skins' . DS . CURRENT_SKIN);
Template::setTemplatePath(TEMPLATES_PATH);
Template::setSkinPath(ACTIVE_SKIN_PATH);
if (function_exists('post_module_load')) {
post_module_load();
}