Exemplo n.º 1
0
<?php

/* @var $this ViewArticleController */
/* @var $article Article */
$this->pageTitle = Yii::app()->name;
$this->menu = MenuManager::createLinks();
$this->beginWidget('zii.widgets.CPortlet', array('title' => 'Navigation'));
$this->widget('zii.widgets.CMenu', array('items' => $this->menu, 'htmlOptions' => array('class' => 'operations')));
$this->endWidget();
?>
<h1><?php 
echo $article->title;
?>
</h1>

<p><?php 
echo $article->text;
?>
</p>