1: <?php
2:
3: /**
4: * @package application.modules.marketing
5: */
6: class MarketingModule extends X2WebModule {
7:
8: public function init() {
9: $this->setImport(array(
10: 'marketing.models.*',
11: 'marketing.components.*',
12: // 'application.controllers.*',
13: 'application.components.*',
14: ));
15: }
16: }
17: