當前位置: 首頁>>代碼示例>>PHP>>正文


PHP site::load方法代碼示例

本文整理匯總了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();
開發者ID:nilshendriks,項目名稱:kirbycms,代碼行數:30,代碼來源:system.php

示例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();
}
開發者ID:kronius,項目名稱:vidpro,代碼行數:31,代碼來源:index.php


注:本文中的site::load方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。