Passed
Push — master ( 0da08b...5a8334 )
by Jean-Christophe
01:41
created
Ajax/semantic/html/collections/form/HtmlFormField.php 1 patch
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -14,34 +14,34 @@  discard block
 block discarded – undo
14 14
 	use FieldTrait;
15 15
 	protected $_container;
16 16
 	protected $_validation;
17
-	public function __construct($identifier, $field,$label=NULL) {
18
-		parent::__construct($identifier, "div","field");
17
+	public function __construct($identifier, $field, $label=NULL) {
18
+		parent::__construct($identifier, "div", "field");
19 19
 		$this->content=array();
20
-		$this->_states=[State::ERROR,State::DISABLED];
21
-		if(isset($label) && $label!=="")
20
+		$this->_states=[State::ERROR, State::DISABLED];
21
+		if (isset($label) && $label!=="")
22 22
 			$this->setLabel($label);
23 23
 		$this->setField($field);
24 24
 		$this->_validation=NULL;
25 25
 	}
26 26
 
27
-	public function addPointingLabel($label,$pointing=Direction::NONE){
28
-		$labelO=new HtmlLabel("",$label);
27
+	public function addPointingLabel($label, $pointing=Direction::NONE) {
28
+		$labelO=new HtmlLabel("", $label);
29 29
 		$labelO->setPointing($pointing);
30
-		$this->addContent($labelO,$pointing==="below" || $pointing==="right");
30
+		$this->addContent($labelO, $pointing==="below" || $pointing==="right");
31 31
 		return $labelO;
32 32
 	}
33 33
 
34
-	public function setLabel($label){
34
+	public function setLabel($label) {
35 35
 		$labelO=$label;
36
-		if(\is_string($label)){
37
-			$labelO=new HtmlSemDoubleElement("","label","");
36
+		if (\is_string($label)) {
37
+			$labelO=new HtmlSemDoubleElement("", "label", "");
38 38
 			$labelO->setContent($label);
39
-			$labelO->setProperty("for", \str_replace("field-", "",$this->identifier));
39
+			$labelO->setProperty("for", \str_replace("field-", "", $this->identifier));
40 40
 		}
41 41
 		$this->content["label"]=$labelO;
42 42
 	}
43 43
 
44
-	public function setField($field){
44
+	public function setField($field) {
45 45
 		$this->content["field"]=$field;
46 46
 	}
47 47
 
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 	 * Returns the label or null
50 50
 	 * @return mixed
51 51
 	 */
52
-	public function getLabel(){
53
-		if(\array_key_exists("label", $this->content))
52
+	public function getLabel() {
53
+		if (\array_key_exists("label", $this->content))
54 54
 			return $this->content["label"];
55 55
 	}
56 56
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	 * Return the field
59 59
 	 * @return mixed
60 60
 	 */
61
-	public function getField(){
61
+	public function getField() {
62 62
 		return $this->content["field"];
63 63
 	}
64 64
 
@@ -66,14 +66,14 @@  discard block
 block discarded – undo
66 66
 	 * Return the field with data
67 67
 	 * @return mixed
68 68
 	 */
69
-	public function getDataField(){
69
+	public function getDataField() {
70 70
 		return $this->content["field"];
71 71
 	}
72 72
 
73 73
 	/**
74 74
 	 * puts the label before or behind
75 75
 	 */
76
-	public function swapLabel(){
76
+	public function swapLabel() {
77 77
 		$label=$this->getLabel();
78 78
 		unset($this->content["label"]);
79 79
 		$this->content["label"]=$label;
@@ -84,31 +84,31 @@  discard block
 block discarded – undo
84 84
 	 * @param int $width
85 85
 	 * @return \Ajax\semantic\html\collections\form\HtmlFormField
86 86
 	 */
87
-	public function setWidth($width){
88
-		if(\is_int($width)){
87
+	public function setWidth($width) {
88
+		if (\is_int($width)) {
89 89
 			$width=Wide::getConstants()["W".$width];
90 90
 		}
91 91
 		$this->addToPropertyCtrl("class", $width, Wide::getConstants());
92
-		if(isset($this->_container)){
92
+		if (isset($this->_container)) {
93 93
 			$this->_container->setEqualWidth(false);
94 94
 		}
95
-		return $this->addToPropertyCtrl("class", "wide",array("wide"));
95
+		return $this->addToPropertyCtrl("class", "wide", array("wide"));
96 96
 	}
97 97
 
98 98
 	/**
99 99
 	 * Field displays an error state
100 100
 	 * @return \Ajax\semantic\html\collections\form\HtmlFormField
101 101
 	 */
102
-	public function setError(){
102
+	public function setError() {
103 103
 		return $this->addToProperty("class", "error");
104 104
 	}
105 105
 
106
-	public function setInline(){
106
+	public function setInline() {
107 107
 		return $this->addToProperty("class", "inline");
108 108
 	}
109 109
 
110
-	public function jsState($state){
111
-		return $this->jsDoJquery("addClass",$state);
110
+	public function jsState($state) {
111
+		return $this->jsDoJquery("addClass", $state);
112 112
 	}
113 113
 
114 114
 	public function setContainer($_container) {
@@ -116,49 +116,49 @@  discard block
 block discarded – undo
116 116
 		return $this;
117 117
 	}
118 118
 
119
-	public function setReadonly(){
119
+	public function setReadonly() {
120 120
 		$this->getDataField()->setProperty("readonly", "");
121 121
 	}
122 122
 
123
-	public function addRule($type,$prompt=NULL,$value=NULL){
123
+	public function addRule($type, $prompt=NULL, $value=NULL) {
124 124
 		$field=$this->getDataField();
125
-		if(isset($field)){
126
-			if(!isset($this->_validation)){
125
+		if (isset($field)) {
126
+			if (!isset($this->_validation)) {
127 127
 				$this->_validation=new FieldValidation($field->getIdentifier());
128 128
 			}
129
-			if($type==="empty"){
130
-				$this->addToProperty("class","required");
129
+			if ($type==="empty") {
130
+				$this->addToProperty("class", "required");
131 131
 			}
132
-			$this->_validation->addRule($type,$prompt,$value);
132
+			$this->_validation->addRule($type, $prompt, $value);
133 133
 		}
134 134
 		return $this;
135 135
 	}
136 136
 	
137
-	public function setOptional($optional=true){
137
+	public function setOptional($optional=true) {
138 138
 		$field=$this->getDataField();
139
-		if(isset($field)){
140
-			if(!isset($this->_validation)){
139
+		if (isset($field)) {
140
+			if (!isset($this->_validation)) {
141 141
 				$this->_validation=new FieldValidation($field->getIdentifier());
142 142
 			}
143 143
 			$this->_validation->setOptional($optional);
144 144
 		}
145 145
 	}
146 146
 
147
-	public function addRules(array $rules){
148
-		foreach ($rules as $rule){
147
+	public function addRules(array $rules) {
148
+		foreach ($rules as $rule) {
149 149
 			$this->addRule($rule);
150 150
 		}
151 151
 		return $this;
152 152
 	}
153 153
 
154
-	public function setRules(array $rules){
154
+	public function setRules(array $rules) {
155 155
 		$this->_validation=null;
156 156
 		return $this->addRules($rules);
157 157
 	}
158 158
 
159
-	public function addIcon($icon,$direction=Direction::LEFT){
159
+	public function addIcon($icon, $direction=Direction::LEFT) {
160 160
 		$field=$this->getField();
161
-		return $field->addIcon($icon,$direction);
161
+		return $field->addIcon($icon, $direction);
162 162
 	}
163 163
 
164 164
 	public function getValidation() {
Please login to merge, or discard this patch.
Ajax/semantic/html/content/table/HtmlTR.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -20,19 +20,19 @@  discard block
 block discarded – undo
20 20
 
21 21
 	public function __construct($identifier) {
22 22
 		parent::__construct($identifier, "tr", "");
23
-		$this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ];
23
+		$this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED];
24 24
 	}
25 25
 
26 26
 	public function setColCount($colCount) {
27 27
 		$count=$this->count();
28
-		for($i=$count; $i < $colCount; $i++) {
28
+		for ($i=$count; $i<$colCount; $i++) {
29 29
 			$item=$this->addItem(NULL);
30 30
 			$item->setTagName($this->_tdTagName);
31 31
 		}
32 32
 		return $this;
33 33
 	}
34 34
 
35
-	public function getColCount(){
35
+	public function getColCount() {
36 36
 		return $this->count();
37 37
 	}
38 38
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	/**
53 53
 	 * @return HtmlTD
54 54
 	 */
55
-	public function getItem($index){
55
+	public function getItem($index) {
56 56
 		return parent::getItem($index);
57 57
 	}
58 58
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 * @param mixed $values
76 76
 	 */
77 77
 	public function setValues($values=array()) {
78
-		return $this->_addOrSetValues($values, function(HtmlTD &$cell,$value){$cell->setValue($value);});
78
+		return $this->_addOrSetValues($values, function(HtmlTD &$cell, $value) {$cell->setValue($value); });
79 79
 	}
80 80
 
81 81
 	/**
@@ -83,27 +83,27 @@  discard block
 block discarded – undo
83 83
 	 * @param mixed $values
84 84
 	 */
85 85
 	public function addValues($values=array()) {
86
-		return $this->_addOrSetValues($values, function(HtmlTD &$cell,$value){$cell->addValue($value);});
86
+		return $this->_addOrSetValues($values, function(HtmlTD &$cell, $value) {$cell->addValue($value); });
87 87
 	}
88 88
 
89 89
 	/**
90 90
 	 * Sets or adds values to the row cols
91 91
 	 * @param mixed $values
92 92
 	 */
93
-	protected function _addOrSetValues($values,$callback) {
93
+	protected function _addOrSetValues($values, $callback) {
94 94
 		$count=$this->count();
95 95
 		if (!\is_array($values)) {
96 96
 			$values=\array_fill(0, $count, $values);
97 97
 		} else {
98
-			if (JArray::isAssociative($values) === true) {
98
+			if (JArray::isAssociative($values)===true) {
99 99
 				$values=\array_values($values);
100 100
 			}
101 101
 		}
102 102
 		$count=\min(\sizeof($values), $count);
103 103
 
104
-		for($i=0; $i < $count; $i++) {
104
+		for ($i=0; $i<$count; $i++) {
105 105
 			$cell=$this->content[$i];
106
-			$callback($cell,$values[$i]);
106
+			$callback($cell, $values[$i]);
107 107
 		}
108 108
 		return $this;
109 109
 	}
@@ -124,31 +124,31 @@  discard block
 block discarded – undo
124 124
 
125 125
 	public function mergeRow($colIndex=0) {
126 126
 		$row=$this->getItem($colIndex);
127
-		if(isset($row)){
127
+		if (isset($row)) {
128 128
 			$this->getItem($colIndex)->mergeRow();
129 129
 		}
130 130
 		return $this;
131 131
 	}
132 132
 
133 133
 	public function getColPosition($colIndex) {
134
-		if($this->_container->_isMerged()!==true)
134
+		if ($this->_container->_isMerged()!==true)
135 135
 			return $colIndex;
136 136
 		$pos=0;
137 137
 		$rows=$this->_container->getContent();
138
-		for($i=0; $i < $this->_row; $i++) {
138
+		for ($i=0; $i<$this->_row; $i++) {
139 139
 			$max=\min($colIndex, $rows[$i]->count());
140
-			for($j=0; $j < $max; $j++) {
140
+			for ($j=0; $j<$max; $j++) {
141 141
 				$rowspan=$rows[$i]->getItem($j)->getRowspan();
142
-				if ($rowspan + $i > $this->_row)
142
+				if ($rowspan+$i>$this->_row)
143 143
 					$pos++;
144 144
 			}
145 145
 		}
146
-		if ($pos > $colIndex)
146
+		if ($pos>$colIndex)
147 147
 			return NULL;
148 148
 		$count=$this->count();
149
-		for($i=0; $i < $count; $i++) {
149
+		for ($i=0; $i<$count; $i++) {
150 150
 			$pos+=$this->content[$i]->getColspan();
151
-			if ($pos >= $colIndex + 1)
151
+			if ($pos>=$colIndex+1)
152 152
 				return $i;
153 153
 		}
154 154
 		return null;
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 
157 157
 	public function conditionalCellFormat($callback, $format) {
158 158
 		$cells=$this->content;
159
-		foreach ( $cells as $cell ) {
159
+		foreach ($cells as $cell) {
160 160
 			$cell->conditionalCellFormat($callback, $format);
161 161
 		}
162 162
 		return $this;
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
 
172 172
 	public function containsStr($needle) {
173 173
 		$cells=$this->content;
174
-		foreach ( $cells as $cell ) {
175
-			if (\strpos($cell->getContent(), $needle) !== false)
174
+		foreach ($cells as $cell) {
175
+			if (\strpos($cell->getContent(), $needle)!==false)
176 176
 				return true;
177 177
 		}
178 178
 		return false;
@@ -185,13 +185,13 @@  discard block
 block discarded – undo
185 185
 
186 186
 	public function applyCells($callback) {
187 187
 		$cells=$this->content;
188
-		foreach ( $cells as $cell ) {
188
+		foreach ($cells as $cell) {
189 189
 			$cell->apply($callback);
190 190
 		}
191 191
 		return $this;
192 192
 	}
193 193
 
194
-	public function toDelete($colIndex){
194
+	public function toDelete($colIndex) {
195 195
 		$this->getItem($colIndex)->toDelete();
196 196
 		return $this;
197 197
 	}
Please login to merge, or discard this patch.
Ajax/semantic/html/content/HtmlAbsractItem.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 abstract class HtmlAbsractItem extends HtmlSemDoubleElement {
13 13
 
14
-	public function __construct($identifier, $baseClass,$content=NULL) {
14
+	public function __construct($identifier, $baseClass, $content=NULL) {
15 15
 		parent::__construct($identifier, "div", $baseClass);
16 16
 		$this->content=array();
17 17
 		$this->initContent($content);
@@ -19,76 +19,76 @@  discard block
 block discarded – undo
19 19
 
20 20
 	abstract protected function initContent($content);
21 21
 
22
-	public function setIcon($icon){
22
+	public function setIcon($icon) {
23 23
 		$this->content["icon"]=new HtmlIcon("icon-".$this->identifier, $icon);
24 24
 	}
25 25
 
26
-	public function removeIcon(){
27
-		if(isset($this->content["icon"]))
26
+	public function removeIcon() {
27
+		if (isset($this->content["icon"]))
28 28
 			unset($this->content["icon"]);
29 29
 		return $this;
30 30
 	}
31 31
 
32
-	public function setImage($image){
32
+	public function setImage($image) {
33 33
 		$image=new HtmlImg("icon-".$this->identifier, $image);
34 34
 		$image->asAvatar();
35 35
 		$this->content["image"]=$image;
36 36
 	}
37 37
 
38
-	private function _getContent($key="content",$baseClass="content"){
39
-		if(!is_array($this->content)){
38
+	private function _getContent($key="content", $baseClass="content") {
39
+		if (!is_array($this->content)) {
40 40
 			$this->content=[$this->content];
41 41
 		}
42
-		if(\array_key_exists($key, $this->content)===false){
43
-			$this->content[$key]=new HtmlSemDoubleElement($key."-".$this->identifier,"div",$baseClass);
42
+		if (\array_key_exists($key, $this->content)===false) {
43
+			$this->content[$key]=new HtmlSemDoubleElement($key."-".$this->identifier, "div", $baseClass);
44 44
 		}
45 45
 		return $this->content[$key];
46 46
 	}
47 47
 	
48
-	private function _getRightContent(){
49
-		return $this->_getContent("right-content","right floated content");
48
+	private function _getRightContent() {
49
+		return $this->_getContent("right-content", "right floated content");
50 50
 	}
51 51
 	
52
-	public function addContent($content,$before=false){
53
-		$this->_getContent("content")->addContent($content,$before);
52
+	public function addContent($content, $before=false) {
53
+		$this->_getContent("content")->addContent($content, $before);
54 54
 		return $this;
55 55
 	}
56 56
 	
57
-	public function addRightContent($content,$before=false){
58
-		$this->_getRightContent()->addContent($content,$before);
57
+	public function addRightContent($content, $before=false) {
58
+		$this->_getRightContent()->addContent($content, $before);
59 59
 		return $this;
60 60
 	}
61 61
 
62
-	public function setTitle($title,$description=NULL,$baseClass="title"){
63
-		$title=new HtmlSemDoubleElement("","div",$baseClass,$title);
62
+	public function setTitle($title, $description=NULL, $baseClass="title") {
63
+		$title=new HtmlSemDoubleElement("", "div", $baseClass, $title);
64 64
 		$content=$this->_getContent();
65 65
 		$content->addContent($title);
66
-		if(isset($description)){
67
-			$description=new HtmlSemDoubleElement("","div","description",$description);
66
+		if (isset($description)) {
67
+			$description=new HtmlSemDoubleElement("", "div", "description", $description);
68 68
 			$content->addContent($description);
69 69
 		}
70 70
 		return $this;
71 71
 	}
72 72
 
73
-	public function getPart($partName="header"){
74
-		$content=\array_merge($this->_getContent()->getContent(),array(@$this->content["icon"],@$this->content["image"]));
73
+	public function getPart($partName="header") {
74
+		$content=\array_merge($this->_getContent()->getContent(), array(@$this->content["icon"], @$this->content["image"]));
75 75
 		return $this->getElementByPropertyValue("class", $partName, $content);
76 76
 	}
77 77
 
78
-	public function setActive($value=true){
79
-		if($value){
78
+	public function setActive($value=true) {
79
+		if ($value) {
80 80
 			$this->setTagName("div");
81 81
 			$this->removeProperty("href");
82 82
 			$this->addToPropertyCtrl("class", "active", array("active"));
83
-		}else{
83
+		} else {
84 84
 			$this->removePropertyValue("class", "active");
85 85
 		}
86 86
 		return $this;
87 87
 	}
88 88
 
89
-	public function asLink($href=NULL,$part=NULL){
89
+	public function asLink($href=NULL, $part=NULL) {
90 90
 		$this->setTagName("a");
91
-		if(isset($href))
91
+		if (isset($href))
92 92
 			$this->setProperty("href", $href);
93 93
 		return $this;
94 94
 	}
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile()
101 101
 	 */
102 102
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
103
-		if(\is_array($this->content) && JArray::isAssociative($this->content))
104
-			$this->content=JArray::sortAssociative($this->content, [ "right-content","icon","image","content" ]);
103
+		if (\is_array($this->content) && JArray::isAssociative($this->content))
104
+			$this->content=JArray::sortAssociative($this->content, ["right-content", "icon", "image", "content"]);
105 105
 		return parent::compile($js, $view);
106 106
 	}
107 107
 }
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticWidgetsTrait.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@  discard block
 block discarded – undo
19 19
 	 * @param array $instances
20 20
 	 * @return DataTable
21 21
 	 */
22
-	public function dataTable($identifier,$model, $instances=null){
23
-		return $this->addHtmlComponent(new DataTable($identifier,$model,$instances));
22
+	public function dataTable($identifier, $model, $instances=null) {
23
+		return $this->addHtmlComponent(new DataTable($identifier, $model, $instances));
24 24
 	}
25 25
 
26 26
 	/**
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
 	 * @param array $instances
30 30
 	 * @return JsonDataTable
31 31
 	 */
32
-	public function jsonDataTable($identifier,$model, $instances=null){
33
-		return $this->addHtmlComponent(new JsonDataTable($identifier,$model,$instances));
32
+	public function jsonDataTable($identifier, $model, $instances=null) {
33
+		return $this->addHtmlComponent(new JsonDataTable($identifier, $model, $instances));
34 34
 	}
35 35
 
36 36
 	/**
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
 	 * @param object $instance
39 39
 	 * @return DataElement
40 40
 	 */
41
-	public function dataElement($identifier, $instance=null){
42
-		return $this->addHtmlComponent(new DataElement($identifier,$instance));
41
+	public function dataElement($identifier, $instance=null) {
42
+		return $this->addHtmlComponent(new DataElement($identifier, $instance));
43 43
 	}
44 44
 
45 45
 	/**
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @param object $instance
48 48
 	 * @return DataForm
49 49
 	 */
50
-	public function dataForm($identifier, $instance){
51
-		return $this->addHtmlComponent(new DataForm($identifier,$instance));
50
+	public function dataForm($identifier, $instance) {
51
+		return $this->addHtmlComponent(new DataForm($identifier, $instance));
52 52
 	}
53 53
 
54 54
 	/**
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 	 * @param object $instance
57 57
 	 * @return FormLogin
58 58
 	 */
59
-	public function defaultLogin($identifier,$instance=null){
60
-		return $this->addHtmlComponent(FormLogin::regular($identifier,$instance));
59
+	public function defaultLogin($identifier, $instance=null) {
60
+		return $this->addHtmlComponent(FormLogin::regular($identifier, $instance));
61 61
 	}
62 62
 
63 63
 	/**
@@ -65,8 +65,8 @@  discard block
 block discarded – undo
65 65
 	 * @param object $instance
66 66
 	 * @return FormLogin
67 67
 	 */
68
-	public function smallLogin($identifier,$instance=null){
69
-		return $this->addHtmlComponent(FormLogin::small($identifier,$instance));
68
+	public function smallLogin($identifier, $instance=null) {
69
+		return $this->addHtmlComponent(FormLogin::small($identifier, $instance));
70 70
 	}
71 71
 
72 72
 	/**
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
 	 * @param object $instance
75 75
 	 * @return FormLogin
76 76
 	 */
77
-	public function segmentedLogin($identifier,$instance=null){
78
-		return $this->addHtmlComponent(FormLogin::attachedSegment($identifier,$instance));
77
+	public function segmentedLogin($identifier, $instance=null) {
78
+		return $this->addHtmlComponent(FormLogin::attachedSegment($identifier, $instance));
79 79
 	}
80 80
 
81 81
 	/**
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	 * @param object $instance
84 84
 	 * @return FormAccount
85 85
 	 */
86
-	public function defaultAccount($identifier,$instance=null){
87
-		return $this->addHtmlComponent(FormAccount::regular($identifier,$instance));
86
+	public function defaultAccount($identifier, $instance=null) {
87
+		return $this->addHtmlComponent(FormAccount::regular($identifier, $instance));
88 88
 	}
89 89
 }
Please login to merge, or discard this patch.
Ajax/service/Javascript.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@  discard block
 block discarded – undo
6 6
 	public static $preventDefault="\nif(event && event.preventDefault) event.preventDefault();\n";
7 7
 	public static $stopPropagation="\nif(event && event.stopPropagation) event.stopPropagation();\n";
8 8
 
9
-	public static function draggable($attr="id"){
9
+	public static function draggable($attr="id") {
10 10
 		return 'var dt=event.dataTransfer || event.originalEvent.dataTransfer;dt.setData("text/plain",JSON.stringify({id:$(event.target).attr("id"),data:$(event.target).attr("'.$attr.'")}));';
11 11
 	}
12 12
 	
13
-	public static function dropZone($jqueryDone,$jsCallback=""){
13
+	public static function dropZone($jqueryDone, $jsCallback="") {
14 14
 		return 'var dt=event.dataTransfer || event.originalEvent.dataTransfer;var _data=JSON.parse(dt.getData("text/plain"));$(event.target).'.$jqueryDone.'($("#"+_data.id));var data=_data.data;'.$jsCallback;
15 15
 	}
16 16
 	
17
-	public static function containsCode($expression){
18
-		return strrpos($expression, 'this')!==false||strrpos($expression, 'event')!==false||strrpos($expression, 'self')!==false;
17
+	public static function containsCode($expression) {
18
+		return strrpos($expression, 'this')!==false || strrpos($expression, 'event')!==false || strrpos($expression, 'self')!==false;
19 19
 	}
20 20
 	
21
-	public static function isFunction($jsCode){
21
+	public static function isFunction($jsCode) {
22 22
 		return JString::startswith($jsCode, "function");
23 23
 	}
24 24
 
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
 			$value=implode(",", $value);
51 51
 		}
52 52
 		if (self::containsCode($value)===false) {
53
-			$value=\str_replace(["\\","\""], ["\\\\","\\\""], $value);
53
+			$value=\str_replace(["\\", "\""], ["\\\\", "\\\""], $value);
54 54
 			$value='"'.$value.'"';
55 55
 		}
56
-		return trim($value,"%");
56
+		return trim($value, "%");
57 57
 	}
58 58
 
59
-	public static function prep_jquery_selector($value){
60
-		if(JString::startswith($value, '$(')===false){
59
+	public static function prep_jquery_selector($value) {
60
+		if (JString::startswith($value, '$(')===false) {
61 61
 			return '$('.self::prep_value($value).')';
62 62
 		}
63 63
 		return $value;
Please login to merge, or discard this patch.
Ajax/semantic/widgets/datatable/JsonDataTable.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@  discard block
 block discarded – undo
22 22
 		$this->_rowClass="_json _element";
23 23
 	}
24 24
 
25
-	protected function _generateContent($table){
25
+	protected function _generateContent($table) {
26 26
 		$this->_addRowModel($table);
27 27
 		parent::_generateContent($table);
28 28
 	}
29 29
 
30
-	protected function _addRowModel($table){
30
+	protected function _addRowModel($table) {
31 31
 		$fields=$this->_instanceViewer->getSimpleProperties();
32
-		$row=$this->_createRow($table, $this->_modelClass,$fields);
33
-		$row->setProperty("style","display:none;");
32
+		$row=$this->_createRow($table, $this->_modelClass, $fields);
33
+		$row->setProperty("style", "display:none;");
34 34
 		$table->getBody()->_addRow($row);
35 35
 	}
36 36
 
37
-	protected function _createRow($table,$rowClass,$fields){
37
+	protected function _createRow($table, $rowClass, $fields) {
38 38
 		$object=JReflection::jsonObject($this->_model);
39
-		if(isset($this->_rowModelCallback)){
39
+		if (isset($this->_rowModelCallback)) {
40 40
 			$callback=$this->_rowModelCallback;
41 41
 			$callback($object);
42 42
 		}
43
-		$row=$this->_generateRow($object, $fields,$table,"_jsonArrayChecked");
43
+		$row=$this->_generateRow($object, $fields, $table, "_jsonArrayChecked");
44 44
 		$row->setClass($rowClass." _element");
45 45
 		return $row;
46 46
 	}
@@ -49,24 +49,24 @@  discard block
 block discarded – undo
49 49
 	 * {@inheritDoc}
50 50
 	 * @see DataTable::_associatePaginationBehavior()
51 51
 	 */
52
-	protected function _associatePaginationBehavior(JsUtils $js=NULL,$offset=null){
52
+	protected function _associatePaginationBehavior(JsUtils $js=NULL, $offset=null) {
53 53
 		$callback=null;
54 54
 		$menu=$this->_pagination->getMenu();
55 55
 		
56
-		if(isset($js)){
56
+		if (isset($js)) {
57 57
 			$id=$this->identifier;
58 58
 			$callback=$js->getScript($offset).$this->getHtmlComponent()->getInnerScript();
59
-			$callback.=$js->trigger("#".$id." [name='selection[]']","change",false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js));
59
+			$callback.=$js->trigger("#".$id." [name='selection[]']", "change", false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js));
60 60
 			$callback.=$this->_generatePaginationScript($id);
61
-			if(isset($this->_urls["refresh"])){
62
-				if(isset($menu))
63
-				$js->jsonArrayOn("click", "#".$menu->getIdentifier()." a","#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"],"post",["params"=>"{'p':$(this).attr('data-page'),'_model':'".JString::doubleBackSlashes($this->_model)."'}","jsCallback"=>$callback]);
61
+			if (isset($this->_urls["refresh"])) {
62
+				if (isset($menu))
63
+				$js->jsonArrayOn("click", "#".$menu->getIdentifier()." a", "#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"], "post", ["params"=>"{'p':$(this).attr('data-page'),'_model':'".JString::doubleBackSlashes($this->_model)."'}", "jsCallback"=>$callback]);
64 64
 			}
65 65
 		}
66 66
 
67 67
 	}
68 68
 	
69
-	protected function _generatePaginationScript($id){
69
+	protected function _generatePaginationScript($id) {
70 70
 		return ";var page=parseInt($(self).attr('data-page')) || 1;var pages_visibles=$('#pagination-{$id} .item').length-2;
71 71
 			var lastPage=$('#pagination-{$id} ._lastPage');
72 72
 			var middle= Math.ceil((pages_visibles-1)/ 2);
@@ -86,16 +86,16 @@  discard block
 block discarded – undo
86 86
 			lastPage.attr('data-page',Math.min(lastPage.attr('data-max'),page+1));
87 87
 			$('#{$id}').trigger('pageChange');$('#{$id}').trigger('activeRowChange');$('#pagination-{$id}').show();";
88 88
 	}
89
-	protected function _compileSearchFieldBehavior(JsUtils $js=NULL){
89
+	protected function _compileSearchFieldBehavior(JsUtils $js=NULL) {
90 90
 		
91 91
 	}
92
-	protected function _associateSearchFieldBehavior(JsUtils $js=NULL,$offset=null){
93
-		if(isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])){
92
+	protected function _associateSearchFieldBehavior(JsUtils $js=NULL, $offset=null) {
93
+		if (isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])) {
94 94
 			$id=$this->identifier;
95 95
 			$callback=$js->getScript($offset).$this->getHtmlComponent()->getInnerScript();
96
-			$callback.=$js->trigger("#".$id." [name='selection[]']","change",false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js));
96
+			$callback.=$js->trigger("#".$id." [name='selection[]']", "change", false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js));
97 97
 			$callback.="$('#pagination-{$id}').hide();$('#".$this->identifier."').trigger('searchTerminate',[$(self).val()]);";
98
-			$js->jsonArrayOn("change", "#".$this->_searchField->getDataField()->getIdentifier(),"#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"],"post",["params"=>"{'s':$(self).val(),'_model':'".JString::doubleBackSlashes($this->_model)."'}","jsCallback"=>$callback]);
98
+			$js->jsonArrayOn("change", "#".$this->_searchField->getDataField()->getIdentifier(), "#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"], "post", ["params"=>"{'s':$(self).val(),'_model':'".JString::doubleBackSlashes($this->_model)."'}", "jsCallback"=>$callback]);
99 99
 		}
100 100
 	}
101 101
 	
@@ -109,29 +109,29 @@  discard block
 block discarded – undo
109 109
 	 * @param string $jsCallback
110 110
 	 * @return AjaxCall
111 111
 	 */
112
-	public function jsJsonArray($url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){
113
-		$parameters=\array_merge($parameters,["modelSelector"=>"#".$this->_identifier." tr.".$this->_modelClass,"url"=>$url,"method"=>$method,"params"=>$params,"jsCallback"=>$jsCallback]);
112
+	public function jsJsonArray($url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) {
113
+		$parameters=\array_merge($parameters, ["modelSelector"=>"#".$this->_identifier." tr.".$this->_modelClass, "url"=>$url, "method"=>$method, "params"=>$params, "jsCallback"=>$jsCallback]);
114 114
 		return new AjaxCall("jsonArray", $parameters);
115 115
 	}
116 116
 
117
-	public function jsClear(){
117
+	public function jsClear() {
118 118
 		return "$('#{$this->identifier} tbody').find('._json').remove();";
119 119
 	}
120 120
 
121
-	public function clearOn(BaseHtml $element,$event, $stopPropagation=false, $preventDefault=false){
122
-		return $element->addEvent($event, $this->jsClear(),$stopPropagation,$preventDefault);
121
+	public function clearOn(BaseHtml $element, $event, $stopPropagation=false, $preventDefault=false) {
122
+		return $element->addEvent($event, $this->jsClear(), $stopPropagation, $preventDefault);
123 123
 	}
124 124
 
125
-	public function clearOnClick(BaseHtml $element,$stopPropagation=false, $preventDefault=false){
126
-		return $this->clearOn($element, "click",$stopPropagation,$preventDefault);
125
+	public function clearOnClick(BaseHtml $element, $stopPropagation=false, $preventDefault=false) {
126
+		return $this->clearOn($element, "click", $stopPropagation, $preventDefault);
127 127
 	}
128 128
 
129
-	public function jsonArrayOn(BaseHtml $element,$event,$url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){
130
-		return $element->_addEvent($event, $this->jsJsonArray($url,$method,$params,$jsCallback,$parameters));
129
+	public function jsonArrayOn(BaseHtml $element, $event, $url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) {
130
+		return $element->_addEvent($event, $this->jsJsonArray($url, $method, $params, $jsCallback, $parameters));
131 131
 	}
132 132
 
133
-	public function jsonArrayOnClick(BaseHtml $element,$url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){
134
-		return $this->jsonArrayOn($element, "click", $url,$method,$params,$jsCallback,$parameters);
133
+	public function jsonArrayOnClick(BaseHtml $element, $url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) {
134
+		return $this->jsonArrayOn($element, "click", $url, $method, $params, $jsCallback, $parameters);
135 135
 	}
136 136
 
137 137
 	/**
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
 	 * @param number $pages_visibles The number of visible pages in the Pagination component
143 143
 	 * @return DataTable
144 144
 	 */
145
-	public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=null){
146
-		return parent::paginate($page, $total_rowcount,$items_per_page,$pages_visibles);
145
+	public function paginate($page, $total_rowcount, $items_per_page=10, $pages_visibles=null) {
146
+		return parent::paginate($page, $total_rowcount, $items_per_page, $pages_visibles);
147 147
 	}
148 148
 
149 149
 	public function setRowModelCallback($_rowModelCallback) {
Please login to merge, or discard this patch.
Ajax/semantic/widgets/base/InstanceViewer.php 1 patch
Spacing   +115 added lines, -115 removed lines patch added patch discarded remove patch
@@ -21,50 +21,50 @@  discard block
 block discarded – undo
21 21
 
22 22
 	public static $index=0;
23 23
 
24
-	public function __construct($identifier,$instance=NULL,$captions=NULL){
24
+	public function __construct($identifier, $instance=NULL, $captions=NULL) {
25 25
 		$this->widgetIdentifier=$identifier;
26 26
 		$this->values=[];
27 27
 		$this->afterCompile=[];
28
-		if(isset($instance))
28
+		if (isset($instance))
29 29
 			$this->setInstance($instance);
30 30
 		$this->setCaptions($captions);
31 31
 		$this->captionCallback=NULL;
32
-		$this->defaultValueFunction=function($name,$value){return $value;};
32
+		$this->defaultValueFunction=function($name, $value) {return $value; };
33 33
 	}
34 34
 
35
-	public function moveFieldTo($from,$to){
36
-		if(JArray::moveElementTo($this->visibleProperties, $from, $to)){
35
+	public function moveFieldTo($from, $to) {
36
+		if (JArray::moveElementTo($this->visibleProperties, $from, $to)) {
37 37
 			return JArray::moveElementTo($this->values, $from, $to);
38 38
 		}
39 39
 		return false;
40 40
 	}
41 41
 
42
-	public function swapFields($index1,$index2){
43
-		if(JArray::swapElements($this->visibleProperties, $index1, $index2)){
42
+	public function swapFields($index1, $index2) {
43
+		if (JArray::swapElements($this->visibleProperties, $index1, $index2)) {
44 44
 			return JArray::swapElements($this->values, $index1, $index2);
45 45
 		}
46 46
 		return false;
47 47
 	}
48 48
 
49
-	public function removeField($index){
50
-		\array_splice($this->visibleProperties,$index,1);
51
-		\array_splice($this->values,$index,1);
52
-		\array_splice($this->captions,$index,1);
49
+	public function removeField($index) {
50
+		\array_splice($this->visibleProperties, $index, 1);
51
+		\array_splice($this->values, $index, 1);
52
+		\array_splice($this->captions, $index, 1);
53 53
 		return $this;
54 54
 	}
55 55
 
56
-	public function getValues(){
56
+	public function getValues() {
57 57
 		$values=[];
58 58
 		$index=0;
59 59
 		$count=$this->count();
60 60
 		$hasGroupby=is_array($this->groupByFields);
61
-		if(!$hasGroupby){
62
-			while($index<$count){
61
+		if (!$hasGroupby) {
62
+			while ($index<$count) {
63 63
 					$values[]=$this->getValue($index++);
64 64
 			}
65
-		}else{
66
-			while($index<$count){
67
-				if(array_search($index, $this->groupByFields)===false){
65
+		} else {
66
+			while ($index<$count) {
67
+				if (array_search($index, $this->groupByFields)===false) {
68 68
 					$values[]=$this->getValue($index);
69 69
 				}
70 70
 				$index++;
@@ -73,203 +73,203 @@  discard block
 block discarded – undo
73 73
 		return $values;
74 74
 	}
75 75
 
76
-	public function getIdentifier($index=NULL){
77
-		if(!isset($index))
76
+	public function getIdentifier($index=NULL) {
77
+		if (!isset($index))
78 78
 			$index=self::$index;
79 79
 		$value=$index;
80
-		if(isset($this->values["identifier"])){
81
-			if(\is_string($this->values["identifier"]))
80
+		if (isset($this->values["identifier"])) {
81
+			if (\is_string($this->values["identifier"]))
82 82
 				$value=JReflection::callMethod($this->instance, $this->values["identifier"], []);
83 83
 			else
84
-				$value=$this->values["identifier"]($index,$this->instance);
84
+				$value=$this->values["identifier"]($index, $this->instance);
85 85
 		}
86 86
 		return $value;
87 87
 	}
88 88
 
89
-	public function getValue($index){
89
+	public function getValue($index) {
90 90
 		$property=$this->properties[$index];
91 91
 		return $this->_getValue($property, $index);
92 92
 	}
93 93
 
94
-	protected function _beforeAddProperty($index,&$field){
94
+	protected function _beforeAddProperty($index, &$field) {
95 95
 
96 96
 	}
97 97
 
98
-	protected function _getDefaultValue($name,$value,$index){
98
+	protected function _getDefaultValue($name, $value, $index) {
99 99
 		$func=$this->defaultValueFunction;
100
-		return $func($name,$value,$index,$this->instance);
100
+		return $func($name, $value, $index, $this->instance);
101 101
 	}
102 102
 
103
-	protected function _getPropertyValue(\ReflectionProperty $property){
103
+	protected function _getPropertyValue(\ReflectionProperty $property) {
104 104
 		$property->setAccessible(true);
105 105
 		return $property->getValue($this->instance);
106 106
 	}
107 107
 
108
-	protected function _getValue($property,$index){
108
+	protected function _getValue($property, $index) {
109 109
 		$value=null;
110 110
 		$propertyName=$property;
111
-		if($property instanceof \ReflectionProperty){
111
+		if ($property instanceof \ReflectionProperty) {
112 112
 			$value=$this->_getPropertyValue($property);
113 113
 			$propertyName=$property->getName();
114
-		}elseif(\is_callable($property) && array_search($property, ["system"])===false)
114
+		}elseif (\is_callable($property) && array_search($property, ["system"])===false)
115 115
 			$value=$property($this->instance);
116
-		elseif(\is_array($property)){
117
-			$values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property);
116
+		elseif (\is_array($property)) {
117
+			$values=\array_map(function($v) use ($index){return $this->_getValue($v, $index); }, $property);
118 118
 			$value=\implode("", $values);
119
-		}elseif(\is_string($property)){
119
+		}elseif (\is_string($property)) {
120 120
 			$value=$property;
121
-			if(isset($this->instance->{$property})){
121
+			if (isset($this->instance->{$property})) {
122 122
 				$value=$this->instance->{$property};
123
-			}elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){
123
+			}elseif (\method_exists($this->instance, $getter=JReflection::getterName($property))) {
124 124
 				$value=JReflection::callMethod($this->instance, $getter, []);
125 125
 			}
126 126
 		}
127 127
 		return $this->_postGetValue($index, $propertyName, $value);
128 128
 	}
129 129
 
130
-	protected function _postGetValue($index,$propertyName,$value){
131
-		if(isset($this->values[$index])){
132
-			$value= $this->values[$index]($value,$this->instance,$index,self::$index);
133
-		}else{
134
-			$value=$this->_getDefaultValue($propertyName,$value, $index);
130
+	protected function _postGetValue($index, $propertyName, $value) {
131
+		if (isset($this->values[$index])) {
132
+			$value=$this->values[$index]($value, $this->instance, $index, self::$index);
133
+		} else {
134
+			$value=$this->_getDefaultValue($propertyName, $value, $index);
135 135
 		}
136
-		if(isset($this->afterCompile[$index])){
137
-			if(\is_callable($this->afterCompile[$index])){
138
-				$this->afterCompile[$index]($value,$this->instance,self::$index);
136
+		if (isset($this->afterCompile[$index])) {
137
+			if (\is_callable($this->afterCompile[$index])) {
138
+				$this->afterCompile[$index]($value, $this->instance, self::$index);
139 139
 			}
140 140
 		}
141 141
 		return $value;
142 142
 	}
143 143
 
144
-	public function insertField($index,$field,$key=null){
145
-		if(isset($key)){
146
-			array_splice( $this->visibleProperties, $index, 0, [$key=>$field] );
147
-		}else{
148
-			array_splice( $this->visibleProperties, $index, 0, $field );
144
+	public function insertField($index, $field, $key=null) {
145
+		if (isset($key)) {
146
+			array_splice($this->visibleProperties, $index, 0, [$key=>$field]);
147
+		} else {
148
+			array_splice($this->visibleProperties, $index, 0, $field);
149 149
 		}
150 150
 		return $this;
151 151
 	}
152 152
 	
153
-	public function sortColumnContent($index,$array){
154
-		if(isset($this->visibleProperties[$index])){
155
-			if(is_array($this->visibleProperties[$index])){
156
-				$this->visibleProperties[$index]=JArray::sortAssociative($this->visibleProperties[$index],$array);
153
+	public function sortColumnContent($index, $array) {
154
+		if (isset($this->visibleProperties[$index])) {
155
+			if (is_array($this->visibleProperties[$index])) {
156
+				$this->visibleProperties[$index]=JArray::sortAssociative($this->visibleProperties[$index], $array);
157 157
 			}
158 158
 		}
159 159
 		return $this;
160 160
 	}
161 161
 
162
-	public function insertInField($index,$field,$key=null){
162
+	public function insertInField($index, $field, $key=null) {
163 163
 		$vb=$this->visibleProperties;
164
-		if(isset($vb[$index])){
165
-			if(isset($key)){
166
-				if(\is_array($vb[$index])){
164
+		if (isset($vb[$index])) {
165
+			if (isset($key)) {
166
+				if (\is_array($vb[$index])) {
167 167
 					$this->visibleProperties[$index][$key]=$field;
168
-				}else{
169
-					$this->visibleProperties[$index]=[$vb[$index],$key=>$field];
168
+				} else {
169
+					$this->visibleProperties[$index]=[$vb[$index], $key=>$field];
170 170
 				}
171
-			}else{
172
-				if(\is_array($vb[$index])){
171
+			} else {
172
+				if (\is_array($vb[$index])) {
173 173
 					$this->visibleProperties[$index][]=$field;
174
-				}else{
175
-					$this->visibleProperties[$index]=[$vb[$index],$field];
174
+				} else {
175
+					$this->visibleProperties[$index]=[$vb[$index], $field];
176 176
 				}
177 177
 			}
178
-		}else{
178
+		} else {
179 179
 			return $this->insertField($index, $field);
180 180
 		}
181 181
 		return $this;
182 182
 	}
183 183
 
184
-	public function addField($field,$key=null){
185
-		if(isset($key)){
184
+	public function addField($field, $key=null) {
185
+		if (isset($key)) {
186 186
 			$this->visibleProperties[]=[$key=>$field];
187
-		}else{
187
+		} else {
188 188
 			$this->visibleProperties[]=$field;
189 189
 		}
190 190
 		return $this;
191 191
 	}
192 192
 
193
-	public function addFields($fields){
194
-		$this->visibleProperties=\array_merge($this->visibleProperties,$fields);
193
+	public function addFields($fields) {
194
+		$this->visibleProperties=\array_merge($this->visibleProperties, $fields);
195 195
 		return $this;
196 196
 	}
197 197
 
198
-	public function count(){
198
+	public function count() {
199 199
 		return \sizeof($this->properties);
200 200
 	}
201 201
 
202
-	public function visiblePropertiesCount(){
202
+	public function visiblePropertiesCount() {
203 203
 		return \sizeof($this->visibleProperties);
204 204
 	}
205 205
 
206
-	public function getProperty($index){
206
+	public function getProperty($index) {
207 207
 		return $this->properties[$index];
208 208
 	}
209 209
 
210
-	public function getFieldName($index){
210
+	public function getFieldName($index) {
211 211
 		$property=$this->getProperty($index);
212
-		if($property instanceof \ReflectionProperty){
212
+		if ($property instanceof \ReflectionProperty) {
213 213
 			$result=$property->getName();
214
-		}elseif(\is_callable($property)){
214
+		}elseif (\is_callable($property)) {
215 215
 			$result=$this->visibleProperties[$index];
216
-		}else{
216
+		} else {
217 217
 			$result=$property;
218 218
 		}
219 219
 		return $result;
220 220
 	}
221 221
 
222 222
 
223
-	protected function showableProperty(\ReflectionProperty $rProperty){
224
-		return JString::startswith($rProperty->getName(),"_")===false;
223
+	protected function showableProperty(\ReflectionProperty $rProperty) {
224
+		return JString::startswith($rProperty->getName(), "_")===false;
225 225
 	}
226 226
 
227 227
 	public function setInstance($instance) {
228
-		if(\is_string($instance)){
228
+		if (\is_string($instance)) {
229 229
 			$instance=new $instance();
230 230
 		}
231 231
 		$this->instance=$instance;
232 232
 		$this->properties=[];
233 233
 		$this->reflect=new \ReflectionClass($instance);
234
-		if(JArray::count($this->visibleProperties)===0){
234
+		if (JArray::count($this->visibleProperties)===0) {
235 235
 			$this->properties=$this->getDefaultProperties();
236
-		}else{
237
-			foreach ($this->visibleProperties as $property){
236
+		} else {
237
+			foreach ($this->visibleProperties as $property) {
238 238
 				$this->setInstanceProperty($property);
239 239
 			}
240 240
 		}
241 241
 		return $this;
242 242
 	}
243 243
 
244
-	private function setInstanceProperty($property){
245
-		if(\is_callable($property)){
244
+	private function setInstanceProperty($property) {
245
+		if (\is_callable($property)) {
246 246
 			$this->properties[]=$property;
247
-		}elseif(\is_string($property)){
248
-			try{
247
+		}elseif (\is_string($property)) {
248
+			try {
249 249
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
250 250
 				$rProperty=$this->reflect->getProperty($property);
251 251
 				$this->properties[]=$rProperty;
252
-			}catch(\Exception $e){
252
+			}catch (\Exception $e) {
253 253
 				$this->_beforeAddProperty(\sizeof($this->properties), $property);
254 254
 				$this->properties[]=$property;
255 255
 			}
256
-		}elseif(\is_int($property)){
256
+		}elseif (\is_int($property)) {
257 257
 			$props=$this->getDefaultProperties();
258
-			if(isset($props[$property]))
258
+			if (isset($props[$property]))
259 259
 				$this->properties[]=$props[$property];
260 260
 				else
261 261
 					$this->properties[]=$property;
262
-		}else{
262
+		} else {
263 263
 			$this->properties[]=$property;
264 264
 		}
265 265
 	}
266 266
 
267
-	protected function getDefaultProperties(){
267
+	protected function getDefaultProperties() {
268 268
 		$result=[];
269 269
 		$properties=$this->reflect->getProperties();
270
-		foreach ($properties as $property){
270
+		foreach ($properties as $property) {
271 271
 			$showable=$this->showableProperty($property);
272
-			if($showable!==false){
272
+			if ($showable!==false) {
273 273
 				$result[]=$property;
274 274
 			}
275 275
 		}
@@ -281,12 +281,12 @@  discard block
 block discarded – undo
281 281
 		return $this;
282 282
 	}
283 283
 
284
-	public function setValueFunction($index,$callback){
284
+	public function setValueFunction($index, $callback) {
285 285
 		$this->values[$index]=$callback;
286 286
 		return $this;
287 287
 	}
288 288
 
289
-	public function setIdentifierFunction($callback){
289
+	public function setIdentifierFunction($callback) {
290 290
 		$this->values["identifier"]=$callback;
291 291
 		return $this;
292 292
 	}
@@ -299,49 +299,49 @@  discard block
 block discarded – undo
299 299
 		return $this->properties;
300 300
 	}
301 301
 
302
-	public function getCaption($index){
303
-		if(isset($this->captions[$index])){
302
+	public function getCaption($index) {
303
+		if (isset($this->captions[$index])) {
304 304
 			return $this->captions[$index];
305 305
 		}
306
-		if($this->properties[$index] instanceof \ReflectionProperty)
306
+		if ($this->properties[$index] instanceof \ReflectionProperty)
307 307
 			return $this->properties[$index]->getName();
308
-		elseif(\is_callable($this->properties[$index]))
308
+		elseif (\is_callable($this->properties[$index]))
309 309
 			return "";
310 310
 		else
311 311
 			return $this->properties[$index];
312 312
 	}
313 313
 
314
-	public function getCaptions(){
314
+	public function getCaptions() {
315 315
 		$hasGroupby=is_array($this->groupByFields);
316 316
 		$count=$this->count();
317 317
 		$moreAdded=false;
318
-		if(isset($this->captions)){
319
-			$captions= \array_values($this->captions);
320
-			$gbSize=$hasGroupby?sizeof($this->groupByFields):0;
318
+		if (isset($this->captions)) {
319
+			$captions=\array_values($this->captions);
320
+			$gbSize=$hasGroupby ?sizeof($this->groupByFields) : 0;
321 321
 			$captionsSize=\sizeof($captions);
322
-			for($i=$captionsSize;$i<$count-$gbSize;$i++){
322
+			for ($i=$captionsSize; $i<$count-$gbSize; $i++) {
323 323
 				$captions[]="";
324 324
 				$moreAdded=true;
325 325
 			}
326
-		}else{
326
+		} else {
327 327
 			$captions=[];
328 328
 			$index=0;
329
-			while($index<$count){
329
+			while ($index<$count) {
330 330
 					$captions[]=$this->getCaption($index++);
331 331
 			}
332 332
 		}
333
-		if($hasGroupby && sizeof($captions)>=$count && !$moreAdded){
333
+		if ($hasGroupby && sizeof($captions)>=$count && !$moreAdded) {
334 334
 			$captions=UArray::removeByKeys($captions, $this->groupByFields);
335 335
 		}
336
-		if(isset($this->captionCallback) && \is_callable($this->captionCallback)){
336
+		if (isset($this->captionCallback) && \is_callable($this->captionCallback)) {
337 337
 			$callback=$this->captionCallback;
338
-			$callback($captions,$this->instance);
338
+			$callback($captions, $this->instance);
339 339
 		}
340 340
 		return $captions;
341 341
 	}
342 342
 
343
-	public function setCaption($index,$caption){
344
-		if(isset($this->captions)===false)
343
+	public function setCaption($index, $caption) {
344
+		if (isset($this->captions)===false)
345 345
 			$this->captions=[];
346 346
 		$this->captions[$index]=$caption;
347 347
 		return $this;
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
 	 * @param callable $callback function called after the field compilation
360 360
 	 * @return InstanceViewer
361 361
 	 */
362
-	public function afterCompile($index,$callback){
362
+	public function afterCompile($index, $callback) {
363 363
 		$this->afterCompile[$index]=$callback;
364 364
 		return $this;
365 365
 	}
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 	}
391 391
 	
392 392
 	public function getSimpleProperties() {
393
-		return array_filter($this->visibleProperties,function($item){
393
+		return array_filter($this->visibleProperties, function($item) {
394 394
 			return !(is_array($item) || is_object($item));
395 395
 		});
396 396
 	}
@@ -412,11 +412,11 @@  discard block
 block discarded – undo
412 412
 	 * @param mixed $groupByFields
413 413
 	 */
414 414
 	public function setGroupByFields($groupByFields) {
415
-		$this->groupByFields = $groupByFields;
415
+		$this->groupByFields=$groupByFields;
416 416
 	}
417 417
 	
418
-	public function getGroupByFieldsCount(){
419
-		if(is_array($this->groupByFields)){
418
+	public function getGroupByFieldsCount() {
419
+		if (is_array($this->groupByFields)) {
420 420
 			return sizeof($this->groupByFields);
421 421
 		}
422 422
 		return 0;
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormFields.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 		}
36 36
 		if (isset($label))
37 37
 			$this->setLabel($label);
38
-		foreach ( $fields as $field ) {
38
+		foreach ($fields as $field) {
39 39
 			$this->addItem($field);
40 40
 		}
41 41
 		return $this;
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
 	public function addItem($item) {
59 59
 		$item=parent::addItem($item);
60
-		if($item instanceof HtmlFormField)
60
+		if ($item instanceof HtmlFormField)
61 61
 			$item->setContainer($this);
62 62
 		return $item;
63 63
 	}
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	/**
66 66
 	 * @return HtmlFormField
67 67
 	 */
68
-	public function getItem($index){
68
+	public function getItem($index) {
69 69
 		return parent::getItem($index);
70 70
 	}
71 71
 
@@ -104,10 +104,10 @@  discard block
 block discarded – undo
104 104
 	}
105 105
 
106 106
 
107
-	public static function radios($identifier,$name, $items=array(), $label=NULL, $value=null, $type=NULL) {
108
-		$fields=array ();
107
+	public static function radios($identifier, $name, $items=array(), $label=NULL, $value=null, $type=NULL) {
108
+		$fields=array();
109 109
 		$i=0;
110
-		foreach ( $items as $val => $caption ) {
110
+		foreach ($items as $val => $caption) {
111 111
 			$itemO=new HtmlFormRadio($name."-".$i++, $name, $caption, $val, $type);
112 112
 			if ($val===$value) {
113 113
 				$itemO->getDataField()->setProperty("checked", "");
@@ -120,10 +120,10 @@  discard block
 block discarded – undo
120 120
 		return $radios;
121 121
 	}
122 122
 
123
-	public static function checkeds($identifier,$name, $items=array(), $label=NULL, $values=array(), $type=NULL) {
124
-		$fields=array ();
123
+	public static function checkeds($identifier, $name, $items=array(), $label=NULL, $values=array(), $type=NULL) {
124
+		$fields=array();
125 125
 		$i=0;
126
-		foreach ( $items as $val => $caption ) {
126
+		foreach ($items as $val => $caption) {
127 127
 			$itemO=new HtmlFormCheckbox($name."-".$i++, $caption, $val, $type);
128 128
 			$itemO->setName($name);
129 129
 			if (\array_search($val, $values)!==false) {
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
 		return $this;
143 143
 	}
144 144
 	
145
-	public function run(JsUtils $js){
146
-		$result= parent::run($js);
145
+	public function run(JsUtils $js) {
146
+		$result=parent::run($js);
147 147
 		//return $result->setItemSelector("[data-value]");
148 148
 	}
149 149
 }
Please login to merge, or discard this patch.
Ajax/semantic/traits/SemanticHtmlModulesTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 	 * @param string $type
44 44
 	 * @return HtmlFormFields
45 45
 	 */
46
-	public function htmlRadios($identifier, $items=[], $label=NULL,$value=NULL, $type=NULL) {
47
-		return $this->addHtmlComponent(HtmlFormFields::radios($identifier,$items,$label,$value,$type));
46
+	public function htmlRadios($identifier, $items=[], $label=NULL, $value=NULL, $type=NULL) {
47
+		return $this->addHtmlComponent(HtmlFormFields::radios($identifier, $items, $label, $value, $type));
48 48
 	}
49 49
 
50 50
 	/**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	 * @return HtmlModal
101 101
 	 */
102 102
 	public function htmlModal($identifier, $header="", $content="", $actions=array()) {
103
-		return $this->addHtmlComponent(new HtmlModal($identifier, $header,$content,$actions));
103
+		return $this->addHtmlComponent(new HtmlModal($identifier, $header, $content, $actions));
104 104
 	}
105 105
 
106 106
 	/**
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
 	 * @param boolean $associative
132 132
 	 * @return HtmlDropdown
133 133
 	 */
134
-	public function htmlDropdown($identifier, $value="", $items=array(),$associative=true) {
135
-		return $this->addHtmlComponent(new HtmlDropdown($identifier, $value, $items,$associative));
134
+	public function htmlDropdown($identifier, $value="", $items=array(), $associative=true) {
135
+		return $this->addHtmlComponent(new HtmlDropdown($identifier, $value, $items, $associative));
136 136
 	}
137 137
 
138 138
 	/**
Please login to merge, or discard this patch.