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

40 lines
1.2 KiB
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 />
<b><?php echo CHtml::encode($data->getAttributeLabel('textEnUp')); ?>:</b>
<?php echo CHtml::encode($data->textEnUp); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('textRuUp')); ?>:</b>
<?php echo CHtml::encode($data->textRuUp); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('textZhUp')); ?>:</b>
<?php echo CHtml::encode($data->textZhUp); ?>
<br />
</div>