Completed
Push — master ( 73aa8e...3a9bcf )
by Jean-Christophe
06:21
created
Ajax/semantic/html/views/HtmlCard.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,9 @@
 block discarded – undo
36 36
 
37 37
 	private function getPart($part, $index=NULL) {
38 38
 		if (\array_key_exists($part, $this->content)) {
39
-			if (isset($index))
40
-				return $this->content[$part][$index];
39
+			if (isset($index)) {
40
+							return $this->content[$part][$index];
41
+			}
41 42
 			return $this->content[$part];
42 43
 		}
43 44
 		return NULL;
Please login to merge, or discard this patch.
Ajax/semantic/html/views/HtmlCardGroups.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,9 @@
 block discarded – undo
28 28
 			if (isset($extra)) {
29 29
 				$result->addExtraContent($extra);
30 30
 			}
31
-		} else
32
-			$result->addCardContent($value);
31
+		} else {
32
+					$result->addCardContent($value);
33
+		}
33 34
 		return $result;
34 35
 	}
35 36
 
Please login to merge, or discard this patch.
Ajax/bootstrap/components/Tabs.php 1 patch
Braces   +15 added lines, -10 removed lines patch added patch discarded remove patch
@@ -36,8 +36,9 @@  discard block
 block discarded – undo
36 36
 	}
37 37
 
38 38
 	public function getTab($index) {
39
-		if ($index>0&&$index<sizeof($this->tabs))
40
-			return $this->tabs [$index];
39
+		if ($index>0&&$index<sizeof($this->tabs)) {
40
+					return $this->tabs [$index];
41
+		}
41 42
 	}
42 43
 
43 44
 	public function show($index) {
@@ -53,8 +54,9 @@  discard block
 block discarded – undo
53 54
 	 */
54 55
 	public function onShow($index, $jsCode) {
55 56
 		$tab=$this->getTab($index);
56
-		if (isset($tab))
57
-			return $tab->onShow($jsCode);
57
+		if (isset($tab)) {
58
+					return $tab->onShow($jsCode);
59
+		}
58 60
 	}
59 61
 
60 62
 	/**
@@ -65,8 +67,9 @@  discard block
 block discarded – undo
65 67
 	 */
66 68
 	public function onShown($index, $jsCode) {
67 69
 		$tab=$this->getTab($index);
68
-		if (isset($tab))
69
-			return $tab->onShown($jsCode);
70
+		if (isset($tab)) {
71
+					return $tab->onShown($jsCode);
72
+		}
70 73
 	}
71 74
 
72 75
 	/**
@@ -77,8 +80,9 @@  discard block
 block discarded – undo
77 80
 	 */
78 81
 	public function onHide($index, $jsCode) {
79 82
 		$tab=$this->getTab($index);
80
-		if (isset($tab))
81
-			return $tab->onShow($jsCode);
83
+		if (isset($tab)) {
84
+					return $tab->onShow($jsCode);
85
+		}
82 86
 	}
83 87
 
84 88
 	/**
@@ -89,7 +93,8 @@  discard block
 block discarded – undo
89 93
 	 */
90 94
 	public function onHidden($index, $jsCode) {
91 95
 		$tab=$this->getTab($index);
92
-		if (isset($tab))
93
-			return $tab->onShow($jsCode);
96
+		if (isset($tab)) {
97
+					return $tab->onShow($jsCode);
98
+		}
94 99
 	}
95 100
 }
96 101
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlProgressbar.php 1 patch
Braces   +21 added lines, -17 removed lines patch added patch discarded remove patch
@@ -33,11 +33,12 @@  discard block
 block discarded – undo
33 33
 			foreach ($this->content as $pb){
34 34
 				$pb->setActive($value);
35 35
 			}
36
-		}else{
37
-			if ($value===true)
38
-				$this->active="active";
39
-			else
40
-				$this->active="";
36
+		} else{
37
+			if ($value===true) {
38
+							$this->active="active";
39
+			} else {
40
+							$this->active="";
41
+			}
41 42
 		}
42 43
 		return $this;
43 44
 	}
@@ -47,11 +48,12 @@  discard block
 block discarded – undo
47 48
 			foreach ($this->content as $pb){
48 49
 				$pb->setStriped($value);
49 50
 			}
