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

21 lines
544 B
PHP
Raw Normal View History

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