Completed
Push — master ( 323f97...e38499 )
by Jean-Christophe
03:21
created
Ajax/common/BaseGui.php 1 patch
Braces   +12 added lines, -8 removed lines patch added patch discarded remove patch
@@ -41,8 +41,9 @@  discard block
 block discarded – undo
41 41
 	}
42 42
 
43 43
 	public function compile($internal=false) {
44
-		if ($internal===false&&$this->autoCompile===true)
45
-			throw new \Exception("Impossible to compile if autoCompile is set to 'true'");
44
+		if ($internal===false&&$this->autoCompile===true) {
45
+					throw new \Exception("Impossible to compile if autoCompile is set to 'true'");
46
+		}
46 47
 		foreach ( $this->components as $component ) {
47 48
 			$component->compile();
48 49
 		}
@@ -53,13 +54,16 @@  discard block
 block discarded – undo
53 54
 	}
54 55
 
55 56
 	public function addComponent(SimpleComponent $component, $attachTo, $params) {
56
-		if ($this->autoCompile)
57
-			$this->components []=$component;
58
-		if (isset($attachTo))
59
-			$component->attach($attachTo);
60
-		if (isset($params))
61
-			if (\is_array($params))
57
+		if ($this->autoCompile) {
58
+					$this->components []=$component;
59
+		}
60
+		if (isset($attachTo)) {
61
+					$component->attach($attachTo);
62
+		}
63
+		if (isset($params)) {
64
+					if (\is_array($params))
62 65
 				$component->setParams($params);
66
+		}
63 67
 		return $component;
64 68
 	}
65 69
 
