diff --git a/framework/yii/jui/ProgressBar.php b/framework/yii/jui/ProgressBar.php new file mode 100644 index 0000000..ab07620 --- /dev/null +++ b/framework/yii/jui/ProgressBar.php @@ -0,0 +1,41 @@ + array( + * 'value' => 75, + * ), + * )); + * ``` + * + * @see http://api.jqueryui.com/progressbar/ + * @author Alexander Kochetov + * @since 2.0 + */ +class ProgressBar extends Widget +{ + /** + * Renders the widget. + */ + public function run() + { + echo Html::beginTag('div', $this->options) . "\n"; + echo Html::endTag('div') . "\n"; + $this->registerWidget('progressbar'); + } +}