Completed
Push — master ( 5db14f...017cb5 )
by Jean-Christophe
03:16
created
Ajax/semantic/html/modules/HtmlShape.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -51,8 +51,9 @@  discard block
 block discarded – undo
51 51
 	 */
52 52
 	public function getSideContent($index){
53 53
 		$item= $this->getItem($index);
54
-		if(isset($item))
55
-			return $item->getContent();
54
+		if(isset($item)) {
55
+					return $item->getContent();
56
+		}
56 57
 		return null;
57 58
 	}
58 59
 
@@ -85,15 +86,17 @@  discard block
 block discarded – undo
85 86
 	 * @see BaseHtml::run()
86 87
 	 */
87 88
 	public function run(JsUtils $js) {
88
-		if (isset($this->_bsComponent) === false)
89
-			$this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params);
89
+		if (isset($this->_bsComponent) === false) {
90
+					$this->_bsComponent=$js->semantic()->shape("#" . $this->identifier, $this->_params);
91
+		}
90 92
 		$this->addEventsOnRun($js);
91 93
 		return $this->_bsComponent;
92 94
 	}
93 95
 
94 96
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
95
-		if($this->_autoActive)
96
-			$this->setActiveSide(0);
97
+		if($this->_autoActive) {
98
+					$this->setActiveSide(0);
99
+		}
97 100
 		return parent::compile($js,$view);
98 101
 	}
99 102
 }
100 103
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/html/elements/HtmlButtonGroups.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,8 +15,9 @@  discard block
 block discarded – undo
15 15
 
16 16
 	public function __construct($identifier, $elements=array(), $asIcons=false) {
17 17
 		parent::__construct($identifier, "div", "ui buttons");
18
-		if ($asIcons === true)
19
-			$this->asIcons();
18
+		if ($asIcons === true) {
19
+					$this->asIcons();
20
+		}
20 21
 		$this->addElements($elements, $asIcons);
21 22
 	}
22 23
 	protected function createItem($value){
@@ -26,8 +27,9 @@  discard block
 block discarded – undo
26 27
 
27 28
 	public function addElement($element, $asIcon=false) {
28 29
 		$item=$this->addItem($element);
29
-		if($asIcon)
30
-			$item->asIcon($element);
30
+		if($asIcon) {
31
+					$item->asIcon($element);
32
+		}
31 33
 		return $item;
32 34
 	}
33 35
 
@@ -55,8 +57,9 @@  discard block
 block discarded – undo
55 57
 
56 58
 	public function asIcons() {
57 59
 		foreach ( $this->content as $item ) {
58
-			if($item instanceof HtmlButton)
59
-			$item->asIcon($item->getContent());
60
+			if($item instanceof HtmlButton) {
61
+						$item->asIcon($item->getContent());
62
+			}
60 63
 		}
61 64
 		return $this->addToProperty("class", "icons");
62 65
 	}
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticHtmlCollectionsTrait.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,9 @@
 block discarded – undo
31 31
 	 */
32 32
 	public function htmlMessage($identifier, $content="",$styles=NULL) {
33 33
 		$msg= $this->addHtmlComponent(new HtmlMessage($identifier, $content));
34
-		if(isset($msg))
35
-			$msg->setStyle($styles);
34
+		if(isset($msg)) {
35
+					$msg->setStyle($styles);
36
+		}
36 37
 		return $msg;
37 38
 	}
38 39
 
Please login to merge, or discard this patch.
Ajax/semantic/components/validation/FieldValidation.php 1 patch
Braces   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,15 +43,16 @@
 block discarded – undo
43 43
 	}
44 44
 
45 45
 	public function addRule($type,$prompt=NULL,$value=NULL){
46
-		if($type instanceof  Rule)
47
-			$this->rules[]=$type;
48
-		else if(\is_array($type)){
46
+		if($type instanceof  Rule) {
47
+					$this->rules[]=$type;
48
+		} else if(\is_array($type)){
49 49
 			$value=JArray::getValue($type, "value", 2);
50 50
 			$prompt=JArray::getValue($type, "prompt", 1);
51 51
 			$type=JArray::getValue($type, "type", 0);
52 52
 			$this->rules[]=new Rule($type,$prompt,$value);
53
-		}else
54
-			$this->rules[]=new Rule($type,$prompt,$value);
53
+		} else {
54
+					$this->rules[]=new Rule($type,$prompt,$value);
55
+		}
55 56
 	}
