Yii sidemenu

can i rename the side menu Operations to custom name or empty the name

of Sidemenu 2column layout

$this->menu = array(

array(‘label’=>‘xyz’,url=>array(‘controller/action’)),

);

Each view (admin.php, create.php…) provides a menu array that the layout.php uses to build the menu. In each view you can customize the entries.

i knew it i can add menu items as long as i want

but the menu heading is

Operations

i want to change the heading or remove heading

Go to protected/views/layouts/column2.php and change line 12 (or around - i.e. title param of zii.widgets.CPortlet) to whatever you want or simply remove it.

Column2.php is your layout (main) view file for any page that uses two columns layout. Using it you can change whatever you want in this layout. As good as you can modify column1.php to change anything on any page that uses one column layout.

Thanks man I really Appreciate your answer and explanation

Thanks again