- Aplicar plantilla a la gestión de usuarios. git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@10 77cfc57b-8ef4-1849-9df6-4a38aa5da120
27 lines
776 B
PHP
27 lines
776 B
PHP
<?php
|
|
/**
|
|
* Controller is the customized base controller class.
|
|
* All controller classes for this application should extend from this base class.
|
|
*/
|
|
class Controller extends CController
|
|
{
|
|
/**
|
|
* @var string the default layout for the controller view.
|
|
*/
|
|
public $layout='//layouts/default';
|
|
/**
|
|
* @var array context menu items. This property will be assigned to {@link CMenu::items}.
|
|
*/
|
|
public $menu=array();
|
|
/**
|
|
* @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 título H1 de la página
|
|
*/
|
|
public $pageTitle='';
|
|
|
|
} |