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'); } }