1234567891011121314151617181920 |
- <?php
- if (!(defined('IN_IA'))) {
- exit('Access Denied');
- }
-
-
- require_once IA_ROOT . '/addons/ewei_shopv2/version.php';
- require_once IA_ROOT . '/addons/ewei_shopv2/defines.php';
- require_once EWEI_SHOPV2_INC . 'functions.php';
- require_once EWEI_SHOPV2_INC . 'receiver.php';
- class Ewei_shopv2ModuleReceiver extends Receiver
- {
- public function receive()
- {
- parent::receive();
- }
- }
-
-
- ?>
|