bashgid/web/protected/views/translation/_view.php

29 lines
778 B
PHP

<?php
/* @var $this TranslationController */
/* @var $data Translation */
?>
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('name')); ?>:</b>
<?php echo CHtml::encode($data->name); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('textEn')); ?>:</b>
<?php echo CHtml::encode($data->textEn); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('textRu')); ?>:</b>
<?php echo CHtml::encode($data->textRu); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('textZh')); ?>:</b>
<?php echo CHtml::encode($data->textZh); ?>
<br />
</div>