1: <?php
2:
3: /**
4: * @package application.modules.accounts
5: */
6: class AccountsModule extends X2WebModule {
7: public function init() {
8: // this method is called when the module is being created
9: // you may place code here to customize the module or the application
10:
11: // import the module-level models and components
12: $this->setImport(array(
13: 'accounts.models.*',
14: 'accounts.components.*',
15: // 'application.controllers.*',
16: 'application.components.*',
17: ));
18: }
19: }
20: