EliteConf
 All Data Structures Namespaces Files Functions Variables Pages
_view.php
Go to the documentation of this file.
1 <?php
2 /* @var $this UsersController */
3 /* @var $data Users */
4 ?>
5 
6 <div class="view">
7 
8  <b><?php echo CHtml::encode($data->getAttributeLabel('userid')); ?>:</b>
9  <?php echo CHtml::link(CHtml::encode($data->userid), array('view', 'id'=>$data->userid)); ?>
10  <br />
11 
12  <b><?php echo CHtml::encode($data->getAttributeLabel('username')); ?>:</b>
13  <?php echo CHtml::encode($data->username); ?>
14  <br />
15 
16  <b><?php echo CHtml::encode($data->getAttributeLabel('firstname')); ?>:</b>
17  <?php echo CHtml::encode($data->firstname); ?>
18  <br />
19 
20  <b><?php echo CHtml::encode($data->getAttributeLabel('lastname')); ?>:</b>
21  <?php echo CHtml::encode($data->lastname); ?>
22  <br />
23 
24  <b><?php echo CHtml::encode($data->getAttributeLabel('email')); ?>:</b>
25  <?php echo CHtml::encode($data->email); ?>
26  <br />
27 
28  <b><?php echo CHtml::encode($data->getAttributeLabel('password')); ?>:</b>
29  <?php echo CHtml::encode($data->password); ?>
30  <br />
31 
32 
33 </div>