コード例 #1
0
ファイル: Progress.php プロジェクト: artkost/yii2-uikit
 /**
  * Renders the widget.
  */
 public function run()
 {
     echo Html::beginTag('div', $this->options) . "\n";
     echo $this->renderProgress() . "\n";
     echo Html::endTag('div') . "\n";
     UIkitAsset::register($this->getView());
 }
コード例 #2
0
ファイル: ButtonGroup.php プロジェクト: artkost/yii2-uikit
 /**
  * Renders the widget.
  */
 public function run()
 {
     echo Html::tag('div', $this->renderButtons(), $this->options);
     UIkitAsset::register($this->getView());
 }