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


PHP icms::loadService方法代码示例

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


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

示例1: define

<?php

/**
 * module files can include this file for admin authorization
 * the file that will include this file must be located under xoops_url/modules/module_directory_name/admin_directory_name/
 *
 * @copyright	http://www.impresscms.org/ The ImpressCMS Project
 * @license		http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
 * @package		core
 * @version		SVN: $Id: cp_header.php 11006 2011-02-05 17:26:34Z skenow $
 */
// Make sure the kernel launches the module in admin mode and checks the correct permissions
define('ICMS_IN_ADMIN', 1);
/* if mainfile.php is loaded before this file, the icms::$module will not be loaded properly,
 * causing a fatal error when trying to access any property or method of $icmsModule,
 * $xoopsModule or icms::$module
 */
if (defined('XOOPS_MAINFILE_INCLUDED')) {
    icms_core_Debug::setDeprecated('', 'mainfile.php should not be loaded before including cp_header.php');
    icms::loadService('module', array('icms_module_Handler', 'service'), array(TRUE));
}
/** Load the mainfile */
include_once '../../../mainfile.php';
/** Load the admin functions */
include_once ICMS_ROOT_PATH . '/include/cp_functions.php';
// include the default language file for the admin interface
icms_loadLanguageFile(icms::$module->getVar('dirname'), 'admin');
开发者ID:nao-pon,项目名称:impresscms,代码行数:27,代码来源:cp_header.php


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