| 12345678910111213141516171819202122 |
- <?php
- namespace common\widgets;
- use yii\base\Widget;
- class UeditorWidget extends Widget
- {
- public $name;
- public $content;
- public function init()
- {
- parent::init();
- }
- public function run()
- {
- return $this->render('ueditor',['name' => $this->name,'content' => $this->content]);
- }
- }
|