人人商城

receiver.php 383B

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. require_once EWEI_SHOPV2_INC . 'receiver.php';
  9. class Ewei_shopv2ModuleReceiver extends Receiver
  10. {
  11. public function receive()
  12. {
  13. parent::receive();
  14. }
  15. }
  16. ?>