Passed
Branch master (77da54)
by Jean-Christophe
02:40 queued 14s
created
Ajax/semantic/html/elements/HtmlIconGroups.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 			$icon=JArray::getValue($value, "icon", 0);
28 28
 			$size=JArray::getValue($value, "size", 1);
29 29
 		}
30
-		$iconO=new HtmlIcon("icon-" . $this->identifier, $icon);
30
+		$iconO=new HtmlIcon("icon-".$this->identifier, $icon);
31 31
 		if (isset($size)) {
32 32
 			$iconO->setSize($size);
33 33
 		}
@@ -35,15 +35,15 @@  discard block
 block discarded – undo
35 35
 	}
36 36
 
37 37
 	protected function createCondition($value) {
38
-		return ($value instanceof HtmlIcon) === false;
38
+		return ($value instanceof HtmlIcon)===false;
39 39
 	}
40 40
 
41 41
 	public function getIcon($index) {
42 42
 		return $this->content[$index];
43 43
 	}
44 44
 
45
-	public function run(JsUtils $js){
46
-		$result= parent::run($js);
45
+	public function run(JsUtils $js) {
46
+		$result=parent::run($js);
47 47
 		return $result->setItemSelector("i");
48 48
 	}
49 49
 
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 		return $this;
53 53
 	}
54 54
 
