module.php 454 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 志汇酒店营销版模块定义
  4. *
  5. * @author 武汉志汇科技
  6. * @url http://bbs.we7.cc/
  7. */
  8. defined('IN_IA') or exit('Access Denied');
  9. class Zh_jdgjbModule extends WeModule {
  10. public function welcomeDisplay()
  11. {
  12. global $_GPC, $_W;
  13. $url = $this->createWebUrl('ptdata');
  14. if ($_W['role'] == 'operator') {
  15. $url = $this->createWebUrl('hotel');
  16. }
  17. Header("Location: " . $url);
  18. }
  19. }