56 57
 
57 58
 	public function jsonSerialize(){
Please login to merge, or discard this patch.
Ajax/semantic/components/validation/Rule.php 1 patch
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -55,10 +55,12 @@  discard block
 block discarded – undo
55 55
 
56 56
 	public function jsonSerialize() {
57 57
 		$result= ["type"=>$this->type];
58
-		if(isset($this->prompt))
59
-			$result["prompt"]=$this->prompt;
60
-		if(isset($this->value))
61
-			$result["value"]=$this->value;
58
+		if(isset($this->prompt)) {
59
+					$result["prompt"]=$this->prompt;
60
+		}
61
+		if(isset($this->value)) {
62
+					$result["value"]=$this->value;
63
+		}
62 64
 		return $result;
63 65
 	}
64 66
 
@@ -90,8 +92,9 @@  discard block
 block discarded – undo
90 92
 	 * @return \Ajax\semantic\components\validation\Rule
91 93
 	 */
92 94
 	public static function integer($min=NULL,$max=NULL,$prompt=NULL){
93
-		if(\is_int($min) && \is_int($max))
94
-			return new Rule("integer[{$min}..{$max}]",$prompt);
95
+		if(\is_int($min) && \is_int($max)) {
96
+					return new Rule("integer[{$min}..{$max}]",$prompt);
97
+		}
95 98
 		return new Rule("integer",$prompt);
96 99
 	}
97 100
 
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/traits/FieldsTrait.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,11 +18,12 @@
 block discarded – undo
18 18
 		if(\is_array($value)){
19 19
 			$itemO=new HtmlFormInput(JArray::getDefaultValue($value, "id",""),JArray::getDefaultValue($value, "label",null),JArray::getDefaultValue($value, "type", "text"),JArray::getDefaultValue($value, "value",""),JArray::getDefaultValue($value, "placeholder",JArray::getDefaultValue($value, "label",null)));
20 20
 			return $itemO;
21
-		}elseif(\is_object($value)){
21
+		} elseif(\is_object($value)){
22 22
 			$itemO=new HtmlFormField("field-".$this->identifier, $value);
23 23
 			return $itemO;
24
-		}else
25
-			return new HtmlFormInput($value);
24
+		} else {
25
+					return new HtmlFormInput($value);
26
+		}
26 27
 	}
27 28
 
28 29
 	protected function createCondition($value){
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/checkbox/AbstractCheckbox.php 1 patch
Braces   +7 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,14 +13,15 @@  discard block
 block discarded – undo
13 13
 		$field=new \Ajax\common\html\html5\HtmlInput($identifier, $inputType, $value);
14 14
 		$field->setProperty("name", $name);
15 15
 		$this->setField($field);
16
-		if (isset($label))
17
-			$this->setLabel($label);
16
+		if (isset($label)) {
17
+					$this->setLabel($label);
18
+		}
18 19
 	}
19 20
 
