当前位置: 首页>>代码示例>>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;未经允许,请勿转载。