55
-	public static function corner($mainIcon,$cornerIcon,$size="huge"){
56
-		$icons=new HtmlIconGroups("icons",[$mainIcon,$cornerIcon],$size);
55
+	public static function corner($mainIcon, $cornerIcon, $size="huge") {
56
+		$icons=new HtmlIconGroups("icons", [$mainIcon, $cornerIcon], $size);
57 57
 		return $icons->toCorner(1);
58 58
 	}
59 59
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/modules/HtmlTab.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@  discard block
 block discarded – undo
14 14
  * @author jc
15 15
  * @version 1.001
16 16
  */
17
-class HtmlTab extends HtmlSemCollection{
17
+class HtmlTab extends HtmlSemCollection {
18 18
 
19 19
 	protected $params=[];
20 20
 
21
-	public function __construct( $identifier, $tabs=array()){
22
-		parent::__construct( $identifier, "div", "");
21
+	public function __construct($identifier, $tabs=array()) {
22
+		parent::__construct($identifier, "div", "");
23 23
 		$menu=new HtmlMenu("menu".$this->identifier);
24
-		$menu->asTab(false)->setAttachment(NULL,Side::TOP);
24
+		$menu->asTab(false)->setAttachment(NULL, Side::TOP);
25 25
 		$this->content["menu"]=$menu;
26 26
 		$this->addItems($tabs);
27 27
 	}
@@ -31,12 +31,12 @@  discard block
 block discarded – undo
31 31
 	 * @see \Ajax\common\html\HtmlCollection::createItem()
32 32
 	 * @return HtmlSegment
33 33
 	 */
34
-	protected function createItem($value){
34
+	protected function createItem($value) {
35 35
 		$count=$this->count();
36 36
 		$title=$value;
37 37
 		$content=NULL;
38
-		if(\is_array($value)){
39
-			$title=@$value[0];$content=@$value[1];
38
+		if (\is_array($value)) {
39
+			$title=@$value[0]; $content=@$value[1];
40 40
 		}
41 41
 		$menuItem=$this->content["menu"]->addItem($title);
42 42
 		$menuItem->addToProperty("data-tab", $menuItem->getIdentifier());
@@ -52,9 +52,9 @@  discard block
 block discarded – undo
52 52
 	 * @param string $datatab
53 53
 	 * @return \Ajax\semantic\html\elements\HtmlSegment
54 54
 	 */
55
-	private function createSegment($count,$content,$datatab){
55
+	private function createSegment($count, $content, $datatab) {
56 56
 		$segment=new HtmlSegment("item-".$this->identifier."-".$count, $content);
57
-		$segment->setAttachment(NULL,Side::BOTTOM)->addToProperty("class", "tab")->addToProperty("data-tab",$datatab);
57
+		$segment->setAttachment(NULL, Side::BOTTOM)->addToProperty("class", "tab")->addToProperty("data-tab", $datatab);
58 58
 		return $segment;
59 59
 	}
60 60
 
@@ -64,12 +64,12 @@  discard block
 block discarded – undo
64 64
 	 * @param String $content new content
65 65
 	 * @return \Ajax\semantic\html\modules\HtmlTab
66 66
 	 */
67
-	public function setTabContent($index,$content){
67
+	public function setTabContent($index, $content) {
68 68
 		$menu=$this->content["menu"];
69
-		if($index<$menu->count()){
70
-			if(isset($this->content[$index])===false){
69
+		if ($index<$menu->count()) {
70
+			if (isset($this->content[$index])===false) {
71 71
 				$this->content[$index]=$this->createSegment($index, $content, $menu->getItem($index)->getIdentifier());
72
-			}else
72
+			} else
73 73
 				$this->content[$index]->setContent($content);
74 74
 		}
75 75
 		return $this;
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
 	 * @param array $contents
81 81
 	 * @return \Ajax\semantic\html\modules\HtmlTab
82 82
 	 */
83
-	public function setTabsContent($contents){
83
+	public function setTabsContent($contents) {
84 84
 		$size=\sizeof($contents);
85
-		for($i=0;$i<$size;$i++){
85
+		for ($i=0; $i<$size; $i++) {
86 86
 			$this->setTabContent($i, $contents[$i]);
87 87
 		}
88 88
 		return $this;
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 * @param int $index
94 94
 	 * @return \Ajax\semantic\html\modules\HtmlTab
95 95
 	 */
96
-	public function activate($index){
96
+	public function activate($index) {
97 97
 		$this->content["menu"]->getItem($index)->setActive(true);
98 98
 		$this->content[$index]->setActive(true);
99 99
 		return $this;
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
 	 * @param string $content
106 106
 	 * @return \Ajax\semantic\html\elements\HtmlSegment
107 107
 	 */
108
-	public function addTab($title,$content){
109
-		return $this->addItem([$title,$content]);
108
+	public function addTab($title, $content) {
109
+		return $this->addItem([$title, $content]);
110 110
 	}
111 111
 
112 112
 	/**
@@ -120,13 +120,13 @@  discard block
 block discarded – undo
120 120
 	 * @param array $params
121 121
 	 * @return \Ajax\semantic\html\elements\HtmlSegment
122 122
 	 */
123
-	public function forwardTab($index,JsUtils $js,$title,$initialController,$controller,$action,$params=array()){
124
-		if(\array_key_exists($index, $this->content)){
125
-			$this->content[$index]=$js->forward($initialController, $controller, $action,$params);
123
+	public function forwardTab($index, JsUtils $js, $title, $initialController, $controller, $action, $params=array()) {
124
+		if (\array_key_exists($index, $this->content)) {
125
+			$this->content[$index]=$js->forward($initialController, $controller, $action, $params);
126 126
 			return $this->content[$index];
127 127
 		}
128 128
 
129
-		return $this->addAndForwardTab($js, $title, $initialController, $controller, $action,$params);
129
+		return $this->addAndForwardTab($js, $title, $initialController, $controller, $action, $params);
130 130
 	}
131 131
 
132 132
 	/**
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
 	 * @param $params The parameters to pass to the view
140 140
 	 * @return \Ajax\semantic\html\elements\HtmlSegment
141 141
 	 */
142
-	public function renderViewTab($index,JsUtils $js,$title,$initialController, $viewName, $params=array()) {
143
-		if(\array_key_exists($index, $this->content)){
144
-			$this->content[$index]=$js->renderContent($initialController, $viewName,$params);
142
+	public function renderViewTab($index, JsUtils $js, $title, $initialController, $viewName, $params=array()) {
143
+		if (\array_key_exists($index, $this->content)) {
144
+			$this->content[$index]=$js->renderContent($initialController, $viewName, $params);
145 145
 			return $this->content[$index];
146 146
 		}
147
-		return $this->addAndRenderViewTab($js, $title, $initialController, $viewName,$params);
147
+		return $this->addAndRenderViewTab($js, $title, $initialController, $viewName, $params);
148 148
 	}
149 149
 
150 150
 
@@ -158,8 +158,8 @@  discard block
 block discarded – undo
158 158
 	 * @param array $params
159 159
 	 * @return \Ajax\semantic\html\elements\HtmlSegment
160 160
 	 */
161
-	public function addAndForwardTab(JsUtils $js,$title,$initialController,$controller,$action,$params=array()){
162
-		return $this->addTab($title, $js->forward($initialController, $controller, $action,$params));
161
+	public function addAndForwardTab(JsUtils $js, $title, $initialController, $controller, $action, $params=array()) {
162
+		return $this->addTab($title, $js->forward($initialController, $controller, $action, $params));
163 163
 	}
164 164
 
165 165
 	/**
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
 	 * @param $params The parameters to pass to the view
172 172
 	 * @return \Ajax\semantic\html\elements\HtmlSegment
173 173
 	 */
174
-	public function addAndRenderViewTab(JsUtils $js,$title,$initialController, $viewName, $params=array()) {
175
-		return $this->addTab($title, $js->renderContent($initialController, $viewName,$params));
174
+	public function addAndRenderViewTab(JsUtils $js, $title, $initialController, $viewName, $params=array()) {
175
+		return $this->addTab($title, $js->renderContent($initialController, $viewName, $params));
176 176
 	}
177 177
 
178 178
 	public function setPointing($value=Direction::NONE) {
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 	 * @param int $index
189 189
 	 * @return Ajax\semantic\html\content\HtmlMenuItem
190 190
 	 */
191
-	public function getMenuTab($index){
191
+	public function getMenuTab($index) {
192 192
 		return $this->content["menu"]->getItem($index);
193 193
 	}
194 194
 
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
 	 * @param int $index
198 198
 	 * @return HtmlSegment
199 199
 	 */
200
-	public function getTab($index){
200
+	public function getTab($index) {
201 201
 		return $this->content[$index];
202 202
 	}
203 203
 
@@ -206,22 +206,22 @@  discard block
 block discarded – undo
206 206
 	 * @param HtmlMenu $menu
207 207
 	 * @return \Ajax\semantic\html\modules\HtmlTab
208 208
 	 */
209
-	public function setMenu($menu){
209
+	public function setMenu($menu) {
210 210
 		$contentSize=\sizeof($this->content);
211
-		for($i=0;$i<$contentSize;$i++){
212
-			if($menu->getItem($i)!==NULL){
213
-				if(isset($this->content[$i])){
214
-					$menu->getItem($i)->addToProperty("data-tab",$this->content[$i]->getProperty("data-tab"));
211
+		for ($i=0; $i<$contentSize; $i++) {
212
+			if ($menu->getItem($i)!==NULL) {
213
+				if (isset($this->content[$i])) {
214
+					$menu->getItem($i)->addToProperty("data-tab", $this->content[$i]->getProperty("data-tab"));
215 215
 				}
216 216
 			}
217 217
 		}
218 218
 		$menuSize=$menu->count();
219
-		for($i=0;$i<$menuSize;$i++){
219
+		for ($i=0; $i<$menuSize; $i++) {
220 220
 			$menu->getItem($i)->removeProperty("href");
221
-			if(isset($this->content[$i])===false){
221
+			if (isset($this->content[$i])===false) {
222 222
 				$this->content[$i]=$this->createSegment($i, "New content", $menu->getItem($i)->getIdentifier());
223 223
 			}
224
-			$menu->getItem($i)->addToProperty("data-tab",$this->content[$i]->getProperty("data-tab"));
224
+			$menu->getItem($i)->addToProperty("data-tab", $this->content[$i]->getProperty("data-tab"));
225 225
 		}
226 226
 
227 227
 		$this->content["menu"]=$menu;
@@ -233,15 +233,15 @@  discard block
 block discarded – undo
233 233
 	 * @see BaseHtml::run()
234 234
 	 */
235 235
 	public function run(JsUtils $js) {
236
-		if(isset($this->_bsComponent)===false)
237
-			$this->_bsComponent=$js->semantic()->tab("#".$this->identifier." .item",$this->params);
236
+		if (isset($this->_bsComponent)===false)
237
+			$this->_bsComponent=$js->semantic()->tab("#".$this->identifier." .item", $this->params);
238 238
 			$this->addEventsOnRun($js);
239 239
 			return $this->_bsComponent;
240 240
 	}
241 241
 
242 242
 	public function compile(JsUtils $js=NULL, &$view=NULL) {
243
-		if($this->content["menu"]->count()>0 && \sizeof($this->content)>1)
243
+		if ($this->content["menu"]->count()>0 && \sizeof($this->content)>1)
244 244
 			$this->activate(0);
245
-		return parent::compile($js,$view);
245
+		return parent::compile($js, $view);
246 246
 	}
247 247
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/traits/FieldsTrait.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -20,46 +20,46 @@  discard block
 block discarded – undo
20 20
  * @property string $identifier
21 21
  */
22 22
 trait FieldsTrait {
23
-	abstract public function addFields($fields=NULL,$label=NULL);
23
+	abstract public function addFields($fields=NULL, $label=NULL);
24 24
 	abstract public function addItem($item);
25 25
 
26
-	protected function createItem($value){
27
-		if(\is_array($value)){
28
-			$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)));
26
+	protected function createItem($value) {
27
+		if (\is_array($value)) {
28
+			$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)));
29 29
 			return $itemO;
30
-		}elseif(\is_object($value)){
30
+		}elseif (\is_object($value)) {
31 31
 			$itemO=new HtmlFormField("field-".$this->identifier, $value);
32 32
 			return $itemO;
33
-		}else
33
+		} else
34 34
 			return new HtmlFormInput($value);
35 35
 	}
36 36
 
37
-	protected function createCondition($value){
37
+	protected function createCondition($value) {
38 38
 		return \is_object($value)===false || $value instanceof \Ajax\semantic\html\elements\HtmlInput;
39 39
 	}
40 40
 
41
-	public function addInputs($inputs,$fieldslabel=null){
41
+	public function addInputs($inputs, $fieldslabel=null) {
42 42
 		$fields=array();
43
-		foreach ($inputs as $input){
43
+		foreach ($inputs as $input) {
44 44
 			\extract($input);
45
-			$f=new HtmlFormInput("","");
45
+			$f=new HtmlFormInput("", "");
46 46
 			$f->fromArray($input);
47 47
 			$fields[]=$f;
48 48
 		}
49
-		return $this->addFields($fields,$fieldslabel);
49
+		return $this->addFields($fields, $fieldslabel);
50 50
 	}
51 51
 
52
-	public function addFieldRule($index,$type,$prompt=NULL,$value=NULL){
52
+	public function addFieldRule($index, $type, $prompt=NULL, $value=NULL) {
53 53
 		$field=$this->getItem($index);
54
-		if(isset($field)){
55
-			$field->addRule($type,$prompt,$value);
54
+		if (isset($field)) {
55
+			$field->addRule($type, $prompt, $value);
56 56
 		}
57 57
 		return $this;
58 58
 	}
59 59
 
60
-	public function addFieldRules($index,$rules){
60
+	public function addFieldRules($index, $rules) {
61 61
 		$field=$this->getItem($index);
62
-		if(isset($field)){
62
+		if (isset($field)) {
63 63
 			$field->addRules($rules);
64 64
 		}
65 65
 		return $this;
@@ -74,8 +74,8 @@  discard block
 block discarded – undo
74 74
 	 * @param boolean $multiple
75 75
 	 * @return HtmlFormDropdown
76 76
 	 */
77
-	public function addDropdown($identifier,$items=array(), $label=NULL,$value=NULL,$multiple=false){
78
-		return $this->addItem(new HtmlFormDropdown($identifier,$items,$label,$value,$multiple));
77
+	public function addDropdown($identifier, $items=array(), $label=NULL, $value=NULL, $multiple=false) {
78
+		return $this->addItem(new HtmlFormDropdown($identifier, $items, $label, $value, $multiple));
79 79
 	}
80 80
 
81 81
 	/**
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
 	 * @param boolean $asIcons
86 86
 	 * @return HtmlButtonGroups
87 87
 	 */
88
-	public function addButtonGroups($identifier,$elements=[],$asIcons=false){
89
-		return $this->addItem(new HtmlButtonGroups($identifier,$elements,$asIcons));
88
+	public function addButtonGroups($identifier, $elements=[], $asIcons=false) {
89
+		return $this->addItem(new HtmlButtonGroups($identifier, $elements, $asIcons));
90 90
 	}
91 91
 
92 92
 	/**
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
 	 * @param string $icon
99 99
 	 * @return HtmlButtonGroups
100 100
 	 */
101
-	public function addDropdownButton($identifier,$value,$items=[],$asCombo=false,$icon=null){
102
-		return $this->addItem(HtmlButton::dropdown($identifier, $value,$items,$asCombo,$icon));
101
+	public function addDropdownButton($identifier, $value, $items=[], $asCombo=false, $icon=null) {
102
+		return $this->addItem(HtmlButton::dropdown($identifier, $value, $items, $asCombo, $icon));
103 103
 	}
104 104
 
105 105
 	/**
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
 	 * @param string $placeholder
111 111
 	 * @return HtmlFormInput
112 112
 	 */
113
-	public function addInput($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL){
114
-		return $this->addItem(new HtmlFormInput($identifier,$label,$type,$value,$placeholder));
113
+	public function addInput($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) {
114
+		return $this->addItem(new HtmlFormInput($identifier, $label, $type, $value, $placeholder));
115 115
 	}
116 116
 
117 117
 	/**
@@ -122,16 +122,16 @@  discard block
 block discarded – undo
122 122
 	 * @param int $rows
123 123
 	 * @return HtmlTextarea
124 124
 	 */
125
-	public function addTextarea($identifier, $label,$value=NULL,$placeholder=NULL,$rows=5){
126
-		return $this->addItem(new HtmlFormTextarea($identifier,$label,$value,$placeholder,$rows));
125
+	public function addTextarea($identifier, $label, $value=NULL, $placeholder=NULL, $rows=5) {
126
+		return $this->addItem(new HtmlFormTextarea($identifier, $label, $value, $placeholder, $rows));
127 127
 	}
128 128
 
129
-	public function addPassword($identifier, $label=NULL){
130
-		return $this->addItem(new HtmlFormInput($identifier,$label,"password","",""));
129
+	public function addPassword($identifier, $label=NULL) {
130
+		return $this->addItem(new HtmlFormInput($identifier, $label, "password", "", ""));
131 131
 	}
132 132
 
133
-	public function addButton($identifier,$value,$cssStyle=NULL,$onClick=NULL){
134
-		return $this->addItem(new HtmlButton($identifier,$value,$cssStyle,$onClick));
133
+	public function addButton($identifier, $value, $cssStyle=NULL, $onClick=NULL) {
134
+		return $this->addItem(new HtmlButton($identifier, $value, $cssStyle, $onClick));
135 135
 	}
136 136
 
137 137
 	/**
@@ -141,16 +141,16 @@  discard block
 block discarded – undo
141 141
 	 * @param string $type
142 142
 	 * @return HtmlFormCheckbox
143 143
 	 */
144
-	public function addCheckbox($identifier, $label=NULL,$value=NULL,$type=NULL){
145
-		return $this->addItem(new HtmlFormCheckbox($identifier,$label,$value,$type));
144
+	public function addCheckbox($identifier, $label=NULL, $value=NULL, $type=NULL) {
145
+		return $this->addItem(new HtmlFormCheckbox($identifier, $label, $value, $type));
146 146
 	}
147 147
 
148
-	public function addRadio($identifier, $name,$label=NULL,$value=NULL){
149
-		return $this->addItem(new HtmlFormRadio($identifier,$name,$label,$value));
148
+	public function addRadio($identifier, $name, $label=NULL, $value=NULL) {
149
+		return $this->addItem(new HtmlFormRadio($identifier, $name, $label, $value));
150 150
 	}
151 151
 
152
-	public function addElement($identifier,$content,$label,$tagName="div",$baseClass=""){
153
-		$div=new HtmlSemDoubleElement($identifier,$tagName,$baseClass,$content);
154
-		return $this->addItem(new HtmlFormField("field-".$identifier, $div,$label));
152
+	public function addElement($identifier, $content, $label, $tagName="div", $baseClass="") {
153
+		$div=new HtmlSemDoubleElement($identifier, $tagName, $baseClass, $content);
154
+		return $this->addItem(new HtmlFormField("field-".$identifier, $div, $label));
155 155
 	}
156 156
 }
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlFormDropdown.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -7,29 +7,29 @@  discard block
 block discarded – undo
7 7
 
8 8
 class HtmlFormDropdown extends HtmlFormField {
9 9
 
10
-	public function __construct($identifier,$items=array(), $label=NULL,$value="",$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="", $multiple=false, $associative=true) {
11
+		parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier, $value, $items, $associative))->asSelect($identifier, $multiple), $label);
12 12
 		$this->_identifier=$identifier;
13 13
 	}
14 14
 
15
-	public function setItems($items){
15
+	public function setItems($items) {
16 16
 		return $this->getField()->setItems($items);
17 17
 	}
18
-	public function addItem($item,$value=NULL,$image=NULL){
19
-		return $this->getField()->addItem($item,$value,$image);
18
+	public function addItem($item, $value=NULL, $image=NULL) {
19
+		return $this->getField()->addItem($item, $value, $image);
20 20
 	}
21
-	public static function multipleDropdown($identifier,$items=array(), $label=NULL,$value="",$associative=true){
22
-		return new HtmlFormDropdown($identifier,$items,$label,$value,true,$associative);
21
+	public static function multipleDropdown($identifier, $items=array(), $label=NULL, $value="", $associative=true) {
22
+		return new HtmlFormDropdown($identifier, $items, $label, $value, true, $associative);
23 23
 	}
24 24
 
25 25
 	/**
26 26
 	 * @return HtmlDropdown
27 27
 	 */
28
-	public function getDataField(){
28
+	public function getDataField() {
29 29
 		return $this->getField()->getInput();
30 30
 	}
31
-	public function asSelect($name=NULL,$multiple=false,$selection=true){
32
-		$this->getField()->asSelect($name,$multiple,$selection);
31
+	public function asSelect($name=NULL, $multiple=false, $selection=true) {
32
+		$this->getField()->asSelect($name, $multiple, $selection);
33 33
 		return $this;
34 34
 	}
35 35
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 * @param boolean $floating
38 38
 	 * @return HtmlDropdown
39 39
 	 */
40
-	public function asButton($floating=false){
40
+	public function asButton($floating=false) {
41 41
 		$field=$this->content["field"];
42 42
 		$label=$this->content["label"];
43 43
 		$field->addContent($label);
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/HtmlMessage.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  * @version 1.001
16 16
  */
17 17
 class HtmlMessage extends HtmlSemDoubleElement {
18
-	use AttachedTrait,HasTimeoutTrait;
18
+	use AttachedTrait, HasTimeoutTrait;
19 19
 	protected $icon;
20 20
 	protected $close;
21 21
 
@@ -32,39 +32,39 @@  discard block
 block discarded – undo
32 32
 	 * @param string|HtmlSemDoubleElement $header
33 33
 	 * @return \Ajax\semantic\html\collections\HtmlMessage
34 34
 	 */
35
-	public function addHeader($header){
35
+	public function addHeader($header) {
36 36
 		$headerO=$header;
37
-		if(\is_string($header)){
38
-			$headerO=new HtmlSemDoubleElement("header-".$this->identifier,"div");
37
+		if (\is_string($header)) {
38
+			$headerO=new HtmlSemDoubleElement("header-".$this->identifier, "div");
39 39
 			$headerO->setClass("header");
40 40
 			$headerO->setContent($header);
41 41
 		}
42
-		return $this->addContent($headerO,true);
42
+		return $this->addContent($headerO, true);
43 43
 	}
44 44
 
45
-	public function setHeader($header){
45
+	public function setHeader($header) {
46 46
 		return $this->addHeader($header);
47 47
 	}
48 48
 
49
-	public function setIcon($icon){
49
+	public function setIcon($icon) {
50 50
 		$this->addToProperty("class", "icon");
51
-		$this->wrapContent("<div class='content'>","</div>");
52
-		if(\is_string($icon)){
51
+		$this->wrapContent("<div class='content'>", "</div>");
52
+		if (\is_string($icon)) {
53 53
 			$this->icon=new HtmlIcon("icon-".$this->identifier, $icon);
54
-		}else{
54
+		} else {
55 55
 			$this->icon=$icon;
56 56
 		}
57 57
 		return $this;
58 58
 	}
59 59
 
60
-	public function addLoader($loaderIcon="notched circle"){
60
+	public function addLoader($loaderIcon="notched circle") {
61 61
 		$this->setIcon($loaderIcon);
62 62
 		$this->icon->addToIcon("loading");
63 63
 		return $this;
64 64
 	}
65 65
 
66
-	public function setDismissable($dismiss=true){
67
-		if($dismiss===true)
66
+	public function setDismissable($dismiss=true) {
67
+		if ($dismiss===true)
68 68
 			$this->close=new HtmlIcon("close-".$this->identifier, "close");
69 69
 		else
70 70
 			$this->close=NULL;
@@ -75,43 +75,43 @@  discard block
 block discarded – undo
75 75
 	 * {@inheritDoc}
76 76
 	 * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run()
77 77
 	 */
78
-	public function run(JsUtils $js){
79
-		if(!isset($this->_bsComponent)){
80
-			if(isset($this->close)){
78
+	public function run(JsUtils $js) {
79
+		if (!isset($this->_bsComponent)) {
80
+			if (isset($this->close)) {
81 81
 				$js->execOn("click", "#".$this->identifier." .close", "$(this).closest('.message').transition({$this->_closeTransition})");
82 82
 			}
83
-			if(isset($this->_timeout)){
84
-				$js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});",true);
83
+			if (isset($this->_timeout)) {
84
+				$js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});", true);
85 85
 			}
86 86
 		}
87 87
 		return parent::run($js);
88 88
 	}
89 89
 
90
-	public function setState($visible=true){
91
-		$visible=($visible===true)?"visible":"hidden";
92
-		return $this->addToPropertyCtrl("class", $visible, array("visible","hidden"));
90
+	public function setState($visible=true) {
91
+		$visible=($visible===true) ? "visible" : "hidden";
92
+		return $this->addToPropertyCtrl("class", $visible, array("visible", "hidden"));
93 93
 	}
94 94
 
95
-	public function setVariation($value="floating"){
96
-		return $this->addToPropertyCtrl("class", $value, array("floating","compact"));
95
+	public function setVariation($value="floating") {
96
+		return $this->addToPropertyCtrl("class", $value, array("floating", "compact"));
97 97
 	}
98 98
 
99
-	public function setStyle($style){
99
+	public function setStyle($style) {
100 100
 		return $this->addToPropertyCtrl("class", $style, Style::getConstants());
101 101
 	}
102 102
 
103
-	public function setError(){
103
+	public function setError() {
104 104
 		return $this->setStyle("error");
105 105
 	}
106 106
 
107
-	public function setWarning(){
107
+	public function setWarning() {
108 108
 		return $this->setStyle("warning");
109 109
 	}
110 110
 
111
-	public function setMessage($message){
112
-		if(\is_array($this->content)){
111
+	public function setMessage($message) {
112
+		if (\is_array($this->content)) {
113 113
 			$this->content[\sizeof($this->content)-1]=$message;
114
-		}else
114
+		} else
115 115
 			$this->setContent($message);
116 116
 	}
117 117
 
Please login to merge, or discard this patch.
Ajax/service/Javascript.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  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 containsCode($expression){
10
-		return strrpos($expression, 'this')!==false||strrpos($expression, 'event')!==false||strrpos($expression, 'self')!==false;
9
+	public static function containsCode($expression) {
10
+		return strrpos($expression, 'this')!==false || strrpos($expression, 'event')!==false || strrpos($expression, 'self')!==false;
11 11
 	}
12 12
 
13 13
 	/**
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 		return $value;
44 44
 	}
45 45
 
46
-	public static function prep_jquery_selector($value){
47
-		if(JString::startswith($value, '$(')===false){
46
+	public static function prep_jquery_selector($value) {
47
+		if (JString::startswith($value, '$(')===false) {
48 48
 			return '$('.$value.')';
49 49
 		}
50 50
 		return $value;
Please login to merge, or discard this patch.
Ajax/service/AjaxTransition.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,26 +3,26 @@
 block discarded – undo
3 3
 use Ajax\semantic\html\base\constants\Transition;
4 4
 
5 5
 class AjaxTransition {
6
-	public static function none($responseElement,$jqueryDone="html"){
6
+	public static function none($responseElement, $jqueryDone="html") {
7 7
 		return $responseElement.".".$jqueryDone."( data )";
8 8
 	}
9 9
 
10
-	public static function jqFade($responseElement,$jqueryDone="html"){
10
+	public static function jqFade($responseElement, $jqueryDone="html") {
11 11
 		return $responseElement.".hide().{$jqueryDone}( data ).fadeIn()";
12 12
 	}
13 13
 
14
-	public static function jqSlide($responseElement,$jqueryDone="html"){
14
+	public static function jqSlide($responseElement, $jqueryDone="html") {
15 15
 		return $responseElement.".hide().{$jqueryDone}( data ).slideDown()";
16 16
 	}
17 17
 
18
-	public static function random($responseElement,$jqueryDone="html"){
18
+	public static function random($responseElement, $jqueryDone="html") {
19 19
 		$transitions=Transition::getConstantValues();
20
-		$transition=$transitions[\rand(0,\sizeof($transitions)-1)];
21
-		return self::__callStatic($transition, [$responseElement,$jqueryDone]);
20
+		$transition=$transitions[\rand(0, \sizeof($transitions)-1)];
21
+		return self::__callStatic($transition, [$responseElement, $jqueryDone]);
22 22
 	}
23 23
 
24
-	public static function __callStatic($name, $arguments){
25
-		if(\sizeof($arguments)==2){
24
+	public static function __callStatic($name, $arguments) {
25
+		if (\sizeof($arguments)==2) {
26 26
 			$responseElement=$arguments[0];
27 27
 			$jqueryDone=$arguments[1];
28 28
 			$name=JString::camelCaseToSeparated($name);
Please login to merge, or discard this patch.
Ajax/semantic/html/collections/form/HtmlForm.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class HtmlForm extends HtmlSemCollection {
22 22
 
23
-	use FieldsTrait,FormTrait;
23
+	use FieldsTrait, FormTrait;
24 24
 	/**
25 25
 	 * @var array
26 26
 	 */
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
 
34 34
 	public function __construct($identifier, $elements=array()) {
35 35
 		parent::__construct($identifier, "form", "ui form");
36
-		$this->_states=[ State::ERROR,State::SUCCESS,State::WARNING,State::DISABLED ];
36
+		$this->_states=[State::ERROR, State::SUCCESS, State::WARNING, State::DISABLED];
37 37
 		$this->setProperty("name", $this->identifier);
38
-		$this->_fields=array ();
38
+		$this->_fields=array();
39 39
 		$this->addItems($elements);
40 40
 		$this->_validationParams=[];
41 41
 	}
42 42
 
43
-	protected function getForm(){
43
+	protected function getForm() {
44 44
 		return $this;
45 45
 	}
46 46
 
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 	 * @param string $caption
63 63
 	 * @return HtmlForm
64 64
 	 */
65
-	public function addDivider($caption=NULL){
66
-		return $this->addContent(new HtmlDivider("",$caption));
65
+	public function addDivider($caption=NULL) {
66
+		return $this->addContent(new HtmlDivider("", $caption));
67 67
 	}
68 68
 
69 69
 	/**
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 						$label=NULL;
86 86
 				}
87 87
 				$this->_fields=\array_merge($this->_fields, $fields);
88
-				$fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields);
88
+				$fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count(), $fields);
89 89
 			}
90
-			if (isset($label)){
91
-				$fields->wrap("<div class='field'><label>{$label}</label>","</div>");
90
+			if (isset($label)) {
91
+				$fields->wrap("<div class='field'><label>{$label}</label>", "</div>");
92 92
 			}
93 93
 		} else {
94
-			$fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count());
94
+			$fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count());
95 95
 		}
96 96
 		$this->addItem($fields);
97 97
 		return $fields;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
 	public function addItem($item) {
101 101
 		$item=parent::addItem($item);
102
-		if (\is_subclass_of($item, HtmlFormField::class) === true) {
102
+		if (\is_subclass_of($item, HtmlFormField::class)===true) {
103 103
 			$this->_fields[]=$item;
104 104
 		}
105 105
 		return $item;
@@ -157,39 +157,39 @@  discard block
 block discarded – undo
157 157
 
158 158
 
159 159
 
160
-	public function compile(JsUtils $js=NULL,&$view=NULL){
161
-		if(\sizeof($this->_validationParams)>0)
160
+	public function compile(JsUtils $js=NULL, &$view=NULL) {
161
+		if (\sizeof($this->_validationParams)>0)
162 162
 			$this->setProperty("novalidate", "");
163
-		return parent::compile($js,$view);
163
+		return parent::compile($js, $view);
164 164
 	}
165 165
 
166 166
 	public function run(JsUtils $js) {
167
-		if(isset($js)){
167
+		if (isset($js)) {
168 168
 			$compo=$js->semantic()->form("#".$this->identifier);
169
-		}else{
169
+		} else {
170 170
 			$compo=new Form();
171 171
 			$compo->attach("#".$this->identifier);
172 172
 		}
173
-		foreach ($this->_fields as $field){
174
-			if($field instanceof HtmlFormField){
173
+		foreach ($this->_fields as $field) {
174
+			if ($field instanceof HtmlFormField) {
175 175
 				$compo=$this->addCompoValidation($compo, $field);
176 176
 			}
177 177
 		}
178
-		foreach ($this->content as $field){
179
-			if($field instanceof HtmlFormFields){
178
+		foreach ($this->content as $field) {
179
+			if ($field instanceof HtmlFormFields) {
180 180
 				$items=$field->getItems();
181
-				foreach ($items as $_field){
182
-					if($_field instanceof HtmlFormField)
181
+				foreach ($items as $_field) {
182
+					if ($_field instanceof HtmlFormField)
183 183
 						$compo=$this->addCompoValidation($compo, $_field);
184 184
 				}
185 185
 			}
186 186
 		}
187
-		$this->_runValidationParams($compo,$js);
187
+		$this->_runValidationParams($compo, $js);
188 188
 		return $this->_bsComponent;
189 189
 	}
190 190
 
191
-	public function addValidationParam($paramName,$paramValue,$before="",$after=""){
192
-		$this->addBehavior($this->_validationParams, $paramName, $paramValue,$before,$after);
191
+	public function addValidationParam($paramName, $paramValue, $before="", $after="") {
192
+		$this->addBehavior($this->_validationParams, $paramName, $paramValue, $before, $after);
193 193
 		return $this;
194 194
 	}
195 195
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 		return $this->_validationParams;
203 203
 	}
204 204
 
205
-	public function removeValidationParam($param){
205
+	public function removeValidationParam($param) {
206 206
 		unset($this->_validationParams[$param]);
207 207
 		return $this;
208 208
 	}
Please login to merge, or discard this patch.
Ajax/semantic/components/validation/FieldValidation.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @version 1.001
8 8
  * Generates a JSON field validator
9 9
  */
10
-class FieldValidation implements \JsonSerializable{
10
+class FieldValidation implements \JsonSerializable {
11 11
 	/**
12 12
 	 * @var string
13 13
 	 */
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 	protected $optional;
26 26
 
27
-	public function __construct($identifier){
27
+	public function __construct($identifier) {
28 28
 		$this->identifier=$identifier;
29 29
 		$this->rules=[];
30 30
 	}
@@ -48,22 +48,22 @@  discard block
 block discarded – undo
48 48
 	 * @param string $value
49 49
 	 * @return Rule
50 50
 	 */
51
-	public function addRule($type,$prompt=NULL,$value=NULL){
52
-		if($type instanceof  Rule)
51
+	public function addRule($type, $prompt=NULL, $value=NULL) {
52
+		if ($type instanceof  Rule)
53 53
 			$rule=$type;
54
-		else if(\is_array($type)){
54
+		else if (\is_array($type)) {
55 55
 			$value=JArray::getValue($type, "value", 2);
56 56
 			$prompt=JArray::getValue($type, "prompt", 1);
57 57
 			$type=JArray::getValue($type, "type", 0);
58
-			$rule=new Rule($type,$prompt,$value);
59
-		}else
60
-			$rule=new Rule($type,$prompt,$value);
58
+			$rule=new Rule($type, $prompt, $value);
59
+		} else
60
+			$rule=new Rule($type, $prompt, $value);
61 61
 		$this->rules[]=$rule;
62 62
 		return $rule;
63 63
 	}
64 64
 
65
-	public function jsonSerialize(){
66
-		return ["identifier"=>$this->identifier,"rules"=>$this->rules];
65
+	public function jsonSerialize() {
66
+		return ["identifier"=>$this->identifier, "rules"=>$this->rules];
67 67
 	}
68 68
 
69 69
 	public function setDepends($depends) {
Please login to merge, or discard this patch.