20 21
 	public function setChecked($value=true){
21 22
 		if($value===true){
22 23
 			$this->getField()->setProperty("checked", "checked");
23
-		}else{
24
+		} else{
24 25
 			$this->getField()->removeProperty("checked");
25 26
 		}
26 27
 		return $this;
@@ -49,8 +50,9 @@  discard block
 block discarded – undo
49 50
 	 * @return mixed
50 51
 	 */
51 52
 	public function getLabel() {
52
-		if (\array_key_exists("label", $this->content))
53
-			return $this->content["label"];
53
+		if (\array_key_exists("label", $this->content)) {
54
+					return $this->content["label"];
55
+		}
54 56
 	}
55 57
 
56 58
 	/**
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/menus/HtmlMenu.php 1 patch
Braces   +19 added lines, -15 removed lines patch added patch discarded remove patch
@@ -58,9 +58,9 @@  discard block
 block discarded – undo
58 58
 	}
59 59
 
60 60
 	private function afterInsert($item) {
61
-		if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false)
62
-			$item->addToPropertyCtrl("class", "item", array ("item" ));
63
-		else {
61
+		if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) {
62
+					$item->addToPropertyCtrl("class", "item", array ("item" ));
63
+		} else {
64 64
 			$this->setSecondary();
65 65
 		}
66 66
 		return $item;
@@ -75,8 +75,9 @@  discard block
 block discarded – undo
75 75
 	public function addItem($item) {
76 76
 		$number=$item;
77 77
 		$item=parent::addItem($this->getItemToInsert($item));
78
-		if(\is_int($number))
79
-			$item->setProperty("data-page", $number);
78
+		if(\is_int($number)) {
79
+					$item->setProperty("data-page", $number);
80
+		}
80 81
 		return $this->afterInsert($item);
81 82
 	}
82 83
 
@@ -149,10 +150,11 @@  discard block
 block discarded – undo
149 150
 	}
150 151
 
151 152
 	public function setSecondary($value=true) {
152
-		if($value)
153
-			$this->addToProperty("class", "secondary");
154
-		else
155
-			$this->removePropertyValue("class", "secondary");
153
+		if($value) {
154
+					$this->addToProperty("class", "secondary");
155
+		} else {
156
+					$this->removePropertyValue("class", "secondary");
157
+		}
156 158
 		return $this;
157 159
 	}
158 160
 
@@ -172,8 +174,9 @@  discard block
 block discarded – undo
172 174
 		$this->apply(function (HtmlDoubleElement &$item) {
173 175
 			$item->setTagName("a");
174 176
 		});
175
-		if ($vertical === true)
176
-			$this->setVertical();
177
+		if ($vertical === true) {
178
+					$this->setVertical();
179
+		}
177 180
 		return $this->addToProperty("class", "tabular");
178 181
 	}
179 182
 
@@ -202,10 +205,11 @@  discard block
 block discarded – undo
202 205
 	 */
203 206
 	public function fromDatabaseObject($object, $function) {
204 207
 		$return=$function($object);
205
-		if (\is_array($return))
206
-			$this->addItems($return);
207
-		else
208
-			$this->addItem($return);
208
+		if (\is_array($return)) {
209
+					$this->addItems($return);
210
+		} else {
211
+					$this->addItem($return);
212
+		}
209 213
 	}
210 214
 
211 215
 	/**
Please login to merge, or discard this patch.
Ajax/semantic/html/base/traits/MenuItemTrait.php 1 patch
Braces   +14 added lines, -10 removed lines patch added patch discarded remove patch
@@ -11,14 +11,15 @@  discard block
 block discarded – undo
11 11
 	public function setContent($content){
12 12
 		if($content==="-"){
13 13
 			$this->asDivider();
14
-		}elseif($content==="-search-"){
14
+		} elseif($content==="-search-"){
15 15
 			$values=\explode(",",$content,-1);
16 16
 			$this->asSearchInput(JArray::getDefaultValue($values, 0, "Search..."),JArray::getDefaultValue($values, 1, "search"));
17
-		}elseif(JString::startswith($content, "-")){
17
+		} elseif(JString::startswith($content, "-")){
18 18
 			$content=\ltrim($content,"-");
19 19
 			$this->asHeader($content);
20
-		}else
21
-			parent::setContent($content);
20
+		} else {
21
+					parent::setContent($content);
22
+		}
22 23
 		return $this;
23 24
 	}
24 25
 
@@ -30,11 +31,13 @@  discard block
 block discarded – undo
30 31
 	public function asSearchInput($placeholder=NULL,$icon=NULL){
31 32
 		$this->setClass("ui icon search input");
32 33
 		$input=new HtmlInput("search-".$this->identifier);
33
-		if(isset($placeholder))
34
-			$input->setProperty("placeholder", $placeholder);
34
+		if(isset($placeholder)) {
35
+					$input->setProperty("placeholder", $placeholder);
36
+		}
35 37
 			$this->content=$input;
36
-			if(isset($icon))
37
-				$this->addIcon($icon);
38
+			if(isset($icon)) {
39
+							$this->addIcon($icon);
40
+			}
38 41
 				return $this;
39 42
 	}
40 43
 
@@ -57,8 +60,9 @@  discard block
 block discarded – undo
57 60
 		$this->setClass("header");
58 61
 		$this->tagName="div";
59 62
 		$this->content=$caption;
60
-		if(isset($icon))
61
-			$this->addIcon($icon,Direction::LEFT);
63
+		if(isset($icon)) {
64
+					$this->addIcon($icon,Direction::LEFT);
65
+		}
62 66
 			return $this;
63 67
 	}
64 68
 
Please login to merge, or discard this patch.