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

25 lines
778 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
* @var string the default layout for the controller view. Defaults to '//layouts/main',
* meaning using a single column layout. See 'protected/views/layouts/main.php'.
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
/**
* @var array the breadcrumbs of the current page. The value of this property will
* be assigned to {@link CBreadcrumbs::links}. Please refer to {@link CBreadcrumbs::links}
* for more details on how to specify this property.
*/
public $breadcrumbs=array();
/**
* @var string the currently active Element in the Navbar
*/
public $selectedNav = '';
2014-05-13 12:40:42 +02:00
}