本文整理汇总了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();
}