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

21 lines
568 B
PHP

<?php
/* @var $this ChannelArticleRelationController */
/* @var $data ChannelArticleRelation */
?>
<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('channelName')); ?>:</b>
<?php echo CHtml::encode($data->channelName); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('articleName')); ?>:</b>
<?php echo CHtml::encode($data->articleName); ?>
<br />
</div>