当前位置: 首页>>代码示例>>PHP>>正文


PHP ResourceLoader::doResourceLoader方法代码示例

本文整理汇总了PHP中ResourceLoader::doResourceLoader方法的典型用法代码示例。如果您正苦于以下问题:PHP ResourceLoader::doResourceLoader方法的具体用法?PHP ResourceLoader::doResourceLoader怎么用?PHP ResourceLoader::doResourceLoader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ResourceLoader的用法示例。


在下文中一共展示了ResourceLoader::doResourceLoader方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: die

// Check if being used in mediaWiki ( ResourceLoader.php is NOT an entry point )
if (is_file(dirname(__FILE__) . '../mwResourceLoader.php') && !defined('SCRIPTLOADER_MEDIAWIKI')) {
    die('ResourceLoader.php is not an entry point when used with the JS2 extension');
}
// Check if we are an entry point or being used as part of MEDIAWIKI:
if (!defined('MEDIAWIKI') && !defined('SCRIPTLOADER_MEDIAWIKI')) {
    // Include settings ( will include LocalSettings.php in the root mwEmbed folder
    require_once dirname(__FILE__) . '/includes/DefaultSettings.php';
    // Load stand alone Resource Loader config
    // ( if running as a remote, mediaWiki variables / functions are already included as part of mediaWiki )
    require_once realpath(dirname(__FILE__)) . '/includes/noMediaWikiConfig.php';
    $myResourceLoader = new ResourceLoader();
    if ($myResourceLoader->outputFromCache()) {
        exit;
    }
    $myResourceLoader->doResourceLoader();
}
class ResourceLoader
{
    // The list of named javascript & css files
    private $namedFileList = array();
    // The language code for the script-loader request
    var $langCode = '';
    // The output string
    var $output = '';
    // Special prepend js var to be added to the top of minification output.
    // useful for special comment tags in minification output
    var $notMinifiedTopOutput = '';
    // The request Key for the js
    var $requestKey = '';
    // Error msg
开发者ID:richhl,项目名称:kalturaCE,代码行数:31,代码来源:ResourceLoader.php


注:本文中的ResourceLoader::doResourceLoader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。