systemWelcome.php
本文整理于网络,仅供阅读参考,如有不妥之处,敬请批评指正!如果您想加入微擎社区版技术大牛微信群和QQ群,请联系微信: ccccyyyy4444 或者 QQ:155120699
自定义首页应用
当自定义系统首页时,需要完善 systemWelcomeDisplay() 方法,此方法返回的内容将会显示在系统首页中。
Tips:自2.5.3开始,首页应用增加用户设置自己的内容功能,系统调用systemWelcomeDisplay()方法时,会传入参数uid(此uid代表设置该应用的用户uid),开发者需要在设计首页应用时支持不同用户设置对应不同的内容。通俗点说:数据跟用户走,开发首页应用时要存下用户uid;取数据时,根据传入的uid取对应的内容。
class We7_demoModuleSystemWelcome extends WeModuleSystemWelcome {
/**
* @param int $uid 用户uid(此uid是在客户端设置该应用内容的用户uid)
*/
public function systemWelcomeDisplay($uid = 0) {
//开发者根据用户uid调取对应的内容
echo '系统首页显示内容';
//或是也可以引用一个模板
include $this->template('display');
}
}
- we7_demo 为模块名称
为自定义首页添加其它后台功能
如果需要在自定义系统首页中增加功能,比如要增加幻灯片,公告等功能,可以在设计模块时,增加功能菜单,进入模块后将在左侧显示。
创建菜单时,指定菜单标识,需要在 systemWelcome.php 文件中实现相应的方法:doPage菜单标识()
class We7_demoModuleSystemWelcome extends WeModuleSystemWelcome {
public function systemWelcomeDisplay($uid = 0) {
echo '系统首页显示内容';
//或是也可以引用一个模板
//此处获取幻灯片配置,用于展示
include $this->template('display');
}
public function doPageSetting() {
global $_W;
//此处增加保存幻灯片的操作
include $this->template('setting');
}
public function doPageContent() {
global $_W;
include $this->template('goods');
}
}
为自定义首页添加其他前台功能
如果需要在自定义系统首页跳转其他二级页面,比如分类及详情页等,需要:
- 1.生成前台链接(必要参数:module_type=system_welcome,可选参数(依项目需求自行定夺):direct=1),如:
$this->createWebUrl('detail', array('id' => 1, 'direct' => 1, 'module_type' => 'system_welcome'));
- 2.实现对应的方法:doPage方法名()。下面是一个简单的首页及详情实现:
class We7_demoModuleSystemWelcome extends WeModuleSystemWelcome {
public function systemWelcomeDisplay($uid = 0) {
$list = pdo_getall('demo_news');
foreach ($list as &$item) {
$item['link'] = $this->createWebUrl('detail', array('id' => $item['id'], 'direct' => 1, 'module_type' => 'system_welcome'));
}
unset($item);
include $this->template('display');
}
public function doPageDetail() {
global $_GPC;
$detail = pdo_get('demo_news', array('id' => intval($_GPC['id'])));
include $this->template('detail');
}
...
}
如果看不懂微擎社区版二次开发手册或者遇到问题,请联系微信: ccccyyyy4444 或者 QQ:155120699 ,如果我们有空闲时间,可以免费为您答疑解惑。