本文整理匯總了PHP中ICE_Loader::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP ICE_Loader::init方法的具體用法?PHP ICE_Loader::init怎麽用?PHP ICE_Loader::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ICE_Loader
的用法示例。
在下文中一共展示了ICE_Loader::init方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: define
*/
if (!defined('INFINITY_ERROR_REPORTING')) {
define('INFINITY_ERROR_REPORTING', INFINITY_ERROR_HANDLING);
}
/**
* ICE error reporting
*/
if (!defined('ICE_ERROR_REPORTING')) {
define('ICE_ERROR_REPORTING', INFINITY_ERROR_REPORTING);
}
/**
* Load the ICE lib loader
*/
require_once INFINITY_ICE_PATH . '/loader.php';
// initialize ICE
ICE_Loader::init(INFINITY_ICE_URL);
// setup translation
load_theme_textdomain(INFINITY_TEXT_DOMAIN, WP_LANG_DIR . '/' . INFINITY_SLUG);
// initialize enqueuer and configure actions
if (is_admin()) {
ICE_Enqueue::instance()->styles_on_action('load-appearance_page_' . INFINITY_ADMIN_PAGE)->scripts_on_action('load-appearance_page_' . INFINITY_ADMIN_PAGE);
} else {
ICE_Enqueue::instance()->styles_on_action('wp_enqueue_scripts')->scripts_on_action('wp_enqueue_scripts');
}
// load Infinity API
require_once INFINITY_API_PATH . '/scheme.php';
require_once INFINITY_API_PATH . '/sections.php';
require_once INFINITY_API_PATH . '/options.php';
require_once INFINITY_API_PATH . '/features.php';
require_once INFINITY_API_PATH . '/widgets.php';
require_once INFINITY_API_PATH . '/screens.php';