12 lines
525 B
PHP
12 lines
525 B
PHP
|
|
<?php
|
||
|
|
$this->breadcrumbs = array(
|
||
|
|
Yii::t('intranet', 'Sistema'),
|
||
|
|
);
|
||
|
|
?>
|
||
|
|
<!-- START WIDGET LIST -->
|
||
|
|
<ul class="widgetlist">
|
||
|
|
<li><?php echo CHtml::link('<img src="images/icons/document.png" alt="Usuarios" /><span>Usuarios</span>', $this->createAbsoluteUrl('/usuario')); ?></li>
|
||
|
|
<li><?php echo CHtml::link('<img src="images/icons/document.png" alt="Idiomas" /><span>Idiomas</span>', $this->createAbsoluteUrl('/idioma')); ?></li>
|
||
|
|
</ul>
|
||
|
|
<!-- END WIDGET LIST -->
|