The example in this article describes the method of the Yii view Cgridview Implementation action button definition address. Share to everyone for your reference, specific as follows:
<?php $this->widget (' Zii.widgets.grid.CGridView ', array (
' id ' => ' mem-sub-grid ',
' dataprovider ' = > $model,
' columns ' =>array ('
zpc_catname ',
Array (' name ' => ' inputtime ',
' value ' => ') Date ("Y-m-d h:m", $data->inputtime) ',
' htmloptions ' =>array (' class ' => ' T_c '),
),
Array (
' Class ' => ' Cbuttoncolumn ',
//Note URL rules
' updatebuttonurl ' => ' Yii::app ()->controller-> CreateURL ("Updaterole", Array ("id" => $data->primarykey)) ',
' deleteconfirmation ' => ' confirm deletion ',// Remove the information from the action balloon tip
' buttons ' =>array ('
View ' =>array (' Visible ' => ' false '),
//Note URL rules,
' Dalete ' =>array (' url ' => ' Yii::app ()->controller->createurl ("DeleteRole", Array ("id" => $data-> )) (PrimaryKey))
;
? >
For more information on YII-related content, readers who are interested in this site can view the topics: Introduction to YII Framework and summary of common skills, "Summary of PHP Excellent development framework", "Smarty Template Introductory Course", "Introduction to PHP object-oriented programming", "PHP string" Summary of Usage , "Php+mysql Database operation Introduction Tutorial" and "PHP common database Operation Skills Summary"
I hope this article will help you with the PHP program design based on the YII framework.