EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
_view.php
Go to the documentation of this file.
1 <?php
2 /* @var $this MessageController */
3 /* @var $data Message */
4 ?>
5 
6 <div class="view">
7 
8  <b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
9  <?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
10  <br />
11 
12  <b><?php echo CHtml::encode($data->getAttributeLabel('content')); ?>:</b>
13  <?php echo CHtml::encode($data->content); ?>
14  <br />
15 
16 
17 </div>