示例#1
0
<h2>View User <?php 
echo $user->id;
?>
</h2>

<div class="actionBar">
[<?php 
echo MyHtml::link('New User', array('create'));
?>
]
[<?php 
echo MyHtml::link('Update User', array('update', 'id' => $user->id));
?>
]
[<?php 
echo MyHtml::linkButton('Delete User', array('submit' => array('delete', 'id' => $user->id), 'confirm' => 'Are you sure?'));
?>
]
[<?php 
echo MyHtml::link('Manage User', array('admin'));
?>
]
</div>

<table class="table table-bordered">
<tr>
	<th class="label"><?php 
echo MyHtml::encode($user->getAttributeLabel('email'));
?>
</th>
    <td><?php