25 lines
		
	
	
		
			393 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			393 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace backend\modules\calendar;
 | |
| 
 | |
| /**
 | |
|  * calendar module definition class
 | |
|  */
 | |
| class Calendar extends \yii\base\Module
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public $controllerNamespace = 'backend\modules\calendar\controllers';
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function init()
 | |
|     {
 | |
|         parent::init();
 | |
| 
 | |
|         // custom initialization code goes here
 | |
|     }
 | |
| }
 | 