Please login to merge, or discard this patch.
Ajax/bootstrap/html/content/HtmlNavzone.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 		if (\is_array($elements)) {
62 62
 			foreach ( $elements as $key => $element ) {
63 63
 				$iid=$this->getElementsCount()+1;
64
-				if ($element instanceof HtmlDropdownItem)
65
-					$this->elements []=$element;
66
-				else if (\is_array($element)) {
64
+				if ($element instanceof HtmlDropdownItem) {
65
+									$this->elements []=$element;
66
+				} else if (\is_array($element)) {
67 67
 					if (is_string($key)===true) {
68 68
 						$dropdown=new HtmlDropdown($this->identifier."-dropdown-".$iid);
69 69
 						$dropdown->addItems($element);
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 		$li=new HtmlBsDoubleElement($this->identifier."-li-".$iid, "li");
90 90
 		if($caption instanceof HtmlLink){
91 91
 			$link=$caption;
92
-		}else{
92
+		} else{
93 93
 			$link=new HtmlLink($this->identifier."-link-".$iid, $href, $caption);
94 94
 		}
95 95
 		$li->setContent($link);
Please login to merge, or discard this patch.
Ajax/semantic/html/base/HtmlSemNavElement.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,10 +97,11 @@
 block discarded – undo
97 97
 
98 98
 	protected function setDivider($divider,$index){
99 99
 		if(isset($index)){
100
-			if(!\is_array($this->_contentSeparator))
101
-				$this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator);
100
+			if(!\is_array($this->_contentSeparator)) {
101
+							$this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator);
102
+			}
102 103
 			$this->_contentSeparator[$index]=$divider;
103
-		}else{
104
+		} else{
104 105
 			$this->_contentSeparator=$divider;
105 106
 		}
106 107
 		return $this;
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlButtongroups.php 1 patch
Braces   +20 added lines, -16 removed lines patch added patch discarded remove patch
@@ -49,8 +49,9 @@  discard block
 block discarded – undo
49 49
 	}
50 50
 
51 51
 	public function setStyle($value) {
52
-		foreach ( $this->elements as $element )
53
-			$element->setStyle($value);
52
+		foreach ( $this->elements as $element ) {
53
+					$element->setStyle($value);
54
+		}
54 55
 	}
55 56
 
56 57
 	private function dropdownAsButton($bt) {
@@ -75,16 +76,18 @@  discard block
 block discarded – undo
75 76
 		} elseif ($element instanceof HtmlButton) {
76 77
 			$this->elements[]=$element;
77 78
 		} elseif (\is_array($element)) {
78
-			if (array_key_exists("glyph", $element))
79
-				$bt=new HtmlGlyphButton($this->identifier."-button-".$iid);
80
-			elseif (array_key_exists("btnCaption", $element)) {
81
-				if (array_key_exists("split", $element))
82
-					$bt=new HtmlSplitbutton($this->identifier."-dropdown-".$iid);
83
-				else
84
-					$bt=new HtmlDropdown($this->identifier."-dropdown-".$iid);
79
+			if (array_key_exists("glyph", $element)) {
80
+							$bt=new HtmlGlyphButton($this->identifier."-button-".$iid);
81
+			} elseif (array_key_exists("btnCaption", $element)) {
82
+				if (array_key_exists("split", $element)) {
83
+									$bt=new HtmlSplitbutton($this->identifier."-dropdown-".$iid);
84
+				} else {
85
+									$bt=new HtmlDropdown($this->identifier."-dropdown-".$iid);
86
+				}
85 87
 				$this->dropdownAsButton($bt);
86
-			} else
87
-				$bt=new HtmlButton($this->identifier."-button-".$iid);
88
+			} else {
89
+							$bt=new HtmlButton($this->identifier."-button-".$iid);
90
+			}
88 91
 			$bt->fromArray($element);
89 92
 			$this->elements[]=$bt;
90 93
 			$result=$bt;
@@ -115,8 +118,9 @@  discard block
 block discarded – undo
115 118
 	public function setAlignment($value) {
116 119
 		if (is_int($value)) {
117 120
 			$value=CssRef::alignment("btn-group")[$value];
118
-		} else
119
-			$value="btn-group-".$value;
121
+		} else {
122
+					$value="btn-group-".$value;
123
+		}
120 124
 		if (strstr($value, "justified")) {
121 125
 			foreach ( $this->elements as $element ) {
122 126
 				$element->wrap('<div class="btn-group" role="group">', '</div>');
@@ -131,9 +135,9 @@  discard block
 block discarded – undo
131 135
 	 * @return HtmlButton
132 136
 	 */
133 137
 	public function getElement($index) {
134
-		if (is_int($index))
135
-			return $this->elements[$index];
136
-		else {
138
+		if (is_int($index)) {
139
+					return $this->elements[$index];
140
+		} else {
137 141
 			$elm=$this->getElementById($index, $this->elements);
138 142
 			return $elm;
139 143
 		}
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlBreadcrumbs.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -65,9 +65,9 @@  discard block
 block discarded – undo
65 65
 		if(\is_array($element)){
66 66
 			$elm=new HtmlLink("lnk-".$this->identifier."-".$size);
67 67
 			$elm->fromArray($element);
68
-		}else if($element instanceof HtmlLink){
68
+		} else if($element instanceof HtmlLink){
69 69
 			$elm=$element;
70
-		}else{
70
+		} else{
71 71
 			$elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element);
72 72
 			if(isset($glyph)){
73 73
 				$elm->wrapContentWithGlyph($glyph);
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 		}
115 115
 		if($this->absolutePaths===true){
116 116
 			return $this->_hrefFunction($this->content[$index]);
117
-		}else{
117
+		} else{
118 118
 			return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1));
119 119
 		}
120 120
 	}
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlCarousel.php 1 patch
Braces   +10 added lines, -7 removed lines patch added patch discarded remove patch
@@ -75,27 +75,30 @@
 block discarded – undo
75 75
 	}
76 76
 
77 77
 	private function getGlyph($sens="left") {
78
-		if (array_key_exists($sens, $this->_glyphs))
79
-			return $this->_glyphs [$sens];
78
+		if (array_key_exists($sens, $this->_glyphs)) {
79
+					return $this->_glyphs [$sens];
80
+		}
80 81
 		return "glyphicon-chevron-".$sens;
81 82
 	}
82 83
 
83 84
 	public function setRightGlyph($glyphicon) {
84 85
 		$glyphs=CssRef::glyphIcons();
85
-		if (array_search($glyphicon, $glyphs)!==false)
86
-			$this->_glyphs ["right"]=$glyphicon;
86
+		if (array_search($glyphicon, $glyphs)!==false) {
87
+					$this->_glyphs ["right"]=$glyphicon;
88
+		}
87 89
 	}
88 90
 
89 91
 	public function setLeftGlyph($glyphicon) {
90 92
 		$glyphs=CssRef::glyphIcons();
91
-		if (array_search($glyphicon, $glyphs)!==false)
92
-			$this->_glyphs ["left"]=$glyphicon;
93
+		if (array_search($glyphicon, $glyphs)!==false) {
94
+					$this->_glyphs ["left"]=$glyphicon;
95
+		}
93 96
 	}
94 97
 
95 98
 	public function addImage($imageSrc, $imageAlt="", $caption=NULL, $description=NULL) {
96 99
 		if(\is_array($imageSrc)){
97 100
 			$this->addImage($imageSrc[0],@$imageSrc[1],@$imageSrc[2],@$imageSrc[3]);
98
-		}else{
101
+		} else{
99 102
 			$image=new HtmlCarouselItem("item-".$this->identifier);
100 103
 			$image->setImageSrc($this->_base.$imageSrc);
101 104
 			$image->setImageAlt($imageAlt);
Please login to merge, or discard this patch.
Ajax/php/symfony/JsUtils.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 		if(isset($router)){
14 14
 			try {
15 15
 			$url=$router->generate($url);
16
-			}catch (\Exception $e){
16
+			} catch (\Exception $e){
17 17
 				return $router->getContext()->getBaseUrl();
18 18
 			}
19 19
 		}
Please login to merge, or discard this patch.
Ajax/semantic/widgets/dataform/DataForm.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,14 +51,15 @@
 block discarded – undo
51 51
 			foreach ($values as $v){
52 52
 				$form->addField($v);
53 53
 			}
54
-		}else{
54
+		} else{
55 55
 			$separators[]=$count;
56 56
 			for($i=0;$i<$size;$i++){
57 57
 				$fields=\array_slice($values, $separators[$i]+1,$separators[$i+1]-$separators[$i]);
58 58
 				if(\sizeof($fields)===1){
59 59
 					$form->addField($fields[0]);
60
-				}else
61
-					$form->addFields($fields);
60
+				} else {
61
+									$form->addFields($fields);
62
+				}
62 63
 			}
63 64
 		}
64 65
 	}
Please login to merge, or discard this patch.
Ajax/semantic/widgets/dataform/FormInstanceViewer.php 1 patch
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,17 +34,18 @@
 block discarded – undo
34 34
 		$property=$this->getProperty($index);
35 35
 		if($property instanceof \ReflectionProperty){
36 36
 			$result=$property->getName();
37
-		}elseif(\is_callable($property)){
37
+		} elseif(\is_callable($property)){
38 38
 			$result=$this->visibleProperties[$index];
39
-		}else{
39
+		} else{
40 40
 			$result=$property;
41 41
 		}
42 42
 		return $result;
43 43
 	}
44 44
 
45 45
 	public function addSeparatorAfter($fieldNum){
46
-		if(\array_search($fieldNum, $this->separators)===false)
47
-			$this->separators[]=$fieldNum;
46
+		if(\array_search($fieldNum, $this->separators)===false) {
47
+					$this->separators[]=$fieldNum;
48
+		}
48 49
 			return $this;
49 50
 	}
50 51
 
Please login to merge, or discard this patch.