HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
JobModule.php
Go to the documentation of this file.
1 <?php
2 
3 class JobModule extends CWebModule
4 {
5  public function init()
6  {
7  // this method is called when the module is being created
8  // you may place code here to customize the module or the application
9 
10  // import the module-level models and components
11  $this->setImport(array(
12  'job.controllers.*',
13  'job.models.*',
14  ));
15 
16  $this->defaultController = 'Jobs';
17  }
18 }