CommonModule.php 204 B

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