20 lines
543 B
PHP
20 lines
543 B
PHP
<?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>
|