@@ -9,8 +9,9 @@ discard block |
||
| 9 | 9 | |
| 10 | 10 | public function __construct($identifier,$context=NULL,$content=NULL) { |
| 11 | 11 | parent::__construct($identifier, "div", "ui sticky", $content); |
| 12 | - if(isset($content)) |
|
| 13 | - $this->setContext($context); |
|
| 12 | + if(isset($content)) { |
|
| 13 | + $this->setContext($context); |
|
| 14 | + } |
|
| 14 | 15 | } |
| 15 | 16 | |
| 16 | 17 | public function setContext($context){ |
@@ -20,15 +21,17 @@ discard block |
||
| 20 | 21 | |
| 21 | 22 | public function setFixed($value=NULL){ |
| 22 | 23 | $fixed="fixed"; |
| 23 | - if(isset($value)) |
|
| 24 | - $fixed.=" ".$value; |
|
| 24 | + if(isset($value)) { |
|
| 25 | + $fixed.=" ".$value; |
|
| 26 | + } |
|
| 25 | 27 | return $this->addToProperty("class",$fixed); |
| 26 | 28 | } |
| 27 | 29 | |
| 28 | 30 | public function setBound($value=NULL){ |
| 29 | 31 | $bound="bound"; |
| 30 | - if(isset($value)) |
|
| 31 | - $bound.=" ".$value; |
|
| 32 | + if(isset($value)) { |
|
| 33 | + $bound.=" ".$value; |
|
| 34 | + } |
|
| 32 | 35 | return $this->addToProperty("class",$bound); |
| 33 | 36 | } |
| 34 | 37 | |
@@ -50,8 +53,9 @@ discard block |
||
| 50 | 53 | |
| 51 | 54 | public function setDebug($verbose=NULL){ |
| 52 | 55 | $this->_params["debug"]=true; |
| 53 | - if(isset($verbose)) |
|
| 54 | - $this->_params["verbose"]=true; |
|
| 56 | + if(isset($verbose)) { |
|
| 57 | + $this->_params["verbose"]=true; |
|
| 58 | + } |
|
| 55 | 59 | return $this; |
| 56 | 60 | } |
| 57 | 61 | } |
| 58 | 62 | \ No newline at end of file |
@@ -15,14 +15,15 @@ discard block |
||
| 15 | 15 | $field=new \Ajax\common\html\html5\HtmlInput($identifier, $inputType, $value); |
| 16 | 16 | $field->setProperty("name", $name); |
| 17 | 17 | $this->setField($field); |
| 18 | - if (isset($label)) |
|
| 19 | - $this->setLabel($label); |
|
| 18 | + if (isset($label)) { |
|
| 19 | + $this->setLabel($label); |
|
| 20 | + } |
|
| 20 | 21 | } |
| 21 | 22 | |
| 22 | 23 | public function setChecked($value=true){ |
| 23 | 24 | if($value===true){ |
| 24 | 25 | $this->getField()->setProperty("checked", "checked"); |
| 25 | - }else{ |
|
| 26 | + } else{ |
|
| 26 | 27 | $this->getField()->removeProperty("checked"); |
| 27 | 28 | } |
| 28 | 29 | return $this; |
@@ -51,8 +52,9 @@ discard block |
||
| 51 | 52 | * @return mixed |
| 52 | 53 | */ |
| 53 | 54 | public function getLabel() { |
| 54 | - if (\array_key_exists("label", $this->content)) |
|
| 55 | - return $this->content["label"]; |
|
| 55 | + if (\array_key_exists("label", $this->content)) { |
|
| 56 | + return $this->content["label"]; |
|
| 57 | + } |
|
| 56 | 58 | } |
| 57 | 59 | |
| 58 | 60 | /** |
@@ -127,8 +129,9 @@ discard block |
||
| 127 | 129 | } |
| 128 | 130 | |
| 129 | 131 | public function run(JsUtils $js) { |
| 130 | - if(!isset($this->_bsComponent)) |
|
| 131 | - $this->_bsComponent=$js->semantic()->checkbox("#" . $this->identifier, $this->_params); |
|
| 132 | + if(!isset($this->_bsComponent)) { |
|
| 133 | + $this->_bsComponent=$js->semantic()->checkbox("#" . $this->identifier, $this->_params); |
|
| 134 | + } |
|
| 132 | 135 | return parent::run($js); |
| 133 | 136 | } |
| 134 | 137 | } |
| 135 | 138 | \ No newline at end of file |
@@ -60,9 +60,9 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | private function afterInsert($item) { |
| 63 | - if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) |
|
| 64 | - $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
| 65 | - else { |
|
| 63 | + if (!$item instanceof HtmlMenu && $item->propertyContains("class", "header")===false) { |
|
| 64 | + $item->addToPropertyCtrl("class", "item", array ("item" )); |
|
| 65 | + } else { |
|
| 66 | 66 | $this->setSecondary(); |
| 67 | 67 | } |
| 68 | 68 | return $item; |
@@ -77,8 +77,9 @@ discard block |
||
| 77 | 77 | public function addItem($item) { |
| 78 | 78 | $number=$item; |
| 79 | 79 | $item=parent::addItem($this->getItemToInsert($item)); |
| 80 | - if(\is_int($number)) |
|
| 81 | - $item->setProperty("data-page", $number); |
|
| 80 | + if(\is_int($number)) { |
|
| 81 | + $item->setProperty("data-page", $number); |
|
| 82 | + } |
|
| 82 | 83 | return $this->afterInsert($item); |
| 83 | 84 | } |
| 84 | 85 | |
@@ -151,10 +152,11 @@ discard block |
||
| 151 | 152 | } |
| 152 | 153 | |
| 153 | 154 | public function setSecondary($value=true) { |
| 154 | - if($value) |
|
| 155 | - $this->addToProperty("class", "secondary"); |
|
| 156 | - else |
|
| 157 | - $this->removePropertyValue("class", "secondary"); |
|
| 155 | + if($value) { |
|
| 156 | + $this->addToProperty("class", "secondary"); |
|
| 157 | + } else { |
|
| 158 | + $this->removePropertyValue("class", "secondary"); |
|
| 159 | + } |
|
| 158 | 160 | return $this; |
| 159 | 161 | } |
| 160 | 162 | |
@@ -174,8 +176,9 @@ discard block |
||
| 174 | 176 | $this->apply(function (HtmlDoubleElement &$item) { |
| 175 | 177 | $item->setTagName("a"); |
| 176 | 178 | }); |
| 177 | - if ($vertical === true) |
|
| 178 | - $this->setVertical(); |
|
| 179 | + if ($vertical === true) { |
|
| 180 | + $this->setVertical(); |
|
| 181 | + } |
|
| 179 | 182 | return $this->addToProperty("class", "tabular"); |
| 180 | 183 | } |
| 181 | 184 | |
@@ -204,10 +207,11 @@ discard block |
||
| 204 | 207 | */ |
| 205 | 208 | public function fromDatabaseObject($object, $function) { |
| 206 | 209 | $return=$function($object); |
| 207 | - if (\is_array($return)) |
|
| 208 | - $this->addItems($return); |
|
| 209 | - else |
|
| 210 | - $this->addItem($return); |
|
| 210 | + if (\is_array($return)) { |
|
| 211 | + $this->addItems($return); |
|
| 212 | + } else { |
|
| 213 | + $this->addItem($return); |
|
| 214 | + } |
|
| 211 | 215 | } |
| 212 | 216 | |
| 213 | 217 | /** |
@@ -240,8 +244,9 @@ discard block |
||
| 240 | 244 | } |
| 241 | 245 | |
| 242 | 246 | public function run(JsUtils $js){ |
| 243 | - if($this->identifier!=="" && !isset($this->_bsComponent)) |
|
| 244 | - $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
| 247 | + if($this->identifier!=="" && !isset($this->_bsComponent)) { |
|
| 248 | + $this->onClick('if(!$(this).hasClass("dropdown")&&!$(this).hasClass("no-active")){$(this).addClass("active").siblings().removeClass("active");}',false,false); |
|
| 249 | + } |
|
| 245 | 250 | $result= parent::run($js); |
| 246 | 251 | return $result->setItemSelector(".item"); |
| 247 | 252 | } |
@@ -23,8 +23,9 @@ discard block |
||
| 23 | 23 | $this->widgetIdentifier=$identifier; |
| 24 | 24 | $this->values=[]; |
| 25 | 25 | $this->afterCompile=[]; |
| 26 | - if(isset($instance)) |
|
| 27 | - $this->setInstance($instance); |
|
| 26 | + if(isset($instance)) { |
|
| 27 | + $this->setInstance($instance); |
|
| 28 | + } |
|
| 28 | 29 | $this->setCaptions($captions); |
| 29 | 30 | $this->captionCallback=NULL; |
| 30 | 31 | $this->defaultValueFunction=function($name,$value){return $value;}; |
@@ -62,14 +63,16 @@ discard block |
||
| 62 | 63 | } |
| 63 | 64 | |
| 64 | 65 | public function getIdentifier($index=NULL){ |
| 65 | - if(!isset($index)) |
|
| 66 | - $index=self::$index; |
|
| 66 | + if(!isset($index)) { |
|
| 67 | + $index=self::$index; |
|
| 68 | + } |
|
| 67 | 69 | $value=$index; |
| 68 | 70 | if(isset($this->values["identifier"])){ |
| 69 | - if(\is_string($this->values["identifier"])) |
|
| 70 | - $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
|
| 71 | - else |
|
| 72 | - $value=$this->values["identifier"]($index,$this->instance); |
|
| 71 | + if(\is_string($this->values["identifier"])) { |
|
| 72 | + $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
|
| 73 | + } else { |
|
| 74 | + $value=$this->values["identifier"]($index,$this->instance); |
|
| 75 | + } |
|
| 73 | 76 | } |
| 74 | 77 | return $value; |
| 75 | 78 | } |
@@ -99,16 +102,16 @@ discard block |
||
| 99 | 102 | if($property instanceof \ReflectionProperty){ |
| 100 | 103 | $value=$this->_getPropertyValue($property, $index); |
| 101 | 104 | $propertyName=$property->getName(); |
| 102 | - }elseif(\is_callable($property)) |
|
| 103 | - $value=$property($this->instance); |
|
| 104 | - elseif(\is_array($property)){ |
|
| 105 | + } elseif(\is_callable($property)) { |
|
| 106 | + $value=$property($this->instance); |
|
| 107 | + } elseif(\is_array($property)){ |
|
| 105 | 108 | $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property); |
| 106 | 109 | $value=\implode("", $values); |
| 107 | - }elseif(\is_string($property)){ |
|
| 110 | + } elseif(\is_string($property)){ |
|
| 108 | 111 | $value=$property; |
| 109 | 112 | if(isset($this->instance->{$property})){ |
| 110 | 113 | $value=$this->instance->{$property}; |
| 111 | - }elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
| 114 | + } elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
| 112 | 115 | $value=JReflection::callMethod($this->instance, $getter, []); |
| 113 | 116 | } |
| 114 | 117 | } |
@@ -118,7 +121,7 @@ discard block |
||
| 118 | 121 | protected function _postGetValue($index,$propertyName,$value){ |
| 119 | 122 | if(isset($this->values[$index])){ |
| 120 | 123 | $value= $this->values[$index]($value,$this->instance,$index); |
| 121 | - }else{ |
|
| 124 | + } else{ |
|
| 122 | 125 | $value=$this->_getDefaultValue($propertyName,$value, $index); |
| 123 | 126 | } |
| 124 | 127 | if(isset($this->afterCompile[$index])){ |
@@ -139,10 +142,10 @@ discard block |
||
| 139 | 142 | if(isset($vb[$index])){ |
| 140 | 143 | if(\is_array($vb[$index])){ |
| 141 | 144 | $this->visibleProperties[$index][]=$field; |
| 142 | - }else{ |
|
| 145 | + } else{ |
|
| 143 | 146 | $this->visibleProperties[$index]=[$vb[$index],$field]; |
| 144 | 147 | } |
| 145 | - }else{ |
|
| 148 | + } else{ |
|
| 146 | 149 | return $this->insertField($index, $field); |
| 147 | 150 | } |
| 148 | 151 | return $this; |
@@ -169,9 +172,9 @@ discard block |
||
| 169 | 172 | $property=$this->getProperty($index); |
| 170 | 173 | if($property instanceof \ReflectionProperty){ |
| 171 | 174 | $result=$property->getName(); |
| 172 | - }elseif(\is_callable($property)){ |
|
| 175 | + } elseif(\is_callable($property)){ |
|
| 173 | 176 | $result=$this->visibleProperties[$index]; |
| 174 | - }else{ |
|
| 177 | + } else{ |
|
| 175 | 178 | $result=$property; |
| 176 | 179 | } |
| 177 | 180 | return $result; |
@@ -191,7 +194,7 @@ discard block |
||
| 191 | 194 | $this->reflect=new \ReflectionClass($instance); |
| 192 | 195 | if(\sizeof($this->visibleProperties)===0){ |
| 193 | 196 | $this->properties=$this->getDefaultProperties(); |
| 194 | - }else{ |
|
| 197 | + } else{ |
|
| 195 | 198 | foreach ($this->visibleProperties as $property){ |
| 196 | 199 | $this->setInstanceProperty($property); |
| 197 | 200 | } |
@@ -202,22 +205,23 @@ discard block |
||
| 202 | 205 | private function setInstanceProperty($property){ |
| 203 | 206 | if(\is_callable($property)){ |
| 204 | 207 | $this->properties[]=$property; |
| 205 | - }elseif(\is_string($property)){ |
|
| 208 | + } elseif(\is_string($property)){ |
|
| 206 | 209 | try{ |
| 207 | 210 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 208 | 211 | $rProperty=$this->reflect->getProperty($property); |
| 209 | 212 | $this->properties[]=$rProperty; |
| 210 | - }catch(\Exception $e){ |
|
| 213 | + } catch(\Exception $e){ |
|
| 211 | 214 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 212 | 215 | $this->properties[]=$property; |
| 213 | 216 | } |
| 214 | - }elseif(\is_int($property)){ |
|
| 217 | + } elseif(\is_int($property)){ |
|
| 215 | 218 | $props=$this->getDefaultProperties(); |
| 216 | - if(isset($props[$property])) |
|
| 217 | - $this->properties[]=$props[$property]; |
|
| 218 | - else |
|
| 219 | - $this->properties[]=$property; |
|
| 220 | - }else{ |
|
| 219 | + if(isset($props[$property])) { |
|
| 220 | + $this->properties[]=$props[$property]; |
|
| 221 | + } else { |
|
| 222 | + $this->properties[]=$property; |
|
| 223 | + } |
|
| 224 | + } else{ |
|
| 221 | 225 | $this->properties[]=$property; |
| 222 | 226 | } |
| 223 | 227 | } |
@@ -261,12 +265,13 @@ discard block |
||
| 261 | 265 | if(isset($this->captions[$index])){ |
| 262 | 266 | return $this->captions[$index]; |
| 263 | 267 | } |
| 264 | - if($this->properties[$index] instanceof \ReflectionProperty) |
|
| 265 | - return $this->properties[$index]->getName(); |
|
| 266 | - elseif(\is_callable($this->properties[$index])) |
|
| 267 | - return ""; |
|
| 268 | - else |
|
| 269 | - return $this->properties[$index]; |
|
| 268 | + if($this->properties[$index] instanceof \ReflectionProperty) { |
|
| 269 | + return $this->properties[$index]->getName(); |
|
| 270 | + } elseif(\is_callable($this->properties[$index])) { |
|
| 271 | + return ""; |
|
| 272 | + } else { |
|
| 273 | + return $this->properties[$index]; |
|
| 274 | + } |
|
| 270 | 275 | } |
| 271 | 276 | |
| 272 | 277 | public function getCaptions(){ |
@@ -275,7 +280,7 @@ discard block |
||
| 275 | 280 | for($i=\sizeof($captions);$i<$this->count();$i++){ |
| 276 | 281 | $captions[]=""; |
| 277 | 282 | } |
| 278 | - }else{ |
|
| 283 | + } else{ |
|
| 279 | 284 | $captions=[]; |
| 280 | 285 | $index=0; |
| 281 | 286 | $count=$this->count(); |
@@ -291,8 +296,9 @@ discard block |
||
| 291 | 296 | } |
| 292 | 297 | |
| 293 | 298 | public function setCaption($index,$caption){ |
| 294 | - if(isset($this->captions)===false) |
|
| 295 | - $this->captions=[]; |
|
| 299 | + if(isset($this->captions)===false) { |
|
| 300 | + $this->captions=[]; |
|
| 301 | + } |
|
| 296 | 302 | $this->captions[$index]=$caption; |
| 297 | 303 | return $this; |
| 298 | 304 | } |
@@ -64,8 +64,7 @@ discard block |
||
| 64 | 64 | $rules=$attributes["rules"]; |
| 65 | 65 | if(\is_array($rules)){ |
| 66 | 66 | $element->addRules($rules); |
| 67 | - } |
|
| 68 | - else{ |
|
| 67 | + } else{ |
|
| 69 | 68 | $element->addRule($rules); |
| 70 | 69 | } |
| 71 | 70 | unset($attributes["rules"]); |
@@ -117,8 +116,9 @@ discard block |
||
| 117 | 116 | public function fieldAsLabel($index,$icon=NULL,$attributes=NULL){ |
| 118 | 117 | return $this->_fieldAs(function($id,$name,$value) use($icon){ |
| 119 | 118 | $lbl=new HtmlLabel($id,$value); |
| 120 | - if(isset($icon)) |
|
| 121 | - $lbl->addIcon($icon); |
|
| 119 | + if(isset($icon)) { |
|
| 120 | + $lbl->addIcon($icon); |
|
| 121 | + } |
|
| 122 | 122 | return $lbl; |
| 123 | 123 | }, $index,$attributes,"label"); |
| 124 | 124 | } |
@@ -126,8 +126,9 @@ discard block |
||
| 126 | 126 | public function fieldAsHeader($index,$niveau=1,$icon=NULL,$attributes=NULL){ |
| 127 | 127 | return $this->_fieldAs(function($id,$name,$value) use($niveau,$icon){ |
| 128 | 128 | $header=new HtmlHeader($id,$niveau,$value); |
| 129 | - if(isset($icon)) |
|
| 130 | - $header->asIcon($icon, $value); |
|
| 129 | + if(isset($icon)) { |
|
| 130 | + $header->asIcon($icon, $value); |
|
| 131 | + } |
|
| 131 | 132 | return $header; |
| 132 | 133 | }, $index,$attributes,"header"); |
| 133 | 134 | } |
@@ -135,7 +136,9 @@ discard block |
||
| 135 | 136 | |
| 136 | 137 | public function fieldAsImage($index,$size=Size::MINI,$circular=false){ |
| 137 | 138 | $this->setValueFunction($index,function($img) use($size,$circular){ |
| 138 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
| 139 | + $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular) { |
|
| 140 | + $image->setCircular(); |
|
| 141 | + } |
|
| 139 | 142 | return $image; |
| 140 | 143 | }); |
| 141 | 144 | return $this; |
@@ -230,14 +233,14 @@ discard block |
||
| 230 | 233 | $i=0; |
| 231 | 234 | if(JArray::isAssociative($types)){ |
| 232 | 235 | foreach ($types as $type=>$attributes){ |
| 233 | - if(\is_int($type)) |
|
| 234 | - $this->fieldAs($i++,$attributes,[]); |
|
| 235 | - else{ |
|
| 236 | + if(\is_int($type)) { |
|
| 237 | + $this->fieldAs($i++,$attributes,[]); |
|
| 238 | + } else{ |
|
| 236 | 239 | $type=preg_replace('/\d/', '', $type ); |
| 237 | 240 | $this->fieldAs($i++,$type,$attributes); |
| 238 | 241 | } |
| 239 | 242 | } |
| 240 | - }else{ |
|
| 243 | + } else{ |
|
| 241 | 244 | foreach ($types as $type){ |
| 242 | 245 | $this->fieldAs($i++,$type); |
| 243 | 246 | } |
@@ -249,7 +252,7 @@ discard block |
||
| 249 | 252 | if(\method_exists($this, $method)){ |
| 250 | 253 | if(!\is_array($attributes)){ |
| 251 | 254 | $attributes=[$index]; |
| 252 | - }else{ |
|
| 255 | + } else{ |
|
| 253 | 256 | \array_unshift($attributes, $index); |
| 254 | 257 | } |
| 255 | 258 | \call_user_func_array([$this,$method], $attributes); |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | foreach ($ajaxSubmit as $ajaxSubmitItem){ |
| 49 | 49 | $compilation.=$ajaxSubmitItem->compile($js); |
| 50 | 50 | } |
| 51 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
| 51 | + } elseif($ajaxSubmit instanceof AjaxCall){ |
|
| 52 | 52 | $compilation=$ajaxSubmit->compile($js); |
| 53 | 53 | } |
| 54 | 54 | $compilation=str_ireplace("\"","%quote%", $compilation); |
@@ -66,8 +66,9 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | public function setAttached($value=true){ |
| 68 | 68 | $form=$this->getForm(); |
| 69 | - if($value) |
|
| 70 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
| 69 | + if($value) { |
|
| 70 | + $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
| 71 | + } |
|
| 71 | 72 | return $form; |
| 72 | 73 | } |
| 73 | 74 | |
@@ -89,10 +90,11 @@ discard block |
||
| 89 | 90 | */ |
| 90 | 91 | public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
| 91 | 92 | $form=$this->getForm(); |
| 92 | - if($identifierOrElement instanceof BaseHtml) |
|
| 93 | - $elem=$identifierOrElement; |
|
| 94 | - else |
|
| 95 | - $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
|
| 93 | + if($identifierOrElement instanceof BaseHtml) { |
|
| 94 | + $elem=$identifierOrElement; |
|
| 95 | + } else { |
|
| 96 | + $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
|
| 97 | + } |
|
| 96 | 98 | if(isset($elem)){ |
| 97 | 99 | $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
| 98 | 100 | } |
@@ -120,8 +122,9 @@ discard block |
||
| 120 | 122 | public function setSubmitParams($url,$responseElement=NULL,$parameters=NULL){ |
| 121 | 123 | $form=$this->getForm(); |
| 122 | 124 | $params=["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url,"stopPropagation"=>true]; |
| 123 | - if(\is_array($parameters)) |
|
| 124 | - $params=\array_merge($params,$parameters); |
|
| 125 | + if(\is_array($parameters)) { |
|
| 126 | + $params=\array_merge($params,$parameters); |
|
| 127 | + } |
|
| 125 | 128 | $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", $params)); |
| 126 | 129 | return $this; |
| 127 | 130 | } |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | } |
| 102 | 102 | if(!$item instanceof HtmlDropdownItem){ |
| 103 | 103 | $itemO=new HtmlDropdownItem("dd-item-".$this->identifier."-".\sizeof($this->items),$item,$value,$image,$description); |
| 104 | - }elseif($itemO instanceof HtmlDropdownItem){ |
|
| 104 | + } elseif($itemO instanceof HtmlDropdownItem){ |
|
| 105 | 105 | $this->addToProperty("class", "vertical"); |
| 106 | 106 | } |
| 107 | 107 | return $itemO; |
@@ -115,8 +115,9 @@ discard block |
||
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | public function addInput($name){ |
| 118 | - if(!isset($name)) |
|
| 119 | - $name="input-".$this->identifier; |
|
| 118 | + if(!isset($name)) { |
|
| 119 | + $name="input-".$this->identifier; |
|
| 120 | + } |
|
| 120 | 121 | $this->setAction("activate"); |
| 121 | 122 | $this->input=new HtmlInput($name,"hidden"); |
| 122 | 123 | } |
@@ -173,7 +174,7 @@ discard block |
||
| 173 | 174 | foreach ($items as $k=>$v){ |
| 174 | 175 | $this->addItem($v)->setData($k); |
| 175 | 176 | } |
| 176 | - }else{ |
|
| 177 | + } else{ |
|
| 177 | 178 | foreach ($items as $item){ |
| 178 | 179 | $this->addItem($item); |
| 179 | 180 | } |
@@ -197,7 +198,7 @@ discard block |
||
| 197 | 198 | if($dropdown===false){ |
| 198 | 199 | $this->_template=include dirname(__FILE__).'/../templates/tplDropdownMenu.php'; |
| 199 | 200 | $dropdown="menu"; |
| 200 | - }else{ |
|
| 201 | + } else{ |
|
| 201 | 202 | $dropdown="dropdown"; |
| 202 | 203 | $this->mClass="menu"; |
| 203 | 204 | } |
@@ -218,20 +219,24 @@ discard block |
||
| 218 | 219 | |
| 219 | 220 | public function asButton($floating=false){ |
| 220 | 221 | $this->removeArrow(); |
| 221 | - if($floating) |
|
| 222 | - $this->addToProperty("class", "floating"); |
|
| 222 | + if($floating) { |
|
| 223 | + $this->addToProperty("class", "floating"); |
|
| 224 | + } |
|
| 223 | 225 | $this->removePropertyValue("class", "selection"); |
| 224 | 226 | return $this->addToProperty("class", "button"); |
| 225 | 227 | } |
| 226 | 228 | |
| 227 | 229 | public function asSelect($name=NULL,$multiple=false,$selection=true){ |
| 228 | - if(isset($name)) |
|
| 229 | - $this->addInput($name); |
|
| 230 | - if($multiple) |
|
| 231 | - $this->addToProperty("class", "multiple"); |
|
| 230 | + if(isset($name)) { |
|
| 231 | + $this->addInput($name); |
|
| 232 | + } |
|
| 233 | + if($multiple) { |
|
| 234 | + $this->addToProperty("class", "multiple"); |
|
| 235 | + } |
|
| 232 | 236 | if ($selection){ |
| 233 | - if($this->propertyContains("class", "button")===false) |
|
| 234 | - $this->addToPropertyCtrl("class", "selection",array("selection")); |
|
| 237 | + if($this->propertyContains("class", "button")===false) { |
|
| 238 | + $this->addToPropertyCtrl("class", "selection",array("selection")); |
|
| 239 | + } |
|
| 235 | 240 | } |
| 236 | 241 | return $this; |
| 237 | 242 | } |
@@ -242,8 +247,9 @@ discard block |
||
| 242 | 247 | } |
| 243 | 248 | |
| 244 | 249 | public function setSelect($name=NULL,$multiple=false){ |
| 245 | - if(!isset($name)) |
|
| 246 | - $name="select-".$this->identifier; |
|
| 250 | + if(!isset($name)) { |
|
| 251 | + $name="select-".$this->identifier; |
|
| 252 | + } |
|
| 247 | 253 | $this->input=null; |
| 248 | 254 | if($multiple){ |
| 249 | 255 | $this->setProperty("multiple", true); |
@@ -279,12 +285,13 @@ discard block |
||
| 279 | 285 | $value=$this->value; |
| 280 | 286 | if(isset($this->input) && isset($value)){ |
| 281 | 287 | $this->input->setProperty("value", $value); |
| 282 | - }else{ |
|
| 288 | + } else{ |
|
| 283 | 289 | $this->setProperty("value", $value); |
| 284 | 290 | } |
| 285 | 291 | $textElement=$this->getElementById("text-".$this->identifier, $this->content); |
| 286 | - if(isset($textElement)) |
|
| 287 | - $textElement->setContent($value); |
|
| 292 | + if(isset($textElement)) { |
|
| 293 | + $textElement->setContent($value); |
|
| 294 | + } |
|
| 288 | 295 | return $this; |
| 289 | 296 | } |
| 290 | 297 | |
@@ -17,8 +17,9 @@ discard block |
||
| 17 | 17 | protected $_dropdown; |
| 18 | 18 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
| 19 | 19 | parent::__construct($identifier, "div", "ui buttons"); |
| 20 | - if ($asIcons === true) |
|
| 21 | - $this->asIcons(); |
|
| 20 | + if ($asIcons === true) { |
|
| 21 | + $this->asIcons(); |
|
| 22 | + } |
|
| 22 | 23 | $this->addElements($elements, $asIcons); |
| 23 | 24 | } |
| 24 | 25 | protected function createItem($value){ |
@@ -39,8 +40,9 @@ discard block |
||
| 39 | 40 | |
| 40 | 41 | public function addElement($element, $asIcon=false) { |
| 41 | 42 | $item=$this->addItem($element); |
| 42 | - if($asIcon) |
|
| 43 | - $item->asIcon($element); |
|
| 43 | + if($asIcon) { |
|
| 44 | + $item->asIcon($element); |
|
| 45 | + } |
|
| 44 | 46 | return $item; |
| 45 | 47 | } |
| 46 | 48 | |
@@ -68,8 +70,9 @@ discard block |
||
| 68 | 70 | |
| 69 | 71 | public function asIcons() { |
| 70 | 72 | foreach ( $this->content as $item ) { |
| 71 | - if($item instanceof HtmlButton) |
|
| 72 | - $item->asIcon($item->getContent()); |
|
| 73 | + if($item instanceof HtmlButton) { |
|
| 74 | + $item->asIcon($item->getContent()); |
|
| 75 | + } |
|
| 73 | 76 | } |
| 74 | 77 | return $this->addToProperty("class", "icons"); |
| 75 | 78 | } |
@@ -330,8 +330,9 @@ discard block |
||
| 330 | 330 | $result= $this->getBody()->_addRow($result); |
| 331 | 331 | } |
| 332 | 332 | if(isset($this->_afterCompileEvents["onNewRow"])){ |
| 333 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
| 334 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
| 333 | + if(\is_callable($this->_afterCompileEvents["onNewRow"])) { |
|
| 334 | + $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
| 335 | + } |
|
| 335 | 336 | } |
| 336 | 337 | return $result; |
| 337 | 338 | } |
@@ -353,8 +354,9 @@ discard block |
||
| 353 | 354 | |
| 354 | 355 | public function run(JsUtils $js){ |
| 355 | 356 | $result= parent::run($js); |
| 356 | - if(isset($this->_footer)) |
|
| 357 | - $this->_footer->run($js); |
|
| 357 | + if(isset($this->_footer)) { |
|
| 358 | + $this->_footer->run($js); |
|
| 359 | + } |
|
| 358 | 360 | return $result; |
| 359 | 361 | } |
| 360 | 362 | |
@@ -394,8 +396,9 @@ discard block |
||
| 394 | 396 | |
| 395 | 397 | public function setColWidth($colIndex,$width){ |
| 396 | 398 | $part=$this->_getFirstPart(); |
| 397 | - if($part!==null && $part->count()>0) |
|
| 398 | - $part->getCell(0, $colIndex)->setWidth($width); |
|
| 399 | + if($part!==null && $part->count()>0) { |
|
| 400 | + $part->getCell(0, $colIndex)->setWidth($width); |
|
| 401 | + } |
|
| 399 | 402 | return $this; |
| 400 | 403 | } |
| 401 | 404 | |