Completed
Push — master ( 9e0835...2461e8 )
by Jean-Christophe
03:27
created
Ajax/semantic/html/collections/form/AbstractHtmlFormRadioCheckbox.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,20 +12,20 @@  discard block
 block discarded – undo
12 12
 abstract class AbstractHtmlFormRadioCheckbox extends HtmlFormField {
13 13
 	protected $_input;
14 14
 
15
-	public function __construct($identifier, $name=NULL,$label=NULL,$value=NULL,$type=NULL) {
16
-		$input=new HtmlFormInput($identifier,$label,"checkbox",$value);
15
+	public function __construct($identifier, $name=NULL, $label=NULL, $value=NULL, $type=NULL) {
16
+		$input=new HtmlFormInput($identifier, $label, "checkbox", $value);
17 17
 		parent::__construct("rField-".$identifier, $input);
18
-		if(isset($label)){
18
+		if (isset($label)) {
19 19
 			$input->swapLabel();
20 20
 			$label=$input->getLabel();
21 21
 			$label->setClass="hidden";
22
-			$label->setProperty("tabindex",0);
22
+			$label->setProperty("tabindex", 0);
23 23
 		}
24 24
 		$this->_input=$input;
25
-		$input->getField()->addToProperty("class","hidden");
25
+		$input->getField()->addToProperty("class", "hidden");
26 26
 	}
27 27
 
28
-	public function setType($checkboxType){
28
+	public function setType($checkboxType) {
29 29
 		return $this->_input->addToPropertyCtrl("class", $checkboxType, CheckboxType::getConstants());
30 30
 	}
31 31
 
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 		return $this;
39 39
 	}
40 40
 
41
-	public function setReadonly(){
42
-		$this->_input->getField()->setProperty("disabled","disabled");
43
-		return $this->_input->addToProperty("class","read-only");
41
+	public function setReadonly() {
42
+		$this->_input->getField()->setProperty("disabled", "disabled");
43
+		return $this->_input->addToProperty("class", "read-only");
44 44
 	}
45 45
 
46 46
 }
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlPopup.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 class HtmlPopup extends HtmlSemDoubleElement {
13 13
 	private $_params;
14 14
 	private $_container;
15
-	public function __construct(BaseHtml $container,$identifier, $content="") {
15
+	public function __construct(BaseHtml $container, $identifier, $content="") {
16 16
 		parent::__construct($identifier, "div");
17 17
 		$this->_container=$container;
18 18
 		$this->setClass("ui popup");
@@ -20,21 +20,21 @@  discard block
 block discarded – undo
20 20
 		$this->_params=array("on"=>"hover");
21 21
 	}
22 22
 
23
-	public function addList($items=array(),$header=NULL){
24
-		if(!$this->content instanceof HtmlGrid){
25
-			$this->content=new HtmlGrid("Grid-".$this->identifier,0);
23
+	public function addList($items=array(), $header=NULL) {
24
+		if (!$this->content instanceof HtmlGrid) {
25
+			$this->content=new HtmlGrid("Grid-".$this->identifier, 0);
26 26
 		}
27 27
 		$grid=$this->content;
28 28
 
29 29
 		$colCount=$grid->colCount();
30 30
 		$grid->setColsCount(++$colCount);
31 31
 
32
-		$list=new HtmlList("",$items);
32
+		$list=new HtmlList("", $items);
33 33
 		$list->asLink();
34
-		if(isset($header)){
35
-			$list->addHeader(4,$header);
34
+		if (isset($header)) {
35
+			$list->addHeader(4, $header);
36 36
 		}
37
-		$grid->getCell(0,$colCount-1)->setContent($list);
37
+		$grid->getCell(0, $colCount-1)->setContent($list);
38 38
 		$grid->setDivided()->setRelaxed(true);
39 39
 		return $list;
40 40
 	}
@@ -42,14 +42,14 @@  discard block
 block discarded – undo
42 42
 	/**
43 43
 	 * A popup can have no maximum width and continue to flow to fit its content
44 44
 	 */
45
-	public function setFlowing(){
45
+	public function setFlowing() {
46 46
 		return $this->addToProperty("class", "flowing");
47 47
 	}
48 48
 
49 49
 	/**
50 50
 	 * A popup can provide more basic formatting
51 51
 	 */
52
-	public function setBasic(){
52
+	public function setBasic() {
53 53
 		return $this->addToProperty("class", "basic");
54 54
 	}
55 55
 
@@ -57,22 +57,22 @@  discard block
 block discarded – undo
57 57
 	 * {@inheritDoc}
58 58
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run()
59 59
 	 */
60
-	public function run(JsUtils $js){
60
+	public function run(JsUtils $js) {
61 61
 		$this->_params["popup"]="#".$this->identifier;
62
-		$js->semantic()->popup("#".$this->_container->getIdentifier(),$this->_params);
62
+		$js->semantic()->popup("#".$this->_container->getIdentifier(), $this->_params);
63 63
 	}
64 64
 
65
-	public function setOn($event="click"){
65
+	public function setOn($event="click") {
66 66
 		$this->_params["on"]=$event;
67 67
 		return $this;
68 68
 	}
69 69
 
70
-	public function setInline($value=true){
70
+	public function setInline($value=true) {
71 71
 		$this->_params["inline"]=$value;
72 72
 		return $this;
73 73
 	}
74 74
 
75
-	public function setPosition($position){
75
+	public function setPosition($position) {
76 76
 		$this->_params["position"]=$position;
77 77
 		return $this;
78 78
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlList.php 3 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@  discard block
 block discarded – undo
10 10
 class HtmlList extends HtmlSemCollection{
11 11
 	protected $_hasCheckedList;
12 12
 
13
+	/**
14
+	 * @param string $identifier
15
+	 */
13 16
 	public function __construct( $identifier, $items=array()){
14 17
 		parent::__construct( $identifier, "div", "ui list");
15 18
 		$this->addItems($items);
@@ -27,6 +30,9 @@  discard block
 block discarded – undo
27 30
 		return $item;
28 31
 	}
29 32
 
33
+	/**
34
+	 * @param integer $niveau
35
+	 */
30 36
 	public function addHeader($niveau,$content){
31 37
 		return $this->wrap(new HtmlHeader("header-".$this->identifier,$niveau,$content,"page"));
32 38
 	}
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -7,86 +7,86 @@
 block discarded – undo
7 7
 use Ajax\semantic\html\collections\form\HtmlFormCheckbox;
8 8
 use Ajax\JsUtils;
9 9
 
10
-class HtmlList extends HtmlSemCollection{
10
+class HtmlList extends HtmlSemCollection {
11 11
 	protected $_hasCheckedList;
12 12
 
13
-	public function __construct( $identifier, $items=array()){
14
-		parent::__construct( $identifier, "div", "ui list");
13
+	public function __construct($identifier, $items=array()) {
14
+		parent::__construct($identifier, "div", "ui list");
15 15
 		$this->addItems($items);
16 16
 		$this->_hasCheckedList=false;
17 17
 	}
18 18
 
19 19
 
20
-	protected function createItem($value){
20
+	protected function createItem($value) {
21 21
 		$count=$this->count();
22
-		if(\is_array($value)){
22
+		if (\is_array($value)) {
23 23
 			$item=new HtmlListItem("item-".$this->identifier."-".$count, $value[0]);
24 24
 			$item->addIcon($value[1]);
25 25
 		}else
26
-			$item= new HtmlListItem("item-".$this->identifier."-".$count, $value);
26
+			$item=new HtmlListItem("item-".$this->identifier."-".$count, $value);
27 27
 		return $item;
28 28
 	}
29 29
 
30
-	public function addHeader($niveau,$content){
31
-		return $this->wrap(new HtmlHeader("header-".$this->identifier,$niveau,$content,"page"));
30
+	public function addHeader($niveau, $content) {
31
+		return $this->wrap(new HtmlHeader("header-".$this->identifier, $niveau, $content, "page"));
32 32
 	}
33 33
 
34
-	public function itemsAs($tagName){
34
+	public function itemsAs($tagName) {
35 35
 		return $this->contentAs($tagName);
36 36
 	}
37 37
 
38
-	public function asLink(){
38
+	public function asLink() {
39 39
 		$this->addToPropertyCtrl("class", "link", array("link"));
40 40
 		return $this->contentAs("a");
41 41
 	}
42 42
 
43
-	public function addList($items=array()){
44
-		$list=new HtmlList("",$items);
43
+	public function addList($items=array()) {
44
+		$list=new HtmlList("", $items);
45 45
 		$list->setClass("list");
46 46
 		return $this->addItem($list);
47 47
 	}
48 48
 
49
-	public function setCelled(){
49
+	public function setCelled() {
50 50
 		return $this->addToProperty("class", "celled");
51 51
 	}
52 52
 
53
-	public function run(JsUtils $js){
54
-		if($this->_hasCheckedList===true){
53
+	public function run(JsUtils $js) {
54
+		if ($this->_hasCheckedList===true) {
55 55
 			$jsCode=include dirname(__FILE__).'/../../components/jsTemplates/tplCheckedList.php';
56
-			$jsCode=\str_replace("%identifier%","#".$this->identifier,$jsCode);
56
+			$jsCode=\str_replace("%identifier%", "#".$this->identifier, $jsCode);
57 57
 			$this->executeOnRun($jsCode);
58 58
 		}
59 59
 		return parent::run($js);
60 60
 	}
61 61
 
62
-	public function setRelaxed(){
62
+	public function setRelaxed() {
63 63
 		return $this->addToProperty("class", "relaxed");
64 64
 	}
65 65
 
66
-	public function addCheckedList($items=array(),$masterItem=NULL,$values=array()){
66
+	public function addCheckedList($items=array(), $masterItem=NULL, $values=array()) {
67 67
 		$count=$this->count();
68 68
 		$identifier=$this->identifier."-".$count;
69
-		if(isset($masterItem)){
70
-			$masterO=new HtmlFormCheckbox("master-".$identifier,$masterItem);
71
-			$masterO->getField()->addToProperty("class","master");
69
+		if (isset($masterItem)) {
70
+			$masterO=new HtmlFormCheckbox("master-".$identifier, $masterItem);
71
+			$masterO->getField()->addToProperty("class", "master");
72 72
 			$masterO->setClass("item");
73 73
 			$this->addItem($masterO);
74 74
 		}
75 75
 		$fields=array();
76 76
 		$i=0;
77
-		foreach ($items as $val=>$caption){
78
-			$itemO=new HtmlFormCheckbox($identifier."-".$i++,$caption,$val,"child");
79
-			if(\array_search($val, $values)!==false){
77
+		foreach ($items as $val=>$caption) {
78
+			$itemO=new HtmlFormCheckbox($identifier."-".$i++, $caption, $val, "child");
79
+			if (\array_search($val, $values)!==false) {
80 80
 				$itemO->getInput()->getField()->setProperty("checked", "");
81 81
 			}
82 82
 			$itemO->setClass("item");
83 83
 			$fields[]=$itemO;
84 84
 		}
85
-		if(isset($masterO)===true){
86
-			$list=new HtmlList("",$fields);
85
+		if (isset($masterO)===true) {
86
+			$list=new HtmlList("", $fields);
87 87
 			$list->setClass("list");
88 88
 			$masterO->addContent($list);
89
-		}else{
89
+		}else {
90 90
 			$this->addList($fields);
91 91
 		}
92 92
 		$this->_hasCheckedList=true;
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,8 +22,9 @@  discard block
 block discarded – undo
22 22
 		if(\is_array($value)){
23 23
 			$item=new HtmlListItem("item-".$this->identifier."-".$count, $value[0]);
24 24
 			$item->addIcon($value[1]);
25
-		}else
26
-			$item= new HtmlListItem("item-".$this->identifier."-".$count, $value);
25
+		} else {
26
+					$item= new HtmlListItem("item-".$this->identifier."-".$count, $value);
27
+		}
27 28
 		return $item;
28 29
 	}
29 30
 
@@ -86,7 +87,7 @@  discard block
 block discarded – undo
86 87
 			$list=new HtmlList("",$fields);
87 88
 			$list->setClass("list");
88 89
 			$masterO->addContent($list);
89
-		}else{
90
+		} else{
90 91
 			$this->addList($fields);
91 92
 		}
92 93
 		$this->_hasCheckedList=true;
Please login to merge, or discard this patch.
Ajax/common/components/SimpleComponent.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@  discard block
 block discarded – undo
16 16
 
17 17
 	public function __construct(JsUtils $js) {
18 18
 		parent::__construct($js);
19
-		$this->events=array ();
19
+		$this->events=array();
20 20
 	}
21 21
 
22 22
 	protected function compileEvents() {
23
-		foreach ( $this->events as $event => $jsCode ) {
24
-			if($event=="execute"){
23
+		foreach ($this->events as $event => $jsCode) {
24
+			if ($event=="execute") {
25 25
 				$this->jquery_code_for_compile []=$jsCode;
26 26
 			}else
27 27
 			$this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).on(\"".$event."\" , function( event, data ) {".$jsCode."});";
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 		$result=implode("\n", $this->jquery_code_for_compile);
33 33
 		$result=str_ireplace("\"%", "", $result);
34 34
 		$result=str_ireplace("%\"", "", $result);
35
-		$result=str_replace(array (
35
+		$result=str_replace(array(
36 36
 				"\\n",
37 37
 				"\\r",
38 38
 				"\\t"
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 	public function getScript() {
44 44
 		$allParams=$this->params;
45
-		$this->jquery_code_for_compile=array ();
45
+		$this->jquery_code_for_compile=array();
46 46
 		$this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).{$this->uiName}(".$this->getParamsAsJSON($allParams).");";
47 47
 		$this->compileEvents();
48 48
 		return $this->compileJQueryCode();
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 		if (is_array($typeCtrl)) {
70 70
 			if (array_search($value, $typeCtrl)===false)
71 71
 				throw new \Exception("La valeur passée a propriété `".$key."` pour le composant `".$this->uiName."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
72
-		} else {
72
+		}else {
73 73
 			if (!$typeCtrl($value)) {
74 74
 				throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key." au composant ".$this->uiName);
75 75
 			}
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,8 +23,9 @@  discard block
 block discarded – undo
23 23
 		foreach ( $this->events as $event => $jsCode ) {
24 24
 			if($event=="execute"){
25 25
 				$this->jquery_code_for_compile []=$jsCode;
26
-			}else
27
-			$this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).on(\"".$event."\" , function( event, data ) {".$jsCode."});";
26
+			} else {
27
+						$this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).on(\"".$event."\" , function( event, data ) {".$jsCode."});";
28
+			}
28 29
 		}
29 30
 	}
30 31
 
@@ -67,8 +68,9 @@  discard block
 block discarded – undo
67 68
 
68 69
 	protected function setParamCtrl($key, $value, $typeCtrl) {
69 70
 		if (is_array($typeCtrl)) {
70
-			if (array_search($value, $typeCtrl)===false)
71
-				throw new \Exception("La valeur passée a propriété `".$key."` pour le composant `".$this->uiName."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
71
+			if (array_search($value, $typeCtrl)===false) {
72
+							throw new \Exception("La valeur passée a propriété `".$key."` pour le composant `".$this->uiName."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
73
+			}
72 74
 		} else {
73 75
 			if (!$typeCtrl($value)) {
74 76
 				throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key." au composant ".$this->uiName);
Please login to merge, or discard this patch.