blob: a02c1e36bb236f2a0f525d8c8f8d58fd982022bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<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('name')); ?>:</b>
<?php echo CHtml::encode($data->name); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('pos_lat')); ?>:</b>
<?php echo CHtml::encode($data->pos_lat); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('pos_long')); ?>:</b>
<?php echo CHtml::encode($data->pos_long); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('published')); ?>:</b>
<?php echo CHtml::encode($data->published); ?>
<br />
</div>
|