24 lines
462 B
PHP
24 lines
462 B
PHP
<?php
|
|
/**
|
|
* Controller is the customized base controller class.
|
|
* All controller classes for this application should extend from this base class.
|
|
*/
|
|
class MSController extends CController
|
|
{
|
|
public $layout = '//layouts/main';
|
|
|
|
public $breadcrumbs = array();
|
|
|
|
public $selectedNav = '';
|
|
|
|
public $js_scripts = array();
|
|
|
|
public $title = null;
|
|
|
|
|
|
public function beforeAction($e){
|
|
Yii::app()->hitcounter->increment();
|
|
|
|
return parent::beforeAction($e);
|
|
}
|
|
} |