Yii CActiveDataProvider が複雑な式を解析する方法に似たものを実装しようとしています。以下のコードを例にとると、基本的には「date("M j, Y", $data->create_time)」のような値を指定できるようにしたいです。
Yii のどのクラスが良い洞察を提供してくれるか知っている人はいますか? 私は CDataColumn クラスを見ましたが、あまり運がありませんでした。
$this-widget('zii.widgets.grid.CGridView', array(
'dataProvider'=$dataProvider,
'columns'=array(
'title', // display the 'title' attribute
'category.name', // display the 'name' attribute of the 'category' relation
'content:html', // display the 'content' attribute as purified HTML
array( // display 'create_time' using an expression
'name'='create_time',
'value'='date("M j, Y", $data-create_time)',
),
),
));