50
-		}else{
51
-			if ($value===true)
52
-				$this->striped="progress-bar-striped";
53
-			else
54
-				$this->striped="";
51
+		} else{
52
+			if ($value===true) {
53
+							$this->striped="progress-bar-striped";
54
+			} else {
55
+							$this->striped="";
56
+			}
55 57
 		}
56 58
 		return $this;
57 59
 	}
@@ -61,11 +63,12 @@  discard block
 block discarded – undo
61 63
 			foreach ($this->content as $pb){
62 64
 				$pb->showCaption($value);
63 65
 			}
64
-		}else{
65
-			if ($value===true)
66
-				$this->caption="%value%%";
67
-			else
68
-				$this->caption='<span class="sr-only">%value%% Complete (%style%)</span>';
66
+		} else{
67
+			if ($value===true) {
68
+							$this->caption="%value%%";
69
+			} else {
70
+							$this->caption='<span class="sr-only">%value%% Complete (%style%)</span>';
71
+			}
69 72
 		}
70 73
 		return $this;
71 74
 	}
@@ -137,8 +140,9 @@  discard block
 block discarded – undo
137 140
 		if(isset($this->styleLimits)&& JArray::isAssociative($this->styleLimits)){
138 141
 			foreach ($this->styleLimits as $k=>$v){
139 142
 				$actualStyle=$k;
140
-				if($v>$this->value)
141
-					break;
143
+				if($v>$this->value) {
144
+									break;
145
+				}
142 146
 			}
143 147
 		}
144 148
 		$this->style=$actualStyle;
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlForm.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,8 +99,9 @@
 block discarded – undo
99 99
 	}
100 100
 
101 101
 	public function addGroup($identifier="") {
102
-		if ($identifier==="")
103
-			$identifier="form-".$this->identifier;
102
+		if ($identifier==="") {
103
+					$identifier="form-".$this->identifier;
104
+		}
104 105
 		$group=new HtmlBsDoubleElement($identifier);
105 106
 		$group->setTagName("div");
106 107
 		$group->setClass("form-group");
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/HtmlModal.php 1 patch
Braces   +11 added lines, -8 removed lines patch added patch discarded remove patch
@@ -141,18 +141,20 @@  discard block
 block discarded – undo
141 141
 		$this->_bsComponent=$js->bootstrap()->modal("#".$this->identifier, array (
142 142
 				"show" => $this->showOnStartup
143 143
 		));
144
-		if ($this->draggable)
145
-			$this->_bsComponent->setDraggable(true);
144
+		if ($this->draggable) {
145
+					$this->_bsComponent->setDraggable(true);
146
+		}
146 147
 		$this->_bsComponent->setBackdrop($this->backdrop);
147 148
 		$this->addEventsOnRun($js);
148 149
 		return $this->_bsComponent;
149 150
 	}
150 151
 
151 152
 	public function getButton($index) {
152
-		if (is_int($index))
153
-			return $this->buttons [$index];
154
-		else
155
-			return $this->getElementById($index, $this->buttons);
153
+		if (is_int($index)) {
154
+					return $this->buttons [$index];
155
+		} else {
156
+					return $this->getElementById($index, $this->buttons);
157
+		}
156 158
 	}
157 159
 
