12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace yii\bootstrap;
- use yii\helpers\Html;
- class Button extends Widget
- {
-
- public $tagName = 'button';
-
- public $label = 'Button';
-
- public $encodeLabel = true;
-
- public function init()
- {
- parent::init();
- $this->clientOptions = false;
- Html::addCssClass($this->options, 'btn');
- }
-
- public function run()
- {
- echo Html::tag($this->tagName, $this->encodeLabel ? Html::encode($this->label) : $this->label, $this->options);
- $this->registerPlugin('button');
- }
- }
|