Keith, on 16 November 2012 - 04:41 AM, said:
I put it into some view like admin view, index view, etc.
this is from index view :
<?php
/* @var $this UserController */
/* @var $dataProvider CActiveDataProvider */
$this->breadcrumbs = array(
'Users',
);
$this->menu = array(
array('label' => 'Create User', 'url' => array('create')),
array('label' => 'Manage User', 'url' => array('admin')),
array('label' => 'Download Member Card', 'url' => array('pdf', 'id' => $model->id_user)), //here it is
);
?>
<h1>Users</h1>
<?php
$this->widget('zii.widgets.CListView', array(
'dataProvider' => $dataProvider,
'itemView' => '_view',
));
?>

Help