158 160
 	public function showOnCreate() {
@@ -178,8 +180,9 @@  discard block
 block discarded – undo
178 180
 
179 181
 	public function jsHideButton($index) {
180 182
 		$btn=$this->getButton($index);
181
-		if ($btn)
182
-			return "$('#".$btn->getIdentifier()."').hide();";
183
+		if ($btn) {
184
+					return "$('#".$btn->getIdentifier()."').hide();";
185
+		}
183 186
 	}
184 187
 
185 188
 	/**
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlCollapse.php 1 patch
Braces   +11 added lines, -8 removed lines patch added patch discarded remove patch
@@ -24,17 +24,19 @@  discard block
 block discarded – undo
24 24
 
25 25
 	public function attachTo($identifier) {
26 26
 		$this->element->setProperty("aria-controls", $identifier);
27
-		if ($this->element->getTagName()==="a")
28
-			$this->element->setProperty("href", "#".$identifier);
29
-		else
30
-			$this->element->setProperty("data-target", "#".$identifier);
27
+		if ($this->element->getTagName()==="a") {
28
+					$this->element->setProperty("href", "#".$identifier);
29
+		} else {
30
+					$this->element->setProperty("data-target", "#".$identifier);
31
+		}
31 32
 	}
32 33
 
33 34
 	public function getAttachedZone() {
34 35
 		$id=$this->element->getProperty("aria-controls");
35
-		if (!isset($id))
36
-			if ($this->element->getTagName()==="a")
36
+		if (!isset($id)) {
37
+					if ($this->element->getTagName()==="a")
37 38
 				$id=$this->element->getProperty("href");
39
+		}
38 40
 		if (!isset($id)||$id==="#") {
39 41
 			$id="collapse-".$this->element->getIdentifier();
40 42
 			$this->attachTo($id);
@@ -49,8 +51,9 @@  discard block
 block discarded – undo
49 51
 	}
50 52
 
51 53
 	public function createCollapsedZone($content="", $attachTo=NULL) {
52
-		if (isset($attachTo))
53
-			$this->attachTo($attachTo);
54
+		if (isset($attachTo)) {
55
+					$this->attachTo($attachTo);
56
+		}
54 57
 		$collapsedZone=new HtmlBsDoubleElement($this->getAttachedZone());
55 58
 		$collapsedZone->setProperty("class", "collapse");
56 59
 		$collapsedZone->setContent($content);
Please login to merge, or discard this patch.
Ajax/bootstrap/html/HtmlTabs.php 1 patch
Braces   +17 added lines, -12 removed lines patch added patch discarded remove patch
@@ -35,8 +35,9 @@  discard block
 block discarded – undo
35 35
 					$tab
36 36
 			);
37 37
 			array_splice($this->tabs, $index, 0, $inserted);
38
-		} else
39
-			$this->tabs []=$tab;
38
+		} else {
39
+					$this->tabs []=$tab;
40
+		}
40 41
 	}
41 42
 
42 43
 	public function setActive($index){
@@ -116,9 +117,9 @@  discard block
 block discarded – undo
116 117
 	public function createTabContents() {
117 118
 		$tabContent=new HtmlTabContent("tabcontent-".$this->identifier);
118 119
 		foreach ( $this->tabs as $tab ) {
119
-			if ($tab instanceof HtmlTabItem)
120
-				$tabContent->addTabItem($tab->getHref());
121
-			elseif ($tab instanceof HtmlDropdown) {
120
+			if ($tab instanceof HtmlTabItem) {
121
+							$tabContent->addTabItem($tab->getHref());
122
+			} elseif ($tab instanceof HtmlDropdown) {
122 123
 				foreach ( $tab->getItems() as $dropdownItem ) {
123 124
 					$tabContent->addTabItem($dropdownItem->getHref());
124 125
 				}
@@ -137,8 +138,9 @@  discard block
 block discarded – undo
137 138
 
138 139
 	public function setContentToTab($index, $text) {
139 140
 		$tabContentItem=$this->content->getTabItem($index);
140
-		if (isset($tabContentItem))
141
-			$tabContentItem->setContent($text);
141
+		if (isset($tabContentItem)) {
142
+					$tabContentItem->setContent($text);
143
+		}
142 144
 	}
143 145
 
144 146
 	public function countTabs() {
@@ -146,8 +148,9 @@  discard block
 block discarded – undo
146 148
 	}
147 149
 
148 150
 	public function getTabItem($index) {
149
-		if ($index<sizeof($this->content->get))
150
-			return $this->content;
151
+		if ($index<sizeof($this->content->get)) {
152
+					return $this->content;
153
+		}
151 154
 	}
152 155
 
153 156
 	public function fadeEffect() {
@@ -168,9 +171,11 @@  discard block
 block discarded – undo
168 171
 	}
169 172
 
170 173
 	public function setStacked($stacked=true){
171
-		if($stacked)
172
-			$this->stacked="nav-stacked";
173
-		else $this->stacked="";
174
+		if($stacked) {
175
+					$this->stacked="nav-stacked";
176
+		} else {
177
+			$this->stacked="";
178
+		}
174 179
 	}
175 180
 
176 181
 	/* (non-PHPdoc)
Please login to merge, or discard this patch.