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

21 lines
560 B
PHP
Raw Permalink Normal View History

2015-06-26 10:03:20 +00:00
<?php
/* @var $this AlbumArticleRelationController */
/* @var $data AlbumArticleRelation */
?>
<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('albumName')); ?>:</b>
<?php echo CHtml::encode($data->albumName); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('articleName')); ?>:</b>
<?php echo CHtml::encode($data->articleName); ?>
<br />
</div>