<?php $this->widget('zii.widgets.grid.CGridView', array( 'id'=>'chapter-grid', 'dataProvider'=>$model->search(), //數據結果集 'filter'=>$model, 'columns'=>array( 'id', //錨點<a href="http://www.gulianqiang.com/"></a> array( 'name'=>'name', 'type'=>'raw', 'value'=>'CHtml::link($data->name,"/book/$data->id")', ), //圖片 array( 'name'=>'image', 'type'=>'image', 'value'=>'LImages::getPath("book").$data->image',//圖片相對路徑 ), //下拉列表 array( 'name'=>'type', 'value'=>'Lookup::item("chapterType",$data->type)', 'filter'=>Lookup::items('chapterType'), ), //內容截取 array( 'name'=>'content', 'type'=>'html', 'value'=>'mb_substr(htmlspecialchars_decode($data->content),0,100,"utf-8")', ), //時間 array( 'name'=>'create_time', 'type'=>'datetime', ), // 根據相關信息讀數據庫 array( 'name'=>'user_id', 'value'=>'User::model()->findbyPk($data->user_id)->username', 'filter'=>false, ), array( 'class'=>'CButtonColumn', ), ), )); ?>