人人商城

module.php 359B

1234567891011121314151617181920
  1. <?php
  2. if (!(defined('IN_IA'))) {
  3. exit('Access Denied');
  4. }
  5. require_once IA_ROOT . '/addons/ewei_shopv2/version.php';
  6. require_once IA_ROOT . '/addons/ewei_shopv2/defines.php';
  7. require_once EWEI_SHOPV2_INC . 'functions.php';
  8. class Ewei_shopv2Module extends WeModule
  9. {
  10. public function welcomeDisplay()
  11. {
  12. header('location: ' . webUrl());
  13. exit();
  14. }
  15. }
  16. ?>