关于widgets,他们在yii中的关系如下 system.web.widgets 系统自带最基本的widget zii.widgets 是基本扩展 zii.widgets.grid 是基本扩展的重要分支 zii.widgets.jui 是插件扩展 CWidget:http://www.yiiframework.com/doc/api/1.1/CWidget/ CWidget is the base class for widgets. A widget is a self-contained…
classes.php在yii运行的时候将被自动加载,位于yii2文件夹底下. <?php /** * Yii core class map. * * This file is automatically generated by the "build classmap" command under the "build" folder. * Do not modify it directly. * * @link http://www.yiiframewor…
<?php namespace app\components; use yii\base\Widget; use yii\helpers\Html; class RctReplyWidget extends Widget{ public $commentDataProvider; public function init(){ parent::init(); } public function run(){ $commentString=''; foreach($this->commentDa…