module.php 359 B

12345678910111213141516
  1. <?php
  2. /**
  3. * 模块接口
  4. *
  5. * @author 泸州市音速科技有限公司
  6. * @url https://www.rryong.cn
  7. */
  8. defined('IN_IA') or exit('Access Denied');
  9. class Wike_agingModule extends WeModule
  10. {
  11. public function welcomeDisplay($menus = array())
  12. {
  13. header("Location:/addons/wike_aging/public/admin/index.html?i=".igetcookie('__uniacid'));
  14. }
  15. }