本文整理汇总了PHP中load::plugin方法的典型用法代码示例。如果您正苦于以下问题:PHP load::plugin方法的具体用法?PHP load::plugin怎么用?PHP load::plugin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类load
的用法示例。
在下文中一共展示了load::plugin方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct()
{
global $_M;
parent::__construct();
$this->moduleclass = load::mod_class('content/class/sys_product', 'new');
//
//$this->shop = load::app_class('shop/admin/class/sys_goods', 'new');
if (!($this->shop = load::plugin('doproduct_plugin_class', '1'))) {
$this->shop = load::mod_class('content/class/sys_shop', 'new');
}
$this->paraclass = load::mod_class('system/class/sys_para', 'new');
$this->module = 3;
}
示例2: __construct
/**
* 初始化
*/
public function __construct()
{
parent::__construct();
global $_M;
met_cooike_start();
//读取已登陆管理员信息
$this->load_language();
//语言加载
$this->check();
//验证管理员
load::plugin('doadmin');
//插件加载
}
示例3: __construct
/**
* 初始化
*/
public function __construct()
{
parent::__construct();
global $_M;
$this->tem_dir();
//确定模板根目录
$this->load_language();
//语言加载
//met_cooike_start();//读取已登陆会员信息
$this->load_publuc_data();
//加载公共数据
load::plugin('doweb');
//加载插件
}