Passed
Push — master ( c653a4...a7d880 )
by Jean-Christophe
02:17
created

Progressbar::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 1
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
<?php
2
namespace Ajax\ui\components;
3
4
use Ajax\JsUtils;
5
use Ajax\common\components\SimpleComponent;
6
7
/**
8
 * Composant JQuery UI Progressbar
9
 *
10
 * @author jc
11
 * @version 1.001
12
 */
13
class Progressbar extends SimpleComponent {
14
15
	public function __construct(JsUtils $js) {
16
		parent::__construct($js);
17
		$this->params = array(
18
			"value" => 50
19
		);
20
		$this->uiName = "progressbar";
21
	}
22
}
23