UeditorWidget.php 294 B

12345678910111213141516171819202122
  1. <?php
  2. namespace common\widgets;
  3. use yii\base\Widget;
  4. class UeditorWidget extends Widget
  5. {
  6. public $name;
  7. public $content;
  8. public function init()
  9. {
  10. parent::init();
  11. }
  12. public function run()
  13. {
  14. return $this->render('ueditor',['name' => $this->name,'content' => $this->content]);
  15. }
  16. }