Completed
Push — master ( 8b49e3...3c0bc3 )
by Jean-Christophe
03:22
created
Ajax/semantic/widgets/dataform/DataForm.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -17,48 +17,48 @@  discard block
 block discarded – undo
17 17
  * @since 2.2
18 18
  */
19 19
 class DataForm extends Widget {
20
-	use FormFieldAsTrait,FormTrait;
20
+	use FormFieldAsTrait, FormTrait;
21 21
 
22 22
 	public function __construct($identifier, $modelInstance=NULL) {
23
-		parent::__construct($identifier, null,$modelInstance);
23
+		parent::__construct($identifier, null, $modelInstance);
24 24
 		$this->_instanceViewer=new FormInstanceViewer();
25 25
 		$this->content=["form"=>new HtmlForm($identifier)];
26 26
 		$this->_toolbarPosition=PositionInTable::BEFORETABLE;
27 27
 	}
28 28
 
29
-	public function compile(JsUtils $js=NULL,&$view=NULL){
29
+	public function compile(JsUtils $js=NULL, &$view=NULL) {
30 30
 		$this->_instanceViewer->setInstance($this->_modelInstance);
31 31
 
32 32
 		$form=$this->content["form"];
33 33
 		$this->_generateContent($form);
34 34
 
35
-		if(isset($this->_toolbar)){
35
+		if (isset($this->_toolbar)) {
36 36
 			$this->_setToolbarPosition($form);
37 37
 		}
38
-		$this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"form",PositionInTable::AFTERTABLE]);
39
-		return parent::compile($js,$view);
38
+		$this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "form", PositionInTable::AFTERTABLE]);
39
+		return parent::compile($js, $view);
40 40
 	}
41 41
 
42 42
 	/**
43 43
 	 * @param HtmlForm $form
44 44
 	 */
45
-	protected function _generateContent($form){
46
-		$values= $this->_instanceViewer->getValues();
45
+	protected function _generateContent($form) {
46
+		$values=$this->_instanceViewer->getValues();
47 47
 		$count=$this->_instanceViewer->count();
48 48
 
49 49
 		$separators=$this->_instanceViewer->getSeparators();
50 50
 		$size=\sizeof($separators);
51
-		if($size===1){
52
-			foreach ($values as $v){
51
+		if ($size===1) {
52
+			foreach ($values as $v) {
53 53
 				$form->addField($v);
54 54
 			}
55
-		}else{
55
+		} else {
56 56
 			$separators[]=$count;
57
-			for($i=0;$i<$size;$i++){
58
-				$fields=\array_slice($values, $separators[$i]+1,$separators[$i+1]-$separators[$i]);
59
-				if(\sizeof($fields)===1){
57
+			for ($i=0; $i<$size; $i++) {
58
+				$fields=\array_slice($values, $separators[$i]+1, $separators[$i+1]-$separators[$i]);
59
+				if (\sizeof($fields)===1) {
60 60
 					$form->addField($fields[0]);
61
-				}else
61
+				} else
62 62
 					$form->addFields($fields);
63 63
 			}
64 64
 		}
@@ -67,11 +67,11 @@  discard block
 block discarded – undo
67 67
 	/**
68 68
 	 * @return HtmlForm
69 69
 	 */
70
-	protected function getForm(){
70
+	protected function getForm() {
71 71
 		return $this->content["form"];
72 72
 	}
73 73
 
74
-	public function addSeparatorAfter($fieldNum){
74
+	public function addSeparatorAfter($fieldNum) {
75 75
 		$this->_instanceViewer->addSeparatorAfter($fieldNum);
76 76
 		return $this;
77 77
 	}
@@ -85,26 +85,26 @@  discard block
 block discarded – undo
85 85
 		return $this;
86 86
 	}
87 87
 
88
-	public function addSubmitInToolbar($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL){
89
-		$button=new HtmlButton($identifier,$value,$cssStyle);
90
-		$this->_buttonAsSubmit($button,"click",$url,$responseElement);
88
+	public function addSubmitInToolbar($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL) {
89
+		$button=new HtmlButton($identifier, $value, $cssStyle);
90
+		$this->_buttonAsSubmit($button, "click", $url, $responseElement);
91 91
 		return $this->addInToolbar($button);
92 92
 	}
93 93
 
94
-	public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){
95
-		return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle){
96
-			$button=new HtmlButton($id,$value,$cssStyle);
97
-			$this->_buttonAsSubmit($button,"click",$url,$responseElement);
94
+	public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) {
95
+		return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle){
96
+			$button=new HtmlButton($id, $value, $cssStyle);
97
+			$this->_buttonAsSubmit($button, "click", $url, $responseElement);
98 98
 			return $button;
99
-		}, $index,$attributes);
99
+		}, $index, $attributes);
100 100
 	}
101 101
 
102
-	public function fieldAsReset($index,$cssStyle=NULL,$attributes=NULL){
103
-		return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){
104
-			$button=new HtmlButton($id,$value,$cssStyle);
102
+	public function fieldAsReset($index, $cssStyle=NULL, $attributes=NULL) {
103
+		return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){
104
+			$button=new HtmlButton($id, $value, $cssStyle);
105 105
 			$button->setProperty("type", "reset");
106 106
 			return $button;
107
-		}, $index,$attributes);
107
+		}, $index, $attributes);
108 108
 	}
109 109
 
110 110
 	/**
Please login to merge, or discard this patch.
Ajax/semantic/widgets/dataform/FormInstanceViewer.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -9,42 +9,42 @@
 block discarded – undo
9 9
 class FormInstanceViewer extends InstanceViewer {
10 10
 	protected $separators;
11 11
 
12
-	public function __construct($identifier,$instance=NULL, $captions=NULL) {
13
-		parent::__construct($identifier,$instance=NULL, $captions=NULL);
12
+	public function __construct($identifier, $instance=NULL, $captions=NULL) {
13
+		parent::__construct($identifier, $instance=NULL, $captions=NULL);
14 14
 		$this->separators=[-1];
15 15
 	}
16 16
 
17
-	protected function _beforeAddProperty($index,&$field){
18
-		if(JString::endswith($field, "\n")===true){
17
+	protected function _beforeAddProperty($index, &$field) {
18
+		if (JString::endswith($field, "\n")===true) {
19 19
 			$this->addSeparatorAfter($index);
20 20
 		}
21
-		if($index>1 && JString::startswith($field, "\n")===true){
21
+		if ($index>1 && JString::startswith($field, "\n")===true) {
22 22
 			$this->addSeparatorAfter($index-1);
23 23
 		}
24 24
 		$field=\str_replace("\n", "", $field);
25 25
 	}
26 26
 
27
-	protected function _getDefaultValue($name,$value,$index){
27
+	protected function _getDefaultValue($name, $value, $index) {
28 28
 		$caption=$this->getCaption($index);
29
-		$input=new HtmlFormInput($this->widgetIdentifier."-".$name,$caption,"text",$value);
29
+		$input=new HtmlFormInput($this->widgetIdentifier."-".$name, $caption, "text", $value);
30 30
 		$input->setName($name);
31 31
 		return $input;
32 32
 	}
33 33
 
34
-	public function getFieldName($index){
34
+	public function getFieldName($index) {
35 35
 		$property=$this->getProperty($index);
36
-		if($property instanceof \ReflectionProperty){
36
+		if ($property instanceof \ReflectionProperty) {
37 37
 			$result=$property->getName();
38
-		}elseif(\is_callable($property)){
38
+		}elseif (\is_callable($property)) {
39 39
 			$result=$this->visibleProperties[$index];
40
-		}else{
40
+		} else {
41 41
 			$result=$property;
42 42
 		}
43 43
 		return $result;
44 44
 	}
45 45
 
46
-	public function addSeparatorAfter($fieldNum){
47
-		if(\array_search($fieldNum, $this->separators)===false)
46
+	public function addSeparatorAfter($fieldNum) {
47
+		if (\array_search($fieldNum, $this->separators)===false)
48 48
 			$this->separators[]=$fieldNum;
49 49
 			return $this;
50 50
 	}
Please login to merge, or discard this patch.
Ajax/semantic/widgets/dataform/FormFieldAsTrait.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@  discard block
 block discarded – undo
16 16
  * @property object $_modelInstance;
17 17
  */
18 18
 
19
-trait FormFieldAsTrait{
19
+trait FormFieldAsTrait {
20 20
 
21 21
 	abstract protected function _getFieldIdentifier($prefix);
22
-	abstract public function setValueFunction($index,$callback);
22
+	abstract public function setValueFunction($index, $callback);
23 23
 
24
-	private function _getLabelField($caption,$icon=NULL){
25
-		$label=new HtmlLabel($this->_getFieldIdentifier("lbl"),$caption,$icon);
24
+	private function _getLabelField($caption, $icon=NULL) {
25
+		$label=new HtmlLabel($this->_getFieldIdentifier("lbl"), $caption, $icon);
26 26
 		return $label;
27 27
 	}
28 28
 
@@ -30,22 +30,22 @@  discard block
 block discarded – undo
30 30
 	 * @param HtmlFormField $element
31 31
 	 * @param array $attributes
32 32
 	 */
33
-	protected function _applyAttributes($element,&$attributes,$index){
33
+	protected function _applyAttributes($element, &$attributes, $index) {
34 34
 		$this->_addRules($element, $attributes);
35
-		if(isset($attributes["callback"])){
35
+		if (isset($attributes["callback"])) {
36 36
 			$callback=$attributes["callback"];
37
-			if(\is_callable($callback)){
38
-				$callback($element,$this->_modelInstance,$index);
37
+			if (\is_callable($callback)) {
38
+				$callback($element, $this->_modelInstance, $index);
39 39
 				unset($attributes["callback"]);
40 40
 			}
41 41
 		}
42 42
 		$element->fromArray($attributes);
43 43
 	}
44 44
 
45
-	protected function _addRules($element,&$attributes){
46
-		if(isset($attributes["rules"])){
45
+	protected function _addRules($element, &$attributes) {
46
+		if (isset($attributes["rules"])) {
47 47
 			$rules=$attributes["rules"];
48
-			if(\is_array($rules)){
48
+			if (\is_array($rules)) {
49 49
 				$element->addRules($rules);
50 50
 			}
51 51
 			else
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
54 54
 		}
55 55
 	}
56 56
 
57
-	protected function _fieldAs($elementCallback,$index,$attributes=NULL,$identifier=null){
58
-		$this->setValueFunction($index,function($value) use ($index,&$attributes,$elementCallback){
57
+	protected function _fieldAs($elementCallback, $index, $attributes=NULL, $identifier=null) {
58
+		$this->setValueFunction($index, function($value) use ($index, &$attributes, $elementCallback){
59 59
 			$caption=$this->_instanceViewer->getCaption($index);
60 60
 			$name=$this->_instanceViewer->getFieldName($index);
61
-			$element=$elementCallback($this->getIdentifier()."-".$name,$name,$value,$caption);
62
-			if(\is_array($attributes)){
63
-				$this->_applyAttributes($element, $attributes,$index);
61
+			$element=$elementCallback($this->getIdentifier()."-".$name, $name, $value, $caption);
62
+			if (\is_array($attributes)) {
63
+				$this->_applyAttributes($element, $attributes, $index);
64 64
 			}
65 65
 			return $element;
66 66
 		});
@@ -68,53 +68,53 @@  discard block
 block discarded – undo
68 68
 	}
69 69
 
70 70
 
71
-	public function fieldAsRadio($index,$attributes=NULL){
72
-		return $this->_fieldAs(function($id,$name,$value,$caption){
73
-			return new HtmlFormRadio($id,$name,$caption,$value);
74
-		}, $index,$attributes);
71
+	public function fieldAsRadio($index, $attributes=NULL) {
72
+		return $this->_fieldAs(function($id, $name, $value, $caption) {
73
+			return new HtmlFormRadio($id, $name, $caption, $value);
74
+		}, $index, $attributes);
75 75
 	}
76 76
 
77
-	public function fieldAsRadios($index,$elements=[],$attributes=NULL){
78
-		return $this->_fieldAs(function($id,$name,$value,$caption,$elements){
79
-			return HtmlFormFields::radios($name,$elements,$caption,$value);
80
-		}, $index,$attributes);
77
+	public function fieldAsRadios($index, $elements=[], $attributes=NULL) {
78
+		return $this->_fieldAs(function($id, $name, $value, $caption, $elements) {
79
+			return HtmlFormFields::radios($name, $elements, $caption, $value);
80
+		}, $index, $attributes);
81 81
 	}
82 82
 
83
-	public function fieldAsTextarea($index,$attributes=NULL){
84
-		return $this->_fieldAs(function($id,$name,$value,$caption){
85
-			$textarea=new HtmlFormTextarea($id,$caption,$value);
83
+	public function fieldAsTextarea($index, $attributes=NULL) {
84
+		return $this->_fieldAs(function($id, $name, $value, $caption) {
85
+			$textarea=new HtmlFormTextarea($id, $caption, $value);
86 86
 			$textarea->setName($name);
87 87
 			return $textarea;
88
-		}, $index,$attributes);
88
+		}, $index, $attributes);
89 89
 	}
90 90
 
91
-	public function fieldAsInput($index,$attributes=NULL){
92
-		return $this->_fieldAs(function($id,$name,$value,$caption){
93
-			$input= new HtmlFormInput($id,$caption,"text",$value);
91
+	public function fieldAsInput($index, $attributes=NULL) {
92
+		return $this->_fieldAs(function($id, $name, $value, $caption) {
93
+			$input=new HtmlFormInput($id, $caption, "text", $value);
94 94
 			$input->setName($name);
95 95
 			return $input;
96
-		}, $index,$attributes);
96
+		}, $index, $attributes);
97 97
 	}
98 98
 
99
-	public function fieldAsCheckbox($index,$attributes=NULL){
100
-		return $this->_fieldAs(function($id,$name,$value,$caption){
101
-			return new HtmlFormCheckbox($id,$caption,$value);
102
-		}, $index,$attributes);
99
+	public function fieldAsCheckbox($index, $attributes=NULL) {
100
+		return $this->_fieldAs(function($id, $name, $value, $caption) {
101
+			return new HtmlFormCheckbox($id, $caption, $value);
102
+		}, $index, $attributes);
103 103
 	}
104 104
 
105
-	public function fieldAsDropDown($index,$elements=[],$multiple=false,$attributes=NULL){
106
-		return $this->_fieldAs(function($id,$name,$value,$caption) use ($elements,$multiple){
107
-			$dd=new HtmlFormDropdown($id,$elements,$caption,$value,$multiple);
105
+	public function fieldAsDropDown($index, $elements=[], $multiple=false, $attributes=NULL) {
106
+		return $this->_fieldAs(function($id, $name, $value, $caption) use ($elements, $multiple){
107
+			$dd=new HtmlFormDropdown($id, $elements, $caption, $value, $multiple);
108 108
 			$dd->setName($name);
109 109
 			return $dd;
110
-		}, $index,$attributes);
110
+		}, $index, $attributes);
111 111
 	}
112 112
 
113
-	public function fieldAsMessage($index,$attributes=NULL){
114
-		return $this->_fieldAs(function($id,$name,$value,$caption){
115
-			$mess= new HtmlMessage("message-".$id,$value);
113
+	public function fieldAsMessage($index, $attributes=NULL) {
114
+		return $this->_fieldAs(function($id, $name, $value, $caption) {
115
+			$mess=new HtmlMessage("message-".$id, $value);
116 116
 			$mess->addHeader($caption);
117 117
 			return $mess;
118
-		}, $index,$attributes,"message");
118
+		}, $index, $attributes, "message");
119 119
 	}
120 120
 }
121 121
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/traits/FormTrait.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use Ajax\semantic\html\collections\HtmlMessage;
6 6
 use Ajax\service\AjaxCall;
7 7
 
8
-trait FormTrait{
8
+trait FormTrait {
9 9
 	/**
10 10
 	 * @return HtmlForm
11 11
 	 */
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 		return $this->getForm()->addToProperty("class", "loading");
16 16
 	}
17 17
 
18
-	public function addErrorMessage(){
18
+	public function addErrorMessage() {
19 19
 		return $this->getForm()->addContent((new HtmlMessage(""))->setError());
20 20
 	}
21 21
 
@@ -30,35 +30,35 @@  discard block
 block discarded – undo
30 30
 	 * @param string $responseElement
31 31
 	 * @return \Ajax\semantic\html\collections\form\HtmlForm
32 32
 	 */
33
-	public function submitOn($event,$identifier,$url,$responseElement){
33
+	public function submitOn($event, $identifier, $url, $responseElement) {
34 34
 		$form=$this->getForm();
35 35
 		$elem=$form->getElementById($identifier, $form->getContent());
36
-		if(isset($elem)){
37
-			$this->_buttonAsSubmit($elem, $event,$url,$responseElement);
36
+		if (isset($elem)) {
37
+			$this->_buttonAsSubmit($elem, $event, $url, $responseElement);
38 38
 		}
39 39
 		return $form;
40 40
 	}
41 41
 
42
-	public function submitOnClick($identifier,$url,$responseElement){
42
+	public function submitOnClick($identifier, $url, $responseElement) {
43 43
 		return $this->submitOn("click", $identifier, $url, $responseElement);
44 44
 	}
45 45
 
46
-	public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL){
47
-		$bt=$this->getForm()->addButton($identifier, $value,$cssStyle);
48
-		return $this->_buttonAsSubmit($bt, "click",$url,$responseElement);
46
+	public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL) {
47
+		$bt=$this->getForm()->addButton($identifier, $value, $cssStyle);
48
+		return $this->_buttonAsSubmit($bt, "click", $url, $responseElement);
49 49
 	}
50 50
 
51
-	protected function _buttonAsSubmit(&$button,$event,$url,$responseElement=NULL){
51
+	protected function _buttonAsSubmit(&$button, $event, $url, $responseElement=NULL) {
52 52
 		$form=$this->getForm();
53
-		if(isset($url) && isset($responseElement)){
53
+		if (isset($url) && isset($responseElement)) {
54 54
 			$button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');");
55
-			$form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", ["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url]));
55
+			$form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", ["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url]));
56 56
 		}
57 57
 		return $button;
58 58
 	}
59 59
 
60
-	public function addReset($identifier,$value,$cssStyle=NULL){
61
-		$bt=$this->getForm()->addButton($identifier, $value,$cssStyle);
60
+	public function addReset($identifier, $value, $cssStyle=NULL) {
61
+		$bt=$this->getForm()->addButton($identifier, $value, $cssStyle);
62 62
 		$bt->setProperty("type", "reset");
63 63
 		return $bt;
64 64
 	}
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 * @param string $jsCode
69 69
 	 * @return \Ajax\semantic\html\collections\form\HtmlForm
70 70
 	 */
71
-	public function onValid($jsCode){
71
+	public function onValid($jsCode) {
72 72
 		$form=$this->getForm();
73 73
 		$form->addValidationParam("onValid", "%function(){".$jsCode."}%");
74 74
 		return $form;
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 * @param string $jsCode can use event and fields parameters
80 80
 	 * @return HtmlForm
81 81
 	 */
82
-	public function onSuccess($jsCode){
82
+	public function onSuccess($jsCode) {
83 83
 		$form=$this->getForm();
84 84
 		$form->addValidationParam("onSuccess", "%function(evt,fields){".$jsCode."}%");
85 85
 		return $form;
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/table/HtmlTable.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
 
26 26
 	public function __construct($identifier, $rowCount, $colCount) {
27 27
 		parent::__construct($identifier, "table", "ui table");
28
-		$this->content=array ();
28
+		$this->content=array();
29 29
 		$this->setRowCount($rowCount, $colCount);
30
-		$this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ];
31
-		$this->_compileParts=["thead","tbody","tfoot"];
30
+		$this->_variations=[Variation::CELLED, Variation::PADDED, Variation::COMPACT];
31
+		$this->_compileParts=["thead", "tbody", "tfoot"];
32 32
 		$this->_afterCompileEvents=[];
33 33
 	}
34 34
 
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 	 * @return HtmlTableContent
47 47
 	 */
48 48
 	public function getPart($key) {
49
-		if (\array_key_exists($key, $this->content) === false) {
49
+		if (\array_key_exists($key, $this->content)===false) {
50 50
 			$this->content[$key]=new HtmlTableContent("", $key);
51
-			if ($key !== "tbody") {
51
+			if ($key!=="tbody") {
52 52
 				$this->content[$key]->setRowCount(1, $this->_colCount);
53 53
 			}
54 54
 		}
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	 * @return boolean
86 86
 	 */
87 87
 	public function hasPart($key) {
88
-		return \array_key_exists($key, $this->content) === true;
88
+		return \array_key_exists($key, $this->content)===true;
89 89
 	}
90 90
 
91 91
 	/**
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 
191 191
 	private function colAlign($colIndex, $function) {
192 192
 		if (\is_array($colIndex)) {
193
-			foreach ( $colIndex as $cIndex ) {
193
+			foreach ($colIndex as $cIndex) {
194 194
 				$this->colAlign($cIndex, $function);
195 195
 			}
196 196
 		} else {
@@ -229,12 +229,12 @@  discard block
 block discarded – undo
229 229
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile()
230 230
 	 */
231 231
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
232
-		if(\sizeof($this->_compileParts)<3){
232
+		if (\sizeof($this->_compileParts)<3) {
233 233
 			$this->_template="%content%";
234 234
 			$this->refresh();
235
-		}else{
235
+		} else {
236 236
 			if ($this->propertyContains("class", "sortable")) {
237
-				$this->addEvent("execute", "$('#" . $this->identifier . "').tablesort();");
237
+				$this->addEvent("execute", "$('#".$this->identifier."').tablesort();");
238 238
 			}
239 239
 		}
240 240
 		$this->content=JArray::sortAssociative($this->content, $this->_compileParts);
@@ -250,13 +250,13 @@  discard block
 block discarded – undo
250 250
 	public function fromDatabaseObject($object, $function) {
251 251
 		$result=$function($object);
252 252
 		if (\is_array($result)) {
253
-			$result= $this->addRow($function($object));
253
+			$result=$this->addRow($function($object));
254 254
 		} else {
255
-			$result= $this->getBody()->_addRow($result);
255
+			$result=$this->getBody()->_addRow($result);
256 256
 		}
257
-		if(isset($this->_afterCompileEvents["onNewRow"])){
258
-			if(\is_callable($this->_afterCompileEvents["onNewRow"]))
259
-				$this->_afterCompileEvents["onNewRow"]($result,$object);
257
+		if (isset($this->_afterCompileEvents["onNewRow"])) {
258
+			if (\is_callable($this->_afterCompileEvents["onNewRow"]))
259
+				$this->_afterCompileEvents["onNewRow"]($result, $object);
260 260
 		}
261 261
 		return $result;
262 262
 	}
@@ -270,14 +270,14 @@  discard block
 block discarded – undo
270 270
 		return $this;
271 271
 	}
272 272
 
273
-	public function refresh(){
273
+	public function refresh() {
274 274
 		$this->_footer=$this->getFooter();
275 275
 		$this->addEvent("execute", '$("#'.$this->identifier.' tfoot").replaceWith("'.\addslashes($this->_footer).'");');
276 276
 	}
277 277
 
278
-	public function run(JsUtils $js){
279
-		$result= parent::run($js);
280
-		if(isset($this->_footer))
278
+	public function run(JsUtils $js) {
279
+		$result=parent::run($js);
280
+		if (isset($this->_footer))
281 281
 			$this->_footer->run($js);
282 282
 		return $result;
283 283
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/table/traits/TableTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Ajax\semantic\html\collections\table\traits;
3 3
 
4
-trait TableTrait{
4
+trait TableTrait {
5 5
 	/**
6 6
 	 * @return HtmlTable
7 7
 	 */
8 8
 	abstract protected function getTable();
9 9
 
10
-	protected function addToPropertyTable($property,$value){
10
+	protected function addToPropertyTable($property, $value) {
11 11
 		return $this->getTable()->addToProperty($property, $value);
12 12
 	}
13 13
 
@@ -18,8 +18,8 @@  discard block
 block discarded – undo
18 18
 	public function setBasic($very=false) {
19 19
 		$table=$this->getTable();
20 20
 		if ($very)
21
-			$table->addToPropertyCtrl("class", "very", array ("very" ));
22
-		return $table->addToPropertyCtrl("class", "basic", array ("basic" ));
21
+			$table->addToPropertyCtrl("class", "very", array("very"));
22
+		return $table->addToPropertyCtrl("class", "basic", array("basic"));
23 23
 	}
24 24
 
25 25
 	public function setCollapsing() {
Please login to merge, or discard this patch.
Ajax/service/JArray.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 class JArray {
6 6
 
7 7
 	public static function isAssociative($array) {
8
-		return (array_values($array) !== $array);
8
+		return (array_values($array)!==$array);
9 9
 		// return (array_keys($array)!==range(0, count($array)-1));
10 10
 	}
11 11
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 			return $array[$key];
15 15
 		}
16 16
 		$values=array_values($array);
17
-		if ($pos < sizeof($values))
17
+		if ($pos<sizeof($values))
18 18
 			return $values[$pos];
19 19
 	}
20 20
 
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
 		$result=NULL;
23 23
 		if (array_key_exists($key, $array)) {
24 24
 			$result=$array[$key];
25
-			if ($condition($result) === true)
25
+			if ($condition($result)===true)
26 26
 				return $result;
27 27
 		}
28 28
 		$values=array_values($array);
29
-		foreach ( $values as $val ) {
30
-			if ($condition($val) === true)
29
+		foreach ($values as $val) {
30
+			if ($condition($val)===true)
31 31
 				return $val;
32 32
 		}
33 33
 		return $result;
@@ -44,11 +44,11 @@  discard block
 block discarded – undo
44 44
 		$result="";
45 45
 		if (\is_array($glue)) {
46 46
 			$size=\sizeof($pieces);
47
-			if ($size > 0) {
48
-				for($i=0; $i < $size - 1; $i++) {
49
-					$result.=$pieces[$i] . @$glue[$i];
47
+			if ($size>0) {
48
+				for ($i=0; $i<$size-1; $i++) {
49
+					$result.=$pieces[$i].@$glue[$i];
50 50
 				}
51
-				$result.=$pieces[$size - 1];
51
+				$result.=$pieces[$size-1];
52 52
 			}
53 53
 		} else {
54 54
 			$result=\implode($glue, $pieces);
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 	public static function dimension($array) {
60 60
 		if (is_array(reset($array))) {
61
-			$return=self::dimension(reset($array)) + 1;
61
+			$return=self::dimension(reset($array))+1;
62 62
 		} else {
63 63
 			$return=1;
64 64
 		}
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
 	}
67 67
 
68 68
 	public static function sortAssociative($array, $sortedKeys=array()) {
69
-		$newArray=array ();
70
-		foreach ( $sortedKeys as $key ) {
69
+		$newArray=array();
70
+		foreach ($sortedKeys as $key) {
71 71
 			if (\array_key_exists($key, $array)) {
72 72
 				$newArray[$key]=$array[$key];
73 73
 			}
@@ -75,27 +75,27 @@  discard block
 block discarded – undo
75 75
 		return $newArray;
76 76
 	}
77 77
 
78
-	public static function modelArray($objects,$identifierFunction=NULL,$modelFunction=NULL){
78
+	public static function modelArray($objects, $identifierFunction=NULL, $modelFunction=NULL) {
79 79
 		$result=[];
80
-		if(isset($modelFunction)===false){
80
+		if (isset($modelFunction)===false) {
81 81
 			$modelFunction="__toString";
82 82
 		}
83
-		if(isset($identifierFunction)===false){
84
-			foreach ($objects as $object){
83
+		if (isset($identifierFunction)===false) {
84
+			foreach ($objects as $object) {
85 85
 				$result[]=self::callFunction($object, $modelFunction);
86 86
 			}
87
-		}else{
88
-			foreach ($objects as $object){
87
+		} else {
88
+			foreach ($objects as $object) {
89 89
 				$result[self::callFunction($object, $identifierFunction)]=self::callFunction($object, $modelFunction);
90 90
 			}
91 91
 		}
92 92
 		return $result;
93 93
 	}
94 94
 
95
-	private static function callFunction($object,$callback){
96
-		if(\is_string($callback))
97
-			return \call_user_func(array($object, $callback),[]);
98
-		else if (\is_callable($callback)){
95
+	private static function callFunction($object, $callback) {
96
+		if (\is_string($callback))
97
+			return \call_user_func(array($object, $callback), []);
98
+		else if (\is_callable($callback)) {
99 99
 			return $callback($object);
100 100
 		}
101 101
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormDropdown.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,21 +7,21 @@
 block discarded – undo
7 7
 
8 8
 class HtmlFormDropdown extends HtmlFormField {
9 9
 
10
-	public function __construct($identifier,$items=array(), $label=NULL,$value=NULL,$multiple=false,$associative=true) {
11
-		parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier,$value,$items,$associative))->asSelect($identifier,$multiple), $label);
10
+	public function __construct($identifier, $items=array(), $label=NULL, $value=NULL, $multiple=false, $associative=true) {
11
+		parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier, $value, $items, $associative))->asSelect($identifier, $multiple), $label);
12 12
 	}
13 13
 
14
-	public function setItems($items){
14
+	public function setItems($items) {
15 15
 		return $this->getField()->setItems($items);
16 16
 	}
17
-	public function addItem($item,$value=NULL,$image=NULL){
18
-		return $this->getField()->addItem($item,$value,$image);
17
+	public function addItem($item, $value=NULL, $image=NULL) {
18
+		return $this->getField()->addItem($item, $value, $image);
19 19
 	}
20
-	public static function multipleDropdown($identifier,$items=array(), $label=NULL,$value=NULL,$associative=true){
21
-		return new HtmlFormDropdown($identifier,$items,$label,$value,true,$associative);
20
+	public static function multipleDropdown($identifier, $items=array(), $label=NULL, $value=NULL, $associative=true) {
21
+		return new HtmlFormDropdown($identifier, $items, $label, $value, true, $associative);
22 22
 	}
23 23
 
24
-	public function getDataField(){
24
+	public function getDataField() {
25 25
 		return $this->getField()->getInput();
26 26
 	}
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticHtmlModulesTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 * @return HtmlModal
87 87
 	 */
88 88
 	public function htmlModal($identifier, $header="", $content="", $actions=array()) {
89
-		return $this->addHtmlComponent(new HtmlModal($identifier, $header,$content,$actions));
89
+		return $this->addHtmlComponent(new HtmlModal($identifier, $header, $content, $actions));
90 90
 	}
91 91
 
92 92
 	/**
@@ -117,8 +117,8 @@  discard block
 block discarded – undo
117 117
 	 * @param boolean $associative
118 118
 	 * @return HtmlDropdown
119 119
 	 */
120
-	public function htmlDropdown($identifier, $value="", $items=array(),$associative=true) {
121
-		return $this->addHtmlComponent(new HtmlDropdown($identifier, $value, $items,$associative));
120
+	public function htmlDropdown($identifier, $value="", $items=array(), $associative=true) {
121
+		return $this->addHtmlComponent(new HtmlDropdown($identifier, $value, $items, $associative));
122 122
 	}
123 123
 
124 124
 	/**
Please login to merge, or discard this patch.