1
0
www.mikescher.com/www/protected/components/MSController.php

17 lines
343 B
PHP
Raw Normal View History

2014-05-13 12:40:42 +02:00
<?php
/**
* Controller is the customized base controller class.
* All controller classes for this application should extend from this base class.
*/
class MSController extends CController
2014-05-13 12:40:42 +02:00
{
2014-05-13 14:06:18 +02:00
public $layout='//layouts/main';
2014-05-13 12:40:42 +02:00
public $breadcrumbs=array();
public $selectedNav = '';
public $js_scripts = array();
2014-06-10 13:27:17 +02:00
public $title = null;
2014-05-13 12:40:42 +02:00
}