本文整理匯總了PHP中site::load方法的典型用法代碼示例。如果您正苦於以下問題:PHP site::load方法的具體用法?PHP site::load怎麽用?PHP site::load使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類site
的用法示例。
在下文中一共展示了site::load方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
// load the rest of the system
load::lib();
load::config();
load::parsers();
load::plugins();
// check for an exisiting content dir
if (!is_dir(c::get('root.content'))) {
die('The Kirby content directory could not be found');
}
// check for an exisiting site dir
if (!is_dir(c::get('root.site'))) {
die('The Kirby site directory could not be found');
}
// set the timezone to make sure we
// avoid errors in php 5.3
@date_default_timezone_set(c::get('timezone'));
// switch on errors
if (c::get('debug')) {
error_reporting(E_ALL);
ini_set('display_errors', 1);
} else {
error_reporting(0);
ini_set('display_errors', 0);
}
if (c::get('troubleshoot')) {
require_once c::get('root.kirby') . '/modals/troubleshoot.php';
exit;
}
$site = new site();
$site->load();
示例2: JsHttpRequest
} else {
$GLOBALS['Jlib_need_cache'] = $cf;
}
}
if (!Jlib_USE_CACHE || !empty($GLOBALS['Jlib_need_cache'])) {
if (!empty($_REQUEST['JsHttpRequest'])) {
require_once "lib/JsHttpRequest.php";
$JsHttpRequest = new JsHttpRequest("utf-8");
$GLOBALS['result'] =& $_RESULT;
define('AJAX', true);
} else {
define('AJAX', false);
}
// создали сайт
$site = new site();
// сделали все включения
while (!$site->load()) {
while ($inc = inc()) {
include_once $inc;
}
}
// сделали все включения и пропарсили до полного удовлетворения
while (!$site->get_parsed()) {
while ($inc = inc()) {
include_once $inc;
}
}
$_SESSION['tiny_mce'] = !empty($_SESSION['Jlib_auth']['admin_auth']);
// Ну и коронный номер на бис:
$site->show();
}