Passed
Push — master ( 71a1f0...84bf4a )
by Jean-Christophe
03:31 queued 19s
created
Ajax/bootstrap/html/HtmlBreadcrumbs.php 2 patches
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.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -42,15 +42,15 @@  discard block
 block discarded – undo
42 42
 	 * @param boolean $autoActive sets the last element's class to <b>active</b> if true
43 43
 	 * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()}
44 44
 	 */
45
-	public function __construct($identifier,$elements=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){
46
-		parent::__construct($identifier,"ol");
45
+	public function __construct($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) {
46
+		parent::__construct($identifier, "ol");
47 47
 		$this->startIndex=$startIndex;
48 48
 		$this->setProperty("class", "breadcrumb");
49 49
 		$this->content=array();
50 50
 		$this->autoActive=$autoActive;
51 51
 		$this->absolutePaths;
52
-		$this->_hrefFunction=function (HtmlDoubleElement $e){return $e->getContent();};
53
-		if(isset($hrefFunction)){
52
+		$this->_hrefFunction=function(HtmlDoubleElement $e) {return $e->getContent(); };
53
+		if (isset($hrefFunction)) {
54 54
 			$this->_hrefFunction=$hrefFunction;
55 55
 		}
56 56
 		$this->addElements($elements);
@@ -61,43 +61,43 @@  discard block
 block discarded – undo
61 61
 	 * @param string $href
62 62
 	 * @return \Ajax\bootstrap\html\HtmlLink
63 63
 	 */
64
-	public function addElement($element,$href="",$glyph=NULL){
64
+	public function addElement($element, $href="", $glyph=NULL) {
65 65
 		$size=sizeof($this->content);
66
-		if(\is_array($element)){
66
+		if (\is_array($element)) {
67 67
 			$elm=new HtmlLink("lnk-".$this->identifier."-".$size);
68 68
 			$elm->fromArray($element);
69
-		}else if($element instanceof HtmlLink){
69
+		} else if ($element instanceof HtmlLink) {
70 70
 			$elm=$element;
71
-		}else{
72
-			$elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element);
73
-			if(isset($glyph)){
71
+		} else {
72
+			$elm=new HtmlLink("lnk-".$this->identifier."-".$size, $href, $element);
73
+			if (isset($glyph)) {
74 74
 				$elm->wrapContentWithGlyph($glyph);
75 75
 			}
76 76
 		}
77
-		$elm->wrap("<li>","</li>");
77
+		$elm->wrap("<li>", "</li>");
78 78
 		$this->content[]=$elm;
79 79
 		$elm->setProperty($this->attr, $this->getHref($size));
80 80
 		return $elm;
81 81
 	}
82 82
 
83
-	public function setActive($index=null){
84
-		if(!isset($index)){
83
+	public function setActive($index=null) {
84
+		if (!isset($index)) {
85 85
 			$index=sizeof($this->content)-1;
86 86
 		}
87
-		$li=new HtmlBsDoubleElement("","li");
87
+		$li=new HtmlBsDoubleElement("", "li");
88 88
 		$li->setClass("active");
89 89
 		$li->setContent($this->content[$index]->getContent());
90 90
 		$this->content[$index]=$li;
91 91
 	}
92 92
 
93
-	public function addElements($elements){
94
-		foreach ( $elements as $element ) {
93
+	public function addElements($elements) {
94
+		foreach ($elements as $element) {
95 95
 			$this->addElement($element);
96 96
 		}
97 97
 		return $this;
98 98
 	}
99 99
 
100
-	public function fromArray($array){
100
+	public function fromArray($array) {
101 101
 		$array=parent::fromArray($array);
102 102
 		$this->addElements($array);
103 103
 		return $array;
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
 	 * @param string $separator
110 110
 	 * @return string
111 111
 	 */
112
-	public function getHref($index=null,$separator="/"){
113
-		if(!isset($index)){
112
+	public function getHref($index=null, $separator="/") {
113
+		if (!isset($index)) {
114 114
 			$index=sizeof($this->content);
115 115
 		}
116
-		if($this->absolutePaths===true){
116
+		if ($this->absolutePaths===true) {
117 117
 			return $this->_hrefFunction($this->content[$index]);
118
-		}else{
119
-			return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1));
118
+		} else {
119
+			return $this->root.implode($separator, array_slice(array_map(function($e) {return $this->_hrefFunction($e); }, $this->content), $this->startIndex, $index+1));
120 120
 		}
121 121
 	}
122 122
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 	 * @see \Ajax\bootstrap\html\BaseHtml::compile()
126 126
 	 */
127 127
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
128
-		if($this->autoActive){
128
+		if ($this->autoActive) {
129 129
 			$this->setActive();
130 130
 		}
131 131
 		return parent::compile($js, $view);
@@ -143,19 +143,19 @@  discard block
 block discarded – undo
143 143
 	 * @see \Ajax\bootstrap\html\base\BaseHtml::on()
144 144
 	 */
145 145
 	public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) {
146
-		foreach ($this->content as $element){
147
-			$element->on($event,$jsCode,$stopPropagation,$preventDefault);
146
+		foreach ($this->content as $element) {
147
+			$element->on($event, $jsCode, $stopPropagation, $preventDefault);
148 148
 		}
149 149
 		return $this;
150 150
 	}
151 151
 
152 152
 	public function setAutoActive($autoActive) {
153
-		$this->autoActive = $autoActive;
153
+		$this->autoActive=$autoActive;
154 154
 		return $this;
155 155
 	}
156 156
 
157 157
 	public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) {
158
-		foreach ($this->content as $element){
158
+		foreach ($this->content as $element) {
159 159
 			$element->_ajaxOn($operation, $event, $url, $responseElement, $parameters);
160 160
 		}
161 161
 		return $this;
@@ -167,18 +167,18 @@  discard block
 block discarded – undo
167 167
 	 * @param string $targetSelector the target of the get
168 168
 	 * @return HtmlBreadcrumbs
169 169
 	 */
170
-	public function autoGetOnClick($targetSelector){
171
-		return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr));
170
+	public function autoGetOnClick($targetSelector) {
171
+		return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr));
172 172
 	}
173 173
 
174
-	public function contentAsString(){
175
-		if($this->autoActive){
174
+	public function contentAsString() {
175
+		if ($this->autoActive) {
176 176
 			$this->setActive();
177 177
 		}
178 178
 		return parent::contentAsString();
179 179
 	}
180 180
 
181
-	public function getElement($index){
181
+	public function getElement($index) {
182 182
 		return $this->content[$index];
183 183
 	}
184 184
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 	 * @param mixed $glyph
188 188
 	 * @param int $index
189 189
 	 */
190
-	public function addGlyph($glyph,$index=0){
190
+	public function addGlyph($glyph, $index=0) {
191 191
 		$elm=$this->getElement($index);
192 192
 		return $elm->wrapContentWithGlyph($glyph);
193 193
 	}
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 * @param Dispatcher $dispatcher the request dispatcher
199 199
 	 * @return \Ajax\bootstrap\html\HtmlBreadcrumbs
200 200
 	 */
201
-	public function fromDispatcher(JsUtils $js,$dispatcher,$startIndex=0){
201
+	public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0) {
202 202
 		$this->startIndex=$startIndex;
203 203
 		return $this->addElements($js->fromDispatcher($dispatcher));
204 204
 	}
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	 * @return \Ajax\bootstrap\html\HtmlBreadcrumbs
211 211
 	 */
212 212
 	public function setHrefFunction($_hrefFunction) {
213
-		$this->_hrefFunction = $_hrefFunction;
213
+		$this->_hrefFunction=$_hrefFunction;
214 214
 		return $this;
215 215
 	}
216 216
 
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticHtmlElementsTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -158,8 +158,8 @@  discard block
 block discarded – undo
158 158
 	 * @param string $tagName
159 159
 	 * @return HtmlLabel
160 160
 	 */
161
-	public function htmlLabel($identifier, $content="", $icon=NULL,$tagName="div") {
162
-		return $this->addHtmlComponent(new HtmlLabel($identifier, $content,$icon, $tagName));
161
+	public function htmlLabel($identifier, $content="", $icon=NULL, $tagName="div") {
162
+		return $this->addHtmlComponent(new HtmlLabel($identifier, $content, $icon, $tagName));
163 163
 	}
164 164
 
165 165
 	/**
@@ -168,8 +168,8 @@  discard block
 block discarded – undo
168 168
 	 * @param array $attributes
169 169
 	 * @return HtmlLabelGroups
170 170
 	 */
171
-	public function htmlLabelGroups($identifier,$labels=array(),$attributes=array()){
172
-		return $this->addHtmlComponent(new HtmlLabelGroups($identifier,$labels,$attributes));
171
+	public function htmlLabelGroups($identifier, $labels=array(), $attributes=array()) {
172
+		return $this->addHtmlComponent(new HtmlLabelGroups($identifier, $labels, $attributes));
173 173
 	}
174 174
 
175 175
 	/**
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/traits/CheckboxTrait.php 2 patches
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,8 +49,9 @@  discard block
 block discarded – undo
49 49
 
50 50
 	public function getDataField(){
51 51
 		$field= $this->getField();
52
-		if($field instanceof AbstractCheckbox)
53
-			$field=$field->getField();
52
+		if($field instanceof AbstractCheckbox) {
53
+					$field=$field->getField();
54
+		}
54 55
 		return $field;
55 56
 	}
56 57
 
@@ -62,7 +63,7 @@  discard block
 block discarded – undo
62 63
 	public function setChecked($value=true){
63 64
 		if($value===true){
64 65
 			$this->getDataField()->setProperty("checked", "checked");
65
-		}else{
66
+		} else{
66 67
 			$this->getDataField()->removeProperty("checked");
67 68
 		}
68 69
 		return $this;
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -38,22 +38,22 @@  discard block
 block discarded – undo
38 38
 		return $this->getHtmlCk()->attachEvents($events);
39 39
 	}
40 40
 
41
-	public function getField(){
41
+	public function getField() {
42 42
 		return $this->content["field"];
43 43
 	}
44 44
 
45
-	public function getHtmlCk(){
45
+	public function getHtmlCk() {
46 46
 		return $this->content["field"];
47 47
 	}
48 48
 
49
-	public function setName($name){
49
+	public function setName($name) {
50 50
 		$this->getDataField()->setProperty("name", $name);
51 51
 		return $this;
52 52
 	}
53 53
 
54
-	public function getDataField(){
55
-		$field= $this->getField();
56
-		if($field instanceof AbstractCheckbox)
54
+	public function getDataField() {
55
+		$field=$this->getField();
56
+		if ($field instanceof AbstractCheckbox)
57 57
 			$field=$field->getField();
58 58
 		return $field;
59 59
 	}
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
 	 * @param boolean $value
64 64
 	 * @return HtmlFormField
65 65
 	 */
66
-	public function setChecked($value=true){
67
-		if($value===true){
66
+	public function setChecked($value=true) {
67
+		if ($value===true) {
68 68
 			$this->getDataField()->setProperty("checked", "checked");
69
-		}else{
69
+		} else {
70 70
 			$this->getDataField()->removeProperty("checked");
71 71
 		}
72 72
 		return $this;
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlAccordion.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,9 @@
 block discarded – undo
34 34
 	 * @see BaseHtml::run()
35 35
 	 */
36 36
 	public function run(JsUtils $js) {
37
-		if(isset($this->_bsComponent)===false)
38
-			$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params);
37
+		if(isset($this->_bsComponent)===false) {
38
+					$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params);
39
+		}
39 40
 			$this->addEventsOnRun($js);
40 41
 			return $this->_bsComponent;
41 42
 	}
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -6,31 +6,31 @@  discard block
 block discarded – undo
6 6
 use Ajax\semantic\html\content\HtmlAccordionItem;
7 7
 use Ajax\JsUtils;
8 8
 
9
-class HtmlAccordion extends HtmlSemCollection{
9
+class HtmlAccordion extends HtmlSemCollection {
10 10
 
11 11
 	protected $params=array();
12 12
 
13
-	public function __construct( $identifier, $tagName="div", $baseClass="ui"){
14
-		parent::__construct( $identifier, "div", "ui accordion");
13
+	public function __construct($identifier, $tagName="div", $baseClass="ui") {
14
+		parent::__construct($identifier, "div", "ui accordion");
15 15
 	}
16 16
 
17 17
 
18
-	protected function createItem($value){
18
+	protected function createItem($value) {
19 19
 		$count=$this->count();
20 20
 		$title=$value;
21 21
 		$content=NULL;
22
-		if(\is_array($value)){
23
-			$title=@$value[0];$content=@$value[1];
22
+		if (\is_array($value)) {
23
+			$title=@$value[0]; $content=@$value[1];
24 24
 		}
25
-		return new HtmlAccordionItem("item-".$this->identifier."-".$count, $title,$content);
25
+		return new HtmlAccordionItem("item-".$this->identifier."-".$count, $title, $content);
26 26
 	}
27 27
 
28
-	protected function createCondition($value){
28
+	protected function createCondition($value) {
29 29
 		return ($value instanceof HtmlAccordionItem)===false;
30 30
 	}
31 31
 
32
-	public function addPanel($title,$content){
33
-		return $this->addItem([$title,$content]);
32
+	public function addPanel($title, $content) {
33
+		return $this->addItem([$title, $content]);
34 34
 	}
35 35
 
36 36
 	/**
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
 	 * @param string $action a Phalcon action
43 43
 	 * @param array $params
44 44
 	 */
45
-	public function forwardPanel(JsUtils $js,$title,$initialController,$controller,$action,$params=array()){
46
-		return $this->addPanel($title, $js->forward($initialController, $controller, $action,$params));
45
+	public function forwardPanel(JsUtils $js, $title, $initialController, $controller, $action, $params=array()) {
46
+		return $this->addPanel($title, $js->forward($initialController, $controller, $action, $params));
47 47
 	}
48 48
 
49 49
 	/**
@@ -54,30 +54,30 @@  discard block
 block discarded – undo
54 54
 	 * @param string $viewName
55 55
 	 * @param $params The parameters to pass to the view
56 56
 	 */
57
-	public function renderViewPanel(JsUtils $js,$title,$initialController, $viewName, $params=array()) {
58
-		return $this->addPanel($title, $js->renderContent($initialController, $viewName,$params));
57
+	public function renderViewPanel(JsUtils $js, $title, $initialController, $viewName, $params=array()) {
58
+		return $this->addPanel($title, $js->renderContent($initialController, $viewName, $params));
59 59
 	}
60 60
 	/*
61 61
 	 * (non-PHPdoc)
62 62
 	 * @see BaseHtml::run()
63 63
 	 */
64 64
 	public function run(JsUtils $js) {
65
-		if(isset($this->_bsComponent)===false)
66
-			$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params);
65
+		if (isset($this->_bsComponent)===false)
66
+			$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier, $this->params);
67 67
 			$this->addEventsOnRun($js);
68 68
 			return $this->_bsComponent;
69 69
 	}
70 70
 
71
-	public function setStyled(){
71
+	public function setStyled() {
72 72
 		return $this->addToProperty("class", "styled");
73 73
 	}
74 74
 
75
-	public function activate($index){
75
+	public function activate($index) {
76 76
 		$this->getItem($index)->setActive(true);
77 77
 		return $this;
78 78
 	}
79 79
 
80
-	public function setExclusive($value){
80
+	public function setExclusive($value) {
81 81
 		$this->params["exclusive"]=$value;
82 82
 	}
83 83
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/content/HtmlGridCol.php 2 patches
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -20,8 +20,9 @@  discard block
 block discarded – undo
20 20
 	public function __construct($identifier, $width=NULL) {
21 21
 		parent::__construct($identifier, "div");
22 22
 		$this->setClass("column");
23
-		if (isset($width))
24
-			$this->setWidth($width);
23
+		if (isset($width)) {
24
+					$this->setWidth($width);
25
+		}
25 26
 	}
26 27
 
27 28
 	/**
@@ -48,10 +49,11 @@  discard block
 block discarded – undo
48 49
 
49 50
 	public function addDivider($vertical=true, $content=NULL) {
50 51
 		$divider=new HtmlDivider("", $content);
51
-		if ($vertical)
52
-			$divider->setVertical();
53
-		else
54
-			$divider->setHorizontal();
52
+		if ($vertical) {
53
+					$divider->setVertical();
54
+		} else {
55
+					$divider->setHorizontal();
56
+		}
55 57
 		$this->wrap($divider,"");
56 58
 		return $divider;
57 59
 	}
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	public function setWidth($width) {
32 32
 		if (\is_int($width)) {
33
-			$width=Wide::getConstants()["W" . $width];
33
+			$width=Wide::getConstants()["W".$width];
34 34
 		}
35 35
 		$this->addToPropertyCtrl("class", $width, Wide::getConstants());
36
-		return $this->addToPropertyCtrl("class", "wide", array ("wide" ));
36
+		return $this->addToPropertyCtrl("class", "wide", array("wide"));
37 37
 	}
38 38
 
39 39
 	public function setValue($value) {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 			$divider->setVertical();
52 52
 		else
53 53
 			$divider->setHorizontal();
54
-		$this->wrap($divider,"");
54
+		$this->wrap($divider, "");
55 55
 		return $divider;
56 56
 	}
57 57
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/content/HtmlStepItem.php 2 patches
Braces   +7 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 				$title=@$content[1];
18 18
 				$desc=@$content[2];
19 19
 				$status=@$content[3];
20
-			}else{
20
+			} else{
21 21
 				$icon=@$content["icon"];
22 22
 				$title=@$content["title"];
23 23
 				$desc=@$content["description"];
@@ -32,16 +32,17 @@  discard block
 block discarded – undo
32 32
 			if(isset($title)){
33 33
 				$this->setTitle($title,$desc);
34 34
 			}
35
-		}else{
35
+		} else{
36 36
 			$this->setContent($content);
37 37
 		}
38 38
 	}
39 39
 
40 40
 	public function setActive($value=true){
41
-		if($value)
42
-			$this->setStatus(StepStatus::ACTIVE);
43
-		else
44
-			$this->setStatus(StepStatus::NONE);
41
+		if($value) {
42
+					$this->setStatus(StepStatus::ACTIVE);
43
+		} else {
44
+					$this->setStatus(StepStatus::NONE);
45
+		}
45 46
 		return $this;
46 47
 	}
47 48
 
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -8,53 +8,53 @@
 block discarded – undo
8 8
 class HtmlStepItem extends HtmlAbsractItem {
9 9
 
10 10
 	public function __construct($identifier, $content) {
11
-		parent::__construct($identifier,"step",$content);
11
+		parent::__construct($identifier, "step", $content);
12 12
 	}
13
-	protected function initContent($content){
14
-		if(\is_array($content)){
15
-			if(JArray::isAssociative($content)===false){
13
+	protected function initContent($content) {
14
+		if (\is_array($content)) {
15
+			if (JArray::isAssociative($content)===false) {
16 16
 				$icon=@$content[0];
17 17
 				$title=@$content[1];
18 18
 				$desc=@$content[2];
19 19
 				$status=@$content[3];
20
-			}else{
20
+			} else {
21 21
 				$icon=@$content["icon"];
22 22
 				$title=@$content["title"];
23 23
 				$desc=@$content["description"];
24 24
 				$status=@$content["status"];
25 25
 			}
26
-			if(isset($icon)){
26
+			if (isset($icon)) {
27 27
 				$this->setIcon($icon);
28 28
 			}
29
-			if(isset($status)){
29
+			if (isset($status)) {
30 30
 				$this->setStatus($status);
31 31
 			}
32
-			if(isset($title)){
33
-				$this->setTitle($title,$desc);
32
+			if (isset($title)) {
33
+				$this->setTitle($title, $desc);
34 34
 			}
35
-		}else{
35
+		} else {
36 36
 			$this->setContent($content);
37 37
 		}
38 38
 	}
39 39
 
40
-	public function setActive($value=true){
41
-		if($value)
40
+	public function setActive($value=true) {
41
+		if ($value)
42 42
 			$this->setStatus(StepStatus::ACTIVE);
43 43
 		else
44 44
 			$this->setStatus(StepStatus::NONE);
45 45
 		return $this;
46 46
 	}
47 47
 
48
-	public function setCompleted(){
49
-		$this->removePropertyValues("class", [StepStatus::COMPLETED,StepStatus::DISABLED]);
48
+	public function setCompleted() {
49
+		$this->removePropertyValues("class", [StepStatus::COMPLETED, StepStatus::DISABLED]);
50 50
 		return $this->setStatus(StepStatus::COMPLETED);
51 51
 	}
52 52
 
53
-	public function setStatus($status){
53
+	public function setStatus($status) {
54 54
 		return $this->addToPropertyCtrl("class", $status, StepStatus::getConstants());
55 55
 	}
56 56
 
57
-	public function removeStatus(){
57
+	public function removeStatus() {
58 58
 		$this->removePropertyValues("class", StepStatus::getConstants());
59 59
 	}
60 60
 }
Please login to merge, or discard this patch.
Ajax/Semantic.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 use Ajax\semantic\traits\SemanticWidgetsTrait;
12 12
 
13 13
 class Semantic extends BaseGui {
14
-	use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait,
15
-	SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait;
14
+	use SemanticComponentsTrait, SemanticHtmlElementsTrait, SemanticHtmlCollectionsTrait,
15
+	SemanticHtmlModulesTrait, SemanticHtmlViewsTrait, SemanticWidgetsTrait;
16 16
 
17 17
 	private $language;
18 18
 
@@ -21,12 +21,12 @@  discard block
 block discarded – undo
21 21
 	}
22 22
 
23 23
 
24
-	public function setLanguage($language){
25
-		if($language!==$this->language){
24
+	public function setLanguage($language) {
25
+		if ($language!==$this->language) {
26 26
 			$file=\realpath(dirname(__FILE__)."/semantic/components/validation/languages/".$language.".js");
27
-			if(\file_exists($file)){
27
+			if (\file_exists($file)) {
28 28
 				$script=\file_get_contents($file);
29
-				$this->js->exec($script,true);
29
+				$this->js->exec($script, true);
30 30
 				$this->language=$language;
31 31
 			}
32 32
 		}
Please login to merge, or discard this patch.
Ajax/common/components/BaseComponent.php 2 patches
Braces   +12 added lines, -9 removed lines patch added patch discarded remove patch
@@ -39,8 +39,9 @@  discard block
 block discarded – undo
39 39
 
40 40
 	public function getParam($key) {
41 41
 		$value=null;
42
-		if (array_key_exists($key, $this->params))
43
-			$value=$this->params [$key];
42
+		if (array_key_exists($key, $this->params)) {
43
+					$value=$this->params [$key];
44
+		}
44 45
 		return $value;
45 46
 	}
46 47
 
@@ -49,16 +50,18 @@  discard block
 block discarded – undo
49 50
 	}
50 51
 
51 52
 	public function compile(JsUtils $js=NULL) {
52
-		if ($js==NULL)
53
-			$js=$this->js;
53
+		if ($js==NULL) {
54
+					$js=$this->js;
55
+		}
54 56
 		$script=$this->getScript();
55 57
 		$js->addToCompile($script);
56 58
 	}
57 59
 
58 60
 	protected function setParamCtrl($key, $value, $typeCtrl) {
59 61
 		if (\is_array($typeCtrl)) {
60
-			if (array_search($value, $typeCtrl)===false)
61
-				throw new \Exception("La valeur passée a propriété `".$key."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
62
+			if (array_search($value, $typeCtrl)===false) {
63
+							throw new \Exception("La valeur passée a propriété `".$key."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}");
64
+			}
62 65
 		} else {
63 66
 			if (!$typeCtrl($value)) {
64 67
 				throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key);
@@ -70,9 +73,9 @@  discard block
 block discarded – undo
70 73
 	public function setParams($params) {
71 74
 		foreach ( $params as $k => $v ) {
72 75
 			$method="set".ucfirst($k);
73
-			if (method_exists($this, $method))
74
-				$this->$method($v);
75
-			else {
76
+			if (method_exists($this, $method)) {
77
+							$this->$method($v);
78
+			} else {
76 79
 				$this->setParam($k, $v);
77 80
 				trigger_error("`".$k."` property n'existe pas", E_USER_NOTICE);
78 81
 			}
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
  * @version 1.001
11 11
  */
12 12
 abstract class BaseComponent {
13
-	public $jquery_code_for_compile=array ();
14
-	protected $params=array ();
13
+	public $jquery_code_for_compile=array();
14
+	protected $params=array();
15 15
 
16 16
 	/**
17 17
 	 *
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	}
69 69
 
70 70
 	public function setParams($params) {
71
-		foreach ( $params as $k => $v ) {
71
+		foreach ($params as $k => $v) {
72 72
 			$method="set".ucfirst($k);
73 73
 			if (method_exists($this, $method))
74 74
 				$this->$method($v);
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
 		return $this;
82 82
 	}
83 83
 
84
-	public function addParams($params){
85
-		foreach ($params as $k=>$v){
84
+	public function addParams($params) {
85
+		foreach ($params as $k=>$v) {
86 86
 				$this->setParam($k, $v);
87 87
 		}
88 88
 		return $this;
@@ -90,11 +90,11 @@  discard block
 block discarded – undo
90 90
 
91 91
 	abstract public function getScript();
92 92
 
93
-	public function setDebug($value){
93
+	public function setDebug($value) {
94 94
 		return $this->setParam("debug", $value);
95 95
 	}
96 96
 
97
-	public function setVerbose($value){
97
+	public function setVerbose($value) {
98 98
 		return $this->setParam("verbose", $value);
99 99
 	}
100 100
 }
Please login to merge, or discard this patch.
Ajax/common/html/HtmlCollection.php 2 patches
Braces   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 			foreach ($items as $k=>$v){
23 23
 				$this->addItem([$k,$v]);
24 24
 			}
25
-		}else{
25
+		} else{
26 26
 			foreach ($items as $item){
27 27
 				$this->addItem($item);
28 28
 			}
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
 	 * @return \Ajax\common\html\HtmlDoubleElement
71 71
 	 */
72 72
 	public function getItem($index) {
73
-		if (is_int($index))
74
-			return $this->content[$index];
75
-		else {
73
+		if (is_int($index)) {
74
+					return $this->content[$index];
75
+		} else {
76 76
 			$elm=$this->getElementById($index, $this->content);
77 77
 			return $elm;
78 78
 		}
@@ -134,10 +134,11 @@  discard block
 block discarded – undo
134 134
 		$i=0;
135 135
 		foreach ($properties as $k=>$v){
136 136
 			$c=$this->content[$i++];
137
-			if(isset($c))
138
-				$c->setProperty($k,$v);
139
-			else
140
-				return $this;
137
+			if(isset($c)) {
138
+							$c->setProperty($k,$v);
139
+			} else {
140
+							return $this;
141
+			}
141 142
 		}
142 143
 		return $this;
143 144
 	}
@@ -151,8 +152,7 @@  discard block
 block discarded – undo
151 152
 			$c=$this->content[$i++];
152 153
 			if(isset($c)){
153 154
 				$c->setProperty($property,$value);
154
-			}
155
-			else{
155
+			} else{
156 156
 				return $this;
157 157
 			}
158 158
 		}
Please login to merge, or discard this patch.
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -15,44 +15,44 @@  discard block
 block discarded – undo
15 15
  */
16 16
 abstract class HtmlCollection extends HtmlDoubleElement {
17 17
 
18
-	public function __construct($identifier,$tagName="div"){
19
-		parent::__construct($identifier,$tagName);
18
+	public function __construct($identifier, $tagName="div") {
19
+		parent::__construct($identifier, $tagName);
20 20
 		$this->content=array();
21 21
 	}
22 22
 
23
-	public function addItems($items){
24
-		if(JArray::isAssociative($items)){
25
-			foreach ($items as $k=>$v){
26
-				$this->addItem([$k,$v]);
23
+	public function addItems($items) {
24
+		if (JArray::isAssociative($items)) {
25
+			foreach ($items as $k=>$v) {
26
+				$this->addItem([$k, $v]);
27 27
 			}
28
-		}else{
29
-			foreach ($items as $item){
28
+		} else {
29
+			foreach ($items as $item) {
30 30
 				$this->addItem($item);
31 31
 			}
32 32
 		}
33 33
 		return $this;
34 34
 	}
35 35
 
36
-	public function setItems($items){
36
+	public function setItems($items) {
37 37
 		$this->content=$items;
38 38
 		return $this;
39 39
 	}
40 40
 
41
-	public function getItems(){
41
+	public function getItems() {
42 42
 		return $this->content;
43 43
 	}
44 44
 
45
-	protected function getItemToAdd($item){
45
+	protected function getItemToAdd($item) {
46 46
 		$itemO=$item;
47
-		if($this->createCondition($item)===true){
47
+		if ($this->createCondition($item)===true) {
48 48
 			$itemO=$this->createItem($item);
49 49
 		}
50 50
 		return $itemO;
51 51
 	}
52 52
 
53
-	protected function setItemIdentifier($item,$classname,$index){
54
-		if($item instanceof BaseWidget){
55
-			if(JString::isNull($item->getIdentifier())){
53
+	protected function setItemIdentifier($item, $classname, $index) {
54
+		if ($item instanceof BaseWidget) {
55
+			if (JString::isNull($item->getIdentifier())) {
56 56
 				$item->setIdentifier($classname."-".$this->identifier."-".$index);
57 57
 			}
58 58
 		}
@@ -63,15 +63,15 @@  discard block
 block discarded – undo
63 63
 	 * @param HtmlDoubleElement|string|array $item
64 64
 	 * @return \Ajax\common\html\HtmlDoubleElement
65 65
 	 */
66
-	public function addItem($item){
66
+	public function addItem($item) {
67 67
 		$itemO=$this->getItemToAdd($item);
68 68
 		$this->addContent($itemO);
69 69
 		return $itemO;
70 70
 	}
71 71
 
72
-	public function insertItem($item,$position=0){
72
+	public function insertItem($item, $position=0) {
73 73
 		$itemO=$this->getItemToAdd($item);
74
-		\array_splice( $this->content, $position, 0, array($itemO));
74
+		\array_splice($this->content, $position, 0, array($itemO));
75 75
 		return $itemO;
76 76
 	}
77 77
 
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
 		return $this;
95 95
 	}
96 96
 
97
-	public function removeItem($index){
97
+	public function removeItem($index) {
98 98
 		return array_splice($this->content, $index, 1);
99 99
 	}
100 100
 
101
-	public function count(){
101
+	public function count() {
102 102
 		return \sizeof($this->content);
103 103
 	}
104 104
 
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
 		return $this->addItem($function($object));
110 110
 	}
111 111
 
112
-	public function apply($callBack){
113
-		foreach ($this->content as $item){
112
+	public function apply($callBack) {
113
+		foreach ($this->content as $item) {
114 114
 			$callBack($item);
115 115
 		}
116 116
 		return $this;
@@ -130,23 +130,23 @@  discard block
 block discarded – undo
130 130
 	 */
131 131
 	abstract protected function createItem($value);
132 132
 
133
-	protected function createCondition($value){
133
+	protected function createCondition($value) {
134 134
 		return \is_object($value)===false;
135 135
 	}
136 136
 
137
-	protected function contentAs($tagName){
138
-		foreach ($this->content as $item){
137
+	protected function contentAs($tagName) {
138
+		foreach ($this->content as $item) {
139 139
 			$item->setTagName($tagName);
140 140
 		}
141 141
 		return $this;
142 142
 	}
143 143
 
144
-	public function setProperties($properties){
144
+	public function setProperties($properties) {
145 145
 		$i=0;
146
-		foreach ($properties as $k=>$v){
146
+		foreach ($properties as $k=>$v) {
147 147
 			$c=$this->content[$i++];
148
-			if(isset($c))
149
-				$c->setProperty($k,$v);
148
+			if (isset($c))
149
+				$c->setProperty($k, $v);
150 150
 			else
151 151
 				return $this;
152 152
 		}
@@ -159,17 +159,17 @@  discard block
 block discarded – undo
159 159
 	 * @param array $values
160 160
 	 * @return HtmlCollection
161 161
 	 */
162
-	public function setPropertyValues($property,$values){
162
+	public function setPropertyValues($property, $values) {
163 163
 		$i=0;
164
-		if(\is_array($values)===false){
165
-			$values=\array_fill(0, $this->count(),$values);
164
+		if (\is_array($values)===false) {
165
+			$values=\array_fill(0, $this->count(), $values);
166 166
 		}
167
-		foreach ($values as $value){
167
+		foreach ($values as $value) {
168 168
 			$c=$this->content[$i++];
169
-			if(isset($c)){
170
-				$c->setProperty($property,$value);
169
+			if (isset($c)) {
170
+				$c->setProperty($property, $value);
171 171
 			}
172
-			else{
172
+			else {
173 173
 				return $this;
174 174
 			}
175 175
 		}
@@ -179,13 +179,13 @@  discard block
 block discarded – undo
179 179
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
180 180
 		$index=0;
181 181
 		$classname=\strtolower(JReflection::shortClassName($this));
182
-		foreach ($this->content as $item){
183
-			$this->setItemIdentifier($item,$classname,$index++);
182
+		foreach ($this->content as $item) {
183
+			$this->setItemIdentifier($item, $classname, $index++);
184 184
 		}
185
-		return parent::compile($js,$view);
185
+		return parent::compile($js, $view);
186 186
 	}
187 187
 
188
-	public function getItemById($identifier){
188
+	public function getItemById($identifier) {
189 189
 		return $this->getElementById($identifier, $this->content);
190 190
 	}
191 191
 }
Please login to merge, or discard this patch.