for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ajax\ui\components;
use Ajax\JsUtils;
use Ajax\common\components\SimpleComponent;
/**
* Composant JQuery UI Progressbar
*
* @author jc
* @version 1.001
*/
class Progressbar extends SimpleComponent {
public function __construct(JsUtils $js) {
parent::__construct($js);
$this->params = array(
"value" => 50
);
$this->uiName = "progressbar";
}