Skip to content

Instantly share code, notes, and snippets.

@jovanialferez
Created September 8, 2012 04:39
Show Gist options
  • Save jovanialferez/3671830 to your computer and use it in GitHub Desktop.
Save jovanialferez/3671830 to your computer and use it in GitHub Desktop.
// have this inside your Users model
public function getUserType()
{
return $this->type == 1 ? "Administrator" : "User";
}
// modify your grid as this
<?php
echo "user" . $model->type;
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'users-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
'username',
'password',
'email',
'userType',
array(
'class'=>'CButtonColumn',
),
),
)); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment