码迷,mamicode.com
首页 > 其他好文 > 详细

Yii2 自定义组件

时间:2015-08-28 00:33:27      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:

basic\components\HelloWidget

namespace app\components; use yii\base\Widget; use yii\helpers\Html; class HelloWidget extends Widget { public $message; public function init() { parent::init(); if ($this->message === null) { $this->message = ‘您好‘; } } public function run() { return Html::encode($this->message); }

  

View

[php] view plaincopy在CODE上查看代码片派生到我的代码片
<?php  
use app\components\HelloWidget;  
?>  
<?= HelloWidget::widget([‘message‘ => ‘组件‘]) ?>  

  

Yii2 自定义组件

标签:

原文地址:http://www.cnblogs.com/wangjinke/p/4764870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!