2015-06-27 15:08:58 +00:00
< ? php
/* @var $this TranslationController */
/* @var $model Translation */
$this -> breadcrumbs = array (
'Translations' => array ( 'index' ),
$model -> name ,
);
$this -> menu = array (
array ( 'label' => 'List Translation' , 'url' => array ( 'index' )),
array ( 'label' => 'Create Translation' , 'url' => array ( 'create' )),
array ( 'label' => 'Update Translation' , 'url' => array ( 'update' , 'id' => $model -> id )),
array ( 'label' => 'Delete Translation' , 'url' => '#' , 'linkOptions' => array ( 'submit' => array ( 'delete' , 'id' => $model -> id ), 'confirm' => 'Are you sure you want to delete this item?' )),
array ( 'label' => 'Manage Translation' , 'url' => array ( 'admin' )),
);
?>
< h1 > View Translation #<?php echo $model->id; ?></h1>
< ? php $this -> widget ( 'zii.widgets.CDetailView' , array (
'data' => $model ,
'attributes' => array (
'id' ,
'name' ,
'textEn' ,
'textRu' ,
'textZh' ,
2015-07-02 08:37:15 +00:00
'textEnUp' ,
'textRuUp' ,
'textZhUp' ,
2015-06-27 15:08:58 +00:00
),
)); ?>