CommonModule.php 236 B

1234567891011121314
  1. <?php
  2. class CommonModule extends CWebModule
  3. {
  4. public function init()
  5. {
  6. $this->setImport(array(
  7. 'common.controllers.*',
  8. 'common.components.*',
  9. 'o2o.components.*',
  10. ));
  11. }
  12. }