@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * @return mixed |
| 38 | 38 | */ |
| 39 | 39 | public function getLibraryId() { |
| 40 | - if( isset($this->_libraryId)){ |
|
| 40 | + if (isset($this->_libraryId)) { |
|
| 41 | 41 | return $this->_libraryId; |
| 42 | 42 | } |
| 43 | 43 | return $this->identifier; |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * @param mixed $_libraryId |
| 48 | 48 | */ |
| 49 | 49 | public function setLibraryId($_libraryId) { |
| 50 | - $this->_libraryId = $_libraryId; |
|
| 50 | + $this->_libraryId=$_libraryId; |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | } |
@@ -15,11 +15,11 @@ discard block |
||
| 15 | 15 | * @version 1.3 |
| 16 | 16 | */ |
| 17 | 17 | abstract class BaseHtml extends BaseWidget { |
| 18 | - use BaseHtmlEventsTrait,BaseHtmlPropertiesTrait; |
|
| 18 | + use BaseHtmlEventsTrait, BaseHtmlPropertiesTrait; |
|
| 19 | 19 | protected $_template; |
| 20 | 20 | protected $tagName; |
| 21 | - protected $_wrapBefore=array (); |
|
| 22 | - protected $_wrapAfter=array (); |
|
| 21 | + protected $_wrapBefore=array(); |
|
| 22 | + protected $_wrapAfter=array(); |
|
| 23 | 23 | protected $_bsComponent; |
| 24 | 24 | protected $_compiled=false; |
| 25 | 25 | protected $_runned=false; |
@@ -33,32 +33,32 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | abstract public function run(JsUtils $js); |
| 35 | 35 | |
| 36 | - private function _callSetter($setter,$key,$value,&$array){ |
|
| 36 | + private function _callSetter($setter, $key, $value, &$array) { |
|
| 37 | 37 | $result=false; |
| 38 | - if (method_exists($this, $setter) && substr($setter, 0, 1) !== "_") { |
|
| 38 | + if (method_exists($this, $setter) && substr($setter, 0, 1)!=="_") { |
|
| 39 | 39 | try { |
| 40 | 40 | $this->$setter($value); |
| 41 | 41 | unset($array[$key]); |
| 42 | 42 | $result=true; |
| 43 | - } catch ( \Exception $e ) { |
|
| 43 | + }catch (\Exception $e) { |
|
| 44 | 44 | $result=false; |
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | 47 | return $result; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - protected function getTemplate(JsUtils $js=NULL,$view=null) { |
|
| 51 | - return PropertyWrapper::wrap($this->_wrapBefore, $js,$view) . $this->_template . PropertyWrapper::wrap($this->_wrapAfter, $js,$view); |
|
| 50 | + protected function getTemplate(JsUtils $js=NULL, $view=null) { |
|
| 51 | + return PropertyWrapper::wrap($this->_wrapBefore, $js, $view).$this->_template.PropertyWrapper::wrap($this->_wrapAfter, $js, $view); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | protected function ctrl($name, $value, $typeCtrl) { |
| 55 | 55 | if (\is_array($typeCtrl)) { |
| 56 | - if (array_search($value, $typeCtrl) === false) { |
|
| 57 | - throw new \Exception("La valeur passée `" . $value . "` à la propriété `" . $name . "` ne fait pas partie des valeurs possibles : {" . implode(",", $typeCtrl) . "}"); |
|
| 56 | + if (array_search($value, $typeCtrl)===false) { |
|
| 57 | + throw new \Exception("La valeur passée `".$value."` à la propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
| 58 | 58 | } |
| 59 | 59 | } else { |
| 60 | 60 | if (!$typeCtrl($value)) { |
| 61 | - throw new \Exception("La fonction " . $typeCtrl . " a retourné faux pour l'affectation de la propriété " . $name); |
|
| 61 | + throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name); |
|
| 62 | 62 | } |
| 63 | 63 | } |
| 64 | 64 | return true; |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | protected function addToMemberUnique(&$name, $value, $typeCtrl, $separator=" ") { |
| 76 | 76 | if (\is_array($typeCtrl)) { |
| 77 | 77 | $this->removeOldValues($name, $typeCtrl); |
| 78 | - $name.=$separator . $value; |
|
| 78 | + $name.=$separator.$value; |
|
| 79 | 79 | } |
| 80 | 80 | return $this; |
| 81 | 81 | } |
@@ -87,12 +87,12 @@ discard block |
||
| 87 | 87 | if (\is_array($typeCtrl)) { |
| 88 | 88 | $this->removeOldValues($name, $typeCtrl); |
| 89 | 89 | } |
| 90 | - $name.=$separator . $value; |
|
| 90 | + $name.=$separator.$value; |
|
| 91 | 91 | return $this; |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | protected function addToMember(&$name, $value, $separator=" ") { |
| 95 | - $name=str_ireplace($value, "", $name) . $separator . $value; |
|
| 95 | + $name=str_ireplace($value, "", $name).$separator.$value; |
|
| 96 | 96 | return $this; |
| 97 | 97 | } |
| 98 | 98 | |
@@ -103,18 +103,18 @@ discard block |
||
| 103 | 103 | $oldValue=trim($oldValue); |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - protected function _getElementBy($callback,$elements){ |
|
| 106 | + protected function _getElementBy($callback, $elements) { |
|
| 107 | 107 | if (\is_array($elements)) { |
| 108 | 108 | $elements=\array_values($elements); |
| 109 | 109 | $flag=false; |
| 110 | 110 | $index=0; |
| 111 | - while ( !$flag && $index < sizeof($elements) ) { |
|
| 111 | + while (!$flag && $index<sizeof($elements)) { |
|
| 112 | 112 | if ($elements[$index] instanceof BaseHtml) |
| 113 | 113 | $flag=($callback($elements[$index])); |
| 114 | 114 | $index++; |
| 115 | 115 | } |
| 116 | - if ($flag === true) |
|
| 117 | - return $elements[$index - 1]; |
|
| 116 | + if ($flag===true) |
|
| 117 | + return $elements[$index-1]; |
|
| 118 | 118 | } elseif ($elements instanceof BaseHtml) { |
| 119 | 119 | if ($callback($elements)) |
| 120 | 120 | return $elements; |
@@ -142,13 +142,13 @@ discard block |
||
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | public function fromArray($array) { |
| 145 | - foreach ( $this as $key => $value ) { |
|
| 146 | - if(array_key_exists($key, $array)===true) |
|
| 147 | - $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 145 | + foreach ($this as $key => $value) { |
|
| 146 | + if (array_key_exists($key, $array)===true) |
|
| 147 | + $this->_callSetter("set".ucfirst($key), $key, $array[$key], $array); |
|
| 148 | 148 | } |
| 149 | - foreach ( $array as $key => $value ) { |
|
| 150 | - if($this->_callSetter($key, $key, $value, $array)===false){ |
|
| 151 | - $this->_callSetter("set" . ucfirst($key), $key, $value, $array); |
|
| 149 | + foreach ($array as $key => $value) { |
|
| 150 | + if ($this->_callSetter($key, $key, $value, $array)===false) { |
|
| 151 | + $this->_callSetter("set".ucfirst($key), $key, $value, $array); |
|
| 152 | 152 | } |
| 153 | 153 | } |
| 154 | 154 | return $array; |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | |
| 157 | 157 | public function fromDatabaseObjects($objects, $function) { |
| 158 | 158 | if (isset($objects)) { |
| 159 | - foreach ( $objects as $object ) { |
|
| 159 | + foreach ($objects as $object) { |
|
| 160 | 160 | $this->fromDatabaseObject($object, $function); |
| 161 | 161 | } |
| 162 | 162 | } |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | |
| 178 | 178 | |
| 179 | 179 | public function getElementById($identifier, $elements) { |
| 180 | - return $this->_getElementBy(function(BaseWidget $element) use ($identifier){return $element->getIdentifier()===$identifier;}, $elements); |
|
| 180 | + return $this->_getElementBy(function(BaseWidget $element) use ($identifier){return $element->getIdentifier()===$identifier; }, $elements); |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | public function getBsComponent() { |
@@ -190,11 +190,11 @@ discard block |
||
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | protected function compile_once(JsUtils $js=NULL, &$view=NULL) { |
| 193 | - if(!$this->_compiled){ |
|
| 194 | - if(isset($js)){ |
|
| 193 | + if (!$this->_compiled) { |
|
| 194 | + if (isset($js)) { |
|
| 195 | 195 | $beforeCompile=$js->getParam("beforeCompileHtml"); |
| 196 | - if(\is_callable($beforeCompile)){ |
|
| 197 | - $beforeCompile($this,$js,$view); |
|
| 196 | + if (\is_callable($beforeCompile)) { |
|
| 197 | + $beforeCompile($this, $js, $view); |
|
| 198 | 198 | } |
| 199 | 199 | } |
| 200 | 200 | $this->callCallback($this->_preCompile); |
@@ -204,17 +204,17 @@ discard block |
||
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 207 | - $this->compile_once($js,$view); |
|
| 208 | - $result=$this->getTemplate($js,$view); |
|
| 209 | - foreach ( $this as $key => $value ) { |
|
| 210 | - if(\strstr($result, "%{$key}%")!==false){ |
|
| 207 | + $this->compile_once($js, $view); |
|
| 208 | + $result=$this->getTemplate($js, $view); |
|
| 209 | + foreach ($this as $key => $value) { |
|
| 210 | + if (\strstr($result, "%{$key}%")!==false) { |
|
| 211 | 211 | if (\is_array($value)) { |
| 212 | - $v=PropertyWrapper::wrap($value, $js,$view); |
|
| 213 | - }elseif($value instanceof \stdClass){ |
|
| 214 | - $v=\print_r($value,true); |
|
| 215 | - }elseif ($value instanceof BaseHtml){ |
|
| 216 | - $v=$value->compile($js,$view); |
|
| 217 | - }else{ |
|
| 212 | + $v=PropertyWrapper::wrap($value, $js, $view); |
|
| 213 | + }elseif ($value instanceof \stdClass) { |
|
| 214 | + $v=\print_r($value, true); |
|
| 215 | + }elseif ($value instanceof BaseHtml) { |
|
| 216 | + $v=$value->compile($js, $view); |
|
| 217 | + } else { |
|
| 218 | 218 | $v=$value; |
| 219 | 219 | } |
| 220 | 220 | $result=str_replace("%{$key}%", $v, $result); |
@@ -222,12 +222,12 @@ discard block |
||
| 222 | 222 | } |
| 223 | 223 | if (isset($js)===true) { |
| 224 | 224 | $this->run($js); |
| 225 | - if (isset($view) === true) { |
|
| 225 | + if (isset($view)===true) { |
|
| 226 | 226 | $js->addViewElement($this->getLibraryId(), $result, $view); |
| 227 | 227 | } |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | - if(\is_callable($this->_postCompile)){ |
|
| 230 | + if (\is_callable($this->_postCompile)) { |
|
| 231 | 231 | $pc=$this->_postCompile; |
| 232 | 232 | $pc($this); |
| 233 | 233 | } |
@@ -241,13 +241,13 @@ discard block |
||
| 241 | 241 | * @param array $parameters default: ["jsCallback"=>"","jqueryDone"=>"append"] |
| 242 | 242 | * @return \Ajax\common\html\BaseHtml |
| 243 | 243 | */ |
| 244 | - public function setDraggable($attr="id",$dropZone=null,$parameters=[]){ |
|
| 244 | + public function setDraggable($attr="id", $dropZone=null, $parameters=[]) { |
|
| 245 | 245 | $this->setProperty("draggable", "true"); |
| 246 | - $this->addEvent("dragstart",Javascript::draggable($attr)); |
|
| 247 | - if(isset($dropZone)&& $dropZone instanceof BaseHtml){ |
|
| 248 | - $jqueryDone="append";$jsCallback=""; |
|
| 246 | + $this->addEvent("dragstart", Javascript::draggable($attr)); |
|
| 247 | + if (isset($dropZone) && $dropZone instanceof BaseHtml) { |
|
| 248 | + $jqueryDone="append"; $jsCallback=""; |
|
| 249 | 249 | extract($parameters); |
| 250 | - $dropZone->asDropZone($jsCallback,$jqueryDone,$parameters); |
|
| 250 | + $dropZone->asDropZone($jsCallback, $jqueryDone, $parameters); |
|
| 251 | 251 | } |
| 252 | 252 | return $this; |
| 253 | 253 | } |
@@ -259,11 +259,11 @@ discard block |
||
| 259 | 259 | * @param array $parameters |
| 260 | 260 | * @return \Ajax\common\html\BaseHtml |
| 261 | 261 | */ |
| 262 | - public function asDropZone($jsCallback="",$jqueryDone="append",$parameters=[]){ |
|
| 262 | + public function asDropZone($jsCallback="", $jqueryDone="append", $parameters=[]) { |
|
| 263 | 263 | $stopPropagation=false; |
| 264 | - $this->addEvent("dragover", '', $stopPropagation,true); |
|
| 264 | + $this->addEvent("dragover", '', $stopPropagation, true); |
|
| 265 | 265 | extract($parameters); |
| 266 | - $this->addEvent("drop",Javascript::dropZone($jqueryDone,$jsCallback),$stopPropagation,true); |
|
| 266 | + $this->addEvent("drop", Javascript::dropZone($jqueryDone, $jsCallback), $stopPropagation, true); |
|
| 267 | 267 | return $this; |
| 268 | 268 | } |
| 269 | 269 | |
@@ -271,17 +271,17 @@ discard block |
||
| 271 | 271 | return $this->compile(); |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | - public function onPostCompile($callback){ |
|
| 274 | + public function onPostCompile($callback) { |
|
| 275 | 275 | $this->_postCompile=$callback; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - public function onPreCompile($callback){ |
|
| 278 | + public function onPreCompile($callback) { |
|
| 279 | 279 | $this->_preCompile=$this->addCallback($this->_preCompile, $callback); |
| 280 | 280 | } |
| 281 | 281 | |
| 282 | - private function addCallback($originalValue,$callback){ |
|
| 283 | - if(isset($originalValue)){ |
|
| 284 | - if(!is_array($originalValue)){ |
|
| 282 | + private function addCallback($originalValue, $callback) { |
|
| 283 | + if (isset($originalValue)) { |
|
| 284 | + if (!is_array($originalValue)) { |
|
| 285 | 285 | $result=[$originalValue]; |
| 286 | 286 | } |
| 287 | 287 | $result[]=$callback; |
@@ -290,12 +290,12 @@ discard block |
||
| 290 | 290 | return $callback; |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - private function callCallback($callable){ |
|
| 294 | - if(\is_callable($callable)){ |
|
| 293 | + private function callCallback($callable) { |
|
| 294 | + if (\is_callable($callable)) { |
|
| 295 | 295 | return $callable($this); |
| 296 | 296 | } |
| 297 | - if(is_array($callable)){ |
|
| 298 | - foreach ($callable as $call){ |
|
| 297 | + if (is_array($callable)) { |
|
| 298 | + foreach ($callable as $call) { |
|
| 299 | 299 | $this->callCallback($call); |
| 300 | 300 | } |
| 301 | 301 | } |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | class HtmlForm extends HtmlSemCollection { |
| 25 | 25 | |
| 26 | - use FieldsTrait,FormTrait; |
|
| 26 | + use FieldsTrait, FormTrait; |
|
| 27 | 27 | /** |
| 28 | 28 | * @var array |
| 29 | 29 | */ |
@@ -38,15 +38,15 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | public function __construct($identifier, $elements=array()) { |
| 40 | 40 | parent::__construct($identifier, "form", "ui form"); |
| 41 | - $this->_states=[ State::ERROR,State::SUCCESS,State::WARNING,State::DISABLED ]; |
|
| 41 | + $this->_states=[State::ERROR, State::SUCCESS, State::WARNING, State::DISABLED]; |
|
| 42 | 42 | $this->setProperty("name", $this->identifier); |
| 43 | - $this->_fields=array (); |
|
| 43 | + $this->_fields=array(); |
|
| 44 | 44 | $this->addItems($elements); |
| 45 | 45 | $this->_validationParams=[]; |
| 46 | 46 | $this->_extraFieldRules=[]; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - protected function getForm(){ |
|
| 49 | + protected function getForm() { |
|
| 50 | 50 | return $this; |
| 51 | 51 | } |
| 52 | 52 | |
@@ -68,8 +68,8 @@ discard block |
||
| 68 | 68 | * @param string $caption |
| 69 | 69 | * @return HtmlForm |
| 70 | 70 | */ |
| 71 | - public function addDivider($caption=NULL){ |
|
| 72 | - return $this->addContent(new HtmlDivider("",$caption)); |
|
| 71 | + public function addDivider($caption=NULL) { |
|
| 72 | + return $this->addContent(new HtmlDivider("", $caption)); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -91,13 +91,13 @@ discard block |
||
| 91 | 91 | $label=NULL; |
| 92 | 92 | } |
| 93 | 93 | $this->_fields=\array_merge($this->_fields, $fields); |
| 94 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields); |
|
| 94 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count(), $fields); |
|
| 95 | 95 | } |
| 96 | - if (isset($label)){ |
|
| 97 | - $fields->wrap("<div class='field'><label>{$label}</label>","</div>"); |
|
| 96 | + if (isset($label)) { |
|
| 97 | + $fields->wrap("<div class='field'><label>{$label}</label>", "</div>"); |
|
| 98 | 98 | } |
| 99 | 99 | } else { |
| 100 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count()); |
|
| 100 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count()); |
|
| 101 | 101 | } |
| 102 | 102 | $this->addItem($fields); |
| 103 | 103 | return $fields; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | public function addItem($item) { |
| 107 | 107 | $item=parent::addItem($item); |
| 108 | - if (\is_subclass_of($item, HtmlFormField::class) === true) { |
|
| 108 | + if (\is_subclass_of($item, HtmlFormField::class)===true) { |
|
| 109 | 109 | $this->_fields[]=$item; |
| 110 | 110 | } |
| 111 | 111 | return $item; |
@@ -163,49 +163,49 @@ discard block |
||
| 163 | 163 | |
| 164 | 164 | |
| 165 | 165 | |
| 166 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 167 | - if(\sizeof($this->_validationParams)>0) |
|
| 166 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 167 | + if (\sizeof($this->_validationParams)>0) |
|
| 168 | 168 | $this->setProperty("novalidate", ""); |
| 169 | - return parent::compile($js,$view); |
|
| 169 | + return parent::compile($js, $view); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | public function run(JsUtils $js) { |
| 173 | - if(isset($js)){ |
|
| 173 | + if (isset($js)) { |
|
| 174 | 174 | $compo=$js->semantic()->form("#".$this->identifier); |
| 175 | - }else{ |
|
| 175 | + } else { |
|
| 176 | 176 | $compo=new Form(); |
| 177 | 177 | $compo->attach("#".$this->identifier); |
| 178 | 178 | } |
| 179 | - foreach ($this->_fields as $field){ |
|
| 180 | - if($field instanceof HtmlFormField){ |
|
| 179 | + foreach ($this->_fields as $field) { |
|
| 180 | + if ($field instanceof HtmlFormField) { |
|
| 181 | 181 | $compo=$this->addCompoValidation($compo, $field); |
| 182 | 182 | } |
| 183 | 183 | } |
| 184 | - foreach ($this->content as $field){ |
|
| 185 | - if($field instanceof HtmlFormFields){ |
|
| 184 | + foreach ($this->content as $field) { |
|
| 185 | + if ($field instanceof HtmlFormFields) { |
|
| 186 | 186 | $items=$field->getItems(); |
| 187 | - foreach ($items as $_field){ |
|
| 188 | - if($_field instanceof HtmlFormField) |
|
| 187 | + foreach ($items as $_field) { |
|
| 188 | + if ($_field instanceof HtmlFormField) |
|
| 189 | 189 | $compo=$this->addCompoValidation($compo, $_field); |
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | } |
| 193 | - foreach ($this->_extraFieldRules as $field=>$fieldValidation){ |
|
| 193 | + foreach ($this->_extraFieldRules as $field=>$fieldValidation) { |
|
| 194 | 194 | $compo=$this->addExtraCompoValidation($compo, $fieldValidation); |
| 195 | 195 | } |
| 196 | - $this->_runValidationParams($compo,$js); |
|
| 196 | + $this->_runValidationParams($compo, $js); |
|
| 197 | 197 | return $this->_bsComponent; |
| 198 | 198 | } |
| 199 | 199 | |
| 200 | - public function getExtraFieldValidation($fieldname){ |
|
| 201 | - if(!isset($this->_extraFieldRules[$fieldname])){ |
|
| 200 | + public function getExtraFieldValidation($fieldname) { |
|
| 201 | + if (!isset($this->_extraFieldRules[$fieldname])) { |
|
| 202 | 202 | $this->_extraFieldRules[$fieldname]=new FieldValidation($fieldname); |
| 203 | 203 | } |
| 204 | 204 | return $this->_extraFieldRules[$fieldname]; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - public function addValidationParam($paramName,$paramValue,$before="",$after=""){ |
|
| 208 | - $this->addBehavior($this->_validationParams, $paramName, $paramValue,$before,$after); |
|
| 207 | + public function addValidationParam($paramName, $paramValue, $before="", $after="") { |
|
| 208 | + $this->addBehavior($this->_validationParams, $paramName, $paramValue, $before, $after); |
|
| 209 | 209 | return $this; |
| 210 | 210 | } |
| 211 | 211 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | return $this; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - public function hasValidationParams(){ |
|
| 217 | + public function hasValidationParams() { |
|
| 218 | 218 | return sizeof($this->_validationParams)>0; |
| 219 | 219 | } |
| 220 | 220 | |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | return $this->_validationParams; |
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - public function removeValidationParam($param){ |
|
| 225 | + public function removeValidationParam($param) { |
|
| 226 | 226 | unset($this->_validationParams[$param]); |
| 227 | 227 | return $this; |
| 228 | 228 | } |
@@ -32,23 +32,23 @@ discard block |
||
| 32 | 32 | * @property mixed $_modelInstance |
| 33 | 33 | * @property boolean $_hasRules |
| 34 | 34 | */ |
| 35 | -trait FieldAsTrait{ |
|
| 35 | +trait FieldAsTrait { |
|
| 36 | 36 | |
| 37 | - abstract protected function _getFieldIdentifier($prefix,$name=""); |
|
| 38 | - abstract public function setValueFunction($index,$callback); |
|
| 37 | + abstract protected function _getFieldIdentifier($prefix, $name=""); |
|
| 38 | + abstract public function setValueFunction($index, $callback); |
|
| 39 | 39 | abstract protected function _getFieldName($index); |
| 40 | 40 | abstract protected function _getFieldCaption($index); |
| 41 | - abstract protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL); |
|
| 41 | + abstract protected function _buttonAsSubmit(BaseHtml &$button, $event, $url, $responseElement=NULL, $parameters=NULL); |
|
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * @param HtmlFormField $element |
| 45 | 45 | * @param array $attributes |
| 46 | 46 | */ |
| 47 | - protected function _applyAttributes(BaseHtml $element,&$attributes,$index,$instance=null){ |
|
| 48 | - if(isset($attributes["jsCallback"])){ |
|
| 47 | + protected function _applyAttributes(BaseHtml $element, &$attributes, $index, $instance=null) { |
|
| 48 | + if (isset($attributes["jsCallback"])) { |
|
| 49 | 49 | $callback=$attributes["jsCallback"]; |
| 50 | - if(\is_callable($callback)){ |
|
| 51 | - $callback($element,$instance,$index,InstanceViewer::$index); |
|
| 50 | + if (\is_callable($callback)) { |
|
| 51 | + $callback($element, $instance, $index, InstanceViewer::$index); |
|
| 52 | 52 | } |
| 53 | 53 | } |
| 54 | 54 | unset($attributes["rules"]); |
@@ -57,44 +57,44 @@ discard block |
||
| 57 | 57 | $element->fromArray($attributes); |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - private function _getLabelField($caption,$icon=NULL){ |
|
| 61 | - $label=new HtmlLabel($this->_getFieldIdentifier("lbl"),$caption,$icon); |
|
| 60 | + private function _getLabelField($caption, $icon=NULL) { |
|
| 61 | + $label=new HtmlLabel($this->_getFieldIdentifier("lbl"), $caption, $icon); |
|
| 62 | 62 | return $label; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | |
| 66 | - protected function _addRules(HtmlFormField $element,&$attributes){ |
|
| 67 | - if(isset($attributes["rules"])){ |
|
| 66 | + protected function _addRules(HtmlFormField $element, &$attributes) { |
|
| 67 | + if (isset($attributes["rules"])) { |
|
| 68 | 68 | $this->_hasRules=true; |
| 69 | 69 | $rules=$attributes["rules"]; |
| 70 | - if(\is_array($rules)){ |
|
| 70 | + if (\is_array($rules)) { |
|
| 71 | 71 | $element->addRules($rules); |
| 72 | 72 | } |
| 73 | - else{ |
|
| 73 | + else { |
|
| 74 | 74 | $element->addRule($rules); |
| 75 | 75 | } |
| 76 | 76 | unset($attributes["rules"]); |
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - protected function _prepareFormFields(HtmlFormField &$field,$name,&$attributes){ |
|
| 80 | + protected function _prepareFormFields(HtmlFormField &$field, $name, &$attributes) { |
|
| 81 | 81 | $field->setName($name); |
| 82 | 82 | $this->_addRules($field, $attributes); |
| 83 | 83 | return $field; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - protected function _fieldAs($elementCallback,&$index,$attributes=NULL,$prefix=null){ |
|
| 87 | - $this->setValueFunction($index,function($value,$instance,$index,$rowIndex) use (&$attributes,$elementCallback,$prefix){ |
|
| 86 | + protected function _fieldAs($elementCallback, &$index, $attributes=NULL, $prefix=null) { |
|
| 87 | + $this->setValueFunction($index, function($value, $instance, $index, $rowIndex) use (&$attributes, $elementCallback, $prefix){ |
|
| 88 | 88 | $caption=$this->_getFieldCaption($index); |
| 89 | 89 | $name=$this->_getFieldName($index); |
| 90 | - $id=$this->_getFieldIdentifier($prefix,$name); |
|
| 91 | - if(isset($attributes["name"])){ |
|
| 90 | + $id=$this->_getFieldIdentifier($prefix, $name); |
|
| 91 | + if (isset($attributes["name"])) { |
|
| 92 | 92 | $name=$attributes["name"]; |
| 93 | 93 | unset($attributes["name"]); |
| 94 | 94 | } |
| 95 | - $element=$elementCallback($id,$name,$value,$caption); |
|
| 96 | - if(\is_array($attributes)){ |
|
| 97 | - $this->_applyAttributes($element, $attributes,$index,$instance); |
|
| 95 | + $element=$elementCallback($id, $name, $value, $caption); |
|
| 96 | + if (\is_array($attributes)) { |
|
| 97 | + $this->_applyAttributes($element, $attributes, $index, $instance); |
|
| 98 | 98 | } |
| 99 | 99 | $element->setDisabled(!$this->_edition); |
| 100 | 100 | return $element; |
@@ -103,205 +103,205 @@ discard block |
||
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | |
| 106 | - public function fieldAsProgress($index,$label=NULL, $attributes=array()){ |
|
| 107 | - $this->setValueFunction($index,function($value) use($label,$attributes){ |
|
| 108 | - $pb=new HtmlProgress($this->_getFieldIdentifier("pb"),$value,$label,$attributes); |
|
| 106 | + public function fieldAsProgress($index, $label=NULL, $attributes=array()) { |
|
| 107 | + $this->setValueFunction($index, function($value) use($label, $attributes){ |
|
| 108 | + $pb=new HtmlProgress($this->_getFieldIdentifier("pb"), $value, $label, $attributes); |
|
| 109 | 109 | return $pb; |
| 110 | 110 | }); |
| 111 | 111 | return $this; |
| 112 | 112 | } |
| 113 | 113 | |
| 114 | - public function fieldAsRating($index,$max=5, $icon=""){ |
|
| 115 | - $this->setValueFunction($index,function($value) use($max,$icon){ |
|
| 116 | - $rating=new HtmlRating($this->_getFieldIdentifier("rat"),$value,$max,$icon); |
|
| 114 | + public function fieldAsRating($index, $max=5, $icon="") { |
|
| 115 | + $this->setValueFunction($index, function($value) use($max, $icon){ |
|
| 116 | + $rating=new HtmlRating($this->_getFieldIdentifier("rat"), $value, $max, $icon); |
|
| 117 | 117 | return $rating; |
| 118 | 118 | }); |
| 119 | 119 | return $this; |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - public function fieldAsLabel($index,$icon=NULL,$attributes=NULL){ |
|
| 123 | - return $this->_fieldAs(function($id,$name,$value) use($icon){ |
|
| 124 | - $lbl=new HtmlLabel($id,$value); |
|
| 125 | - if(isset($icon)) |
|
| 122 | + public function fieldAsLabel($index, $icon=NULL, $attributes=NULL) { |
|
| 123 | + return $this->_fieldAs(function($id, $name, $value) use($icon){ |
|
| 124 | + $lbl=new HtmlLabel($id, $value); |
|
| 125 | + if (isset($icon)) |
|
| 126 | 126 | $lbl->addIcon($icon); |
| 127 | 127 | return $lbl; |
| 128 | - }, $index,$attributes,"label"); |
|
| 128 | + }, $index, $attributes, "label"); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - public function fieldAsHeader($index,$niveau=1,$icon=NULL,$attributes=NULL){ |
|
| 132 | - return $this->_fieldAs(function($id,$name,$value) use($niveau,$icon){ |
|
| 133 | - $header=new HtmlHeader($id,$niveau,$value); |
|
| 134 | - if(isset($icon)) |
|
| 131 | + public function fieldAsHeader($index, $niveau=1, $icon=NULL, $attributes=NULL) { |
|
| 132 | + return $this->_fieldAs(function($id, $name, $value) use($niveau, $icon){ |
|
| 133 | + $header=new HtmlHeader($id, $niveau, $value); |
|
| 134 | + if (isset($icon)) |
|
| 135 | 135 | $header->asIcon($icon, $value); |
| 136 | 136 | return $header; |
| 137 | - }, $index,$attributes,"header"); |
|
| 137 | + }, $index, $attributes, "header"); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | |
| 141 | - public function fieldAsImage($index,$size=Size::MINI,$circular=false){ |
|
| 142 | - $this->setValueFunction($index,function($img) use($size,$circular){ |
|
| 143 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
| 141 | + public function fieldAsImage($index, $size=Size::MINI, $circular=false) { |
|
| 142 | + $this->setValueFunction($index, function($img) use($size, $circular){ |
|
| 143 | + $image=new HtmlImage($this->_getFieldIdentifier("image"), $img); $image->setSize($size); if ($circular)$image->setCircular(); |
|
| 144 | 144 | return $image; |
| 145 | 145 | }); |
| 146 | 146 | return $this; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - public function fieldAsFlag($index){ |
|
| 150 | - $this->setValueFunction($index,function($flag){ |
|
| 151 | - $flag=new HtmlFlag($this->_getFieldIdentifier("flag"),$flag); |
|
| 149 | + public function fieldAsFlag($index) { |
|
| 150 | + $this->setValueFunction($index, function($flag) { |
|
| 151 | + $flag=new HtmlFlag($this->_getFieldIdentifier("flag"), $flag); |
|
| 152 | 152 | return $flag; |
| 153 | 153 | }); |
| 154 | 154 | return $this; |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - public function fieldAsIcon($index){ |
|
| 158 | - $this->setValueFunction($index,function($icon){ |
|
| 159 | - $icon=new HtmlIcon($this->_getFieldIdentifier("icon"),$icon); |
|
| 157 | + public function fieldAsIcon($index) { |
|
| 158 | + $this->setValueFunction($index, function($icon) { |
|
| 159 | + $icon=new HtmlIcon($this->_getFieldIdentifier("icon"), $icon); |
|
| 160 | 160 | return $icon; |
| 161 | 161 | }); |
| 162 | 162 | return $this; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - public function fieldAsAvatar($index,$attributes=NULL){ |
|
| 166 | - return $this->_fieldAs(function($id,$name,$value){ |
|
| 167 | - $img=new HtmlImage($id,$value); |
|
| 165 | + public function fieldAsAvatar($index, $attributes=NULL) { |
|
| 166 | + return $this->_fieldAs(function($id, $name, $value) { |
|
| 167 | + $img=new HtmlImage($id, $value); |
|
| 168 | 168 | $img->asAvatar(); |
| 169 | 169 | return $img; |
| 170 | - }, $index,$attributes,"avatar"); |
|
| 170 | + }, $index, $attributes, "avatar"); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - public function fieldAsRadio($index,$attributes=NULL){ |
|
| 174 | - return $this->_fieldAs(function($id,$name,$value) use($attributes){ |
|
| 175 | - $input= new HtmlFormRadio($id,$name,$value,$value); |
|
| 173 | + public function fieldAsRadio($index, $attributes=NULL) { |
|
| 174 | + return $this->_fieldAs(function($id, $name, $value) use($attributes){ |
|
| 175 | + $input=new HtmlFormRadio($id, $name, $value, $value); |
|
| 176 | 176 | return $this->_prepareFormFields($input, $name, $attributes); |
| 177 | - }, $index,$attributes,"radio"); |
|
| 177 | + }, $index, $attributes, "radio"); |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - public function fieldAsRadios($index,$elements=[],$attributes=NULL){ |
|
| 181 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($elements){ |
|
| 182 | - return HtmlFormFields::radios($name,$elements,$caption,$value); |
|
| 183 | - }, $index,$attributes,"radios"); |
|
| 180 | + public function fieldAsRadios($index, $elements=[], $attributes=NULL) { |
|
| 181 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($elements){ |
|
| 182 | + return HtmlFormFields::radios($name, $elements, $caption, $value); |
|
| 183 | + }, $index, $attributes, "radios"); |
|
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - public function fieldAsList($index,$classNames="",$attributes=NULL){ |
|
| 187 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($classNames){ |
|
| 188 | - $result= new HtmlList($name,$value); |
|
| 186 | + public function fieldAsList($index, $classNames="", $attributes=NULL) { |
|
| 187 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($classNames){ |
|
| 188 | + $result=new HtmlList($name, $value); |
|
| 189 | 189 | $result->addClass($classNames); |
| 190 | 190 | return $result; |
| 191 | - }, $index,$attributes,"list"); |
|
| 191 | + }, $index, $attributes, "list"); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - public function fieldAsInput($index,$attributes=NULL){ |
|
| 195 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
| 196 | - $input= new HtmlFormInput($id,$caption,"text",$value); |
|
| 194 | + public function fieldAsInput($index, $attributes=NULL) { |
|
| 195 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
| 196 | + $input=new HtmlFormInput($id, $caption, "text", $value); |
|
| 197 | 197 | return $this->_prepareFormFields($input, $name, $attributes); |
| 198 | - }, $index,$attributes,"input"); |
|
| 198 | + }, $index, $attributes, "input"); |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | - public function fieldAsTextarea($index,$attributes=NULL){ |
|
| 202 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
| 203 | - $textarea=new HtmlFormTextarea($id,$caption,$value); |
|
| 201 | + public function fieldAsTextarea($index, $attributes=NULL) { |
|
| 202 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
| 203 | + $textarea=new HtmlFormTextarea($id, $caption, $value); |
|
| 204 | 204 | return $this->_prepareFormFields($textarea, $name, $attributes); |
| 205 | - }, $index,$attributes,"textarea"); |
|
| 205 | + }, $index, $attributes, "textarea"); |
|
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - public function fieldAsElement($index,$tagName="div",$baseClass="",$attributes=NULL){ |
|
| 209 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes,$tagName,$baseClass){ |
|
| 210 | - $div=new HtmlSemDoubleElement($id,$tagName,$baseClass); |
|
| 208 | + public function fieldAsElement($index, $tagName="div", $baseClass="", $attributes=NULL) { |
|
| 209 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes, $tagName, $baseClass){ |
|
| 210 | + $div=new HtmlSemDoubleElement($id, $tagName, $baseClass); |
|
| 211 | 211 | $div->setContent(\htmlentities($value)); |
| 212 | - $textarea=new HtmlFormField("field-".$id, $div,$caption); |
|
| 212 | + $textarea=new HtmlFormField("field-".$id, $div, $caption); |
|
| 213 | 213 | return $this->_prepareFormFields($textarea, $name, $attributes); |
| 214 | - }, $index,$attributes,"element"); |
|
| 214 | + }, $index, $attributes, "element"); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | |
| 218 | - public function fieldAsHidden($index,$attributes=NULL){ |
|
| 219 | - if(!\is_array($attributes)){ |
|
| 218 | + public function fieldAsHidden($index, $attributes=NULL) { |
|
| 219 | + if (!\is_array($attributes)) { |
|
| 220 | 220 | $attributes=[]; |
| 221 | 221 | } |
| 222 | 222 | $attributes["inputType"]="hidden"; |
| 223 | 223 | $attributes["style"]="display:none;"; |
| 224 | - return $this->fieldAsInput($index,$attributes); |
|
| 224 | + return $this->fieldAsInput($index, $attributes); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - public function fieldAsCheckbox($index,$attributes=NULL){ |
|
| 228 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($attributes){ |
|
| 229 | - if($caption===null || $caption==="") |
|
| 227 | + public function fieldAsCheckbox($index, $attributes=NULL) { |
|
| 228 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($attributes){ |
|
| 229 | + if ($caption===null || $caption==="") |
|
| 230 | 230 | $caption=""; |
| 231 | - $input=new HtmlFormCheckbox($id,$caption,$this->_instanceViewer->getIdentifier()); |
|
| 231 | + $input=new HtmlFormCheckbox($id, $caption, $this->_instanceViewer->getIdentifier()); |
|
| 232 | 232 | $input->setChecked(JString::isBooleanTrue($value)); |
| 233 | 233 | return $this->_prepareFormFields($input, $name, $attributes); |
| 234 | - }, $index,$attributes,"ck"); |
|
| 234 | + }, $index, $attributes, "ck"); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - public function fieldAsDropDown($index,$elements=[],$multiple=false,$attributes=NULL){ |
|
| 238 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($elements,$multiple,$attributes){ |
|
| 239 | - $dd=new HtmlFormDropdown($id,$elements,$caption,$value); |
|
| 240 | - $dd->asSelect($name,$multiple); |
|
| 237 | + public function fieldAsDropDown($index, $elements=[], $multiple=false, $attributes=NULL) { |
|
| 238 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($elements, $multiple, $attributes){ |
|
| 239 | + $dd=new HtmlFormDropdown($id, $elements, $caption, $value); |
|
| 240 | + $dd->asSelect($name, $multiple); |
|
| 241 | 241 | return $this->_prepareFormFields($dd, $name, $attributes); |
| 242 | - }, $index,$attributes,"dd"); |
|
| 242 | + }, $index, $attributes, "dd"); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | - public function fieldAsMessage($index,$attributes=NULL){ |
|
| 246 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
| 247 | - $mess= new HtmlMessage("message-".$id,$caption); |
|
| 245 | + public function fieldAsMessage($index, $attributes=NULL) { |
|
| 246 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
| 247 | + $mess=new HtmlMessage("message-".$id, $caption); |
|
| 248 | 248 | $mess->addHeader($value); |
| 249 | 249 | return $mess; |
| 250 | - }, $index,$attributes,"message"); |
|
| 250 | + }, $index, $attributes, "message"); |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - public function fieldAsLink($index,$attributes=NULL){ |
|
| 254 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
| 255 | - $lnk= new HtmlLink("message-".$id,"#",$caption); |
|
| 253 | + public function fieldAsLink($index, $attributes=NULL) { |
|
| 254 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
| 255 | + $lnk=new HtmlLink("message-".$id, "#", $caption); |
|
| 256 | 256 | return $lnk; |
| 257 | - }, $index,$attributes,"link"); |
|
| 257 | + }, $index, $attributes, "link"); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | /**Change fields type |
| 261 | 261 | * @param array $types an array or associative array $type=>$attributes |
| 262 | 262 | */ |
| 263 | - public function fieldsAs(array $types){ |
|
| 263 | + public function fieldsAs(array $types) { |
|
| 264 | 264 | $i=0; |
| 265 | - if(JArray::isAssociative($types)){ |
|
| 266 | - foreach ($types as $type=>$attributes){ |
|
| 267 | - if(\is_int($type)) |
|
| 268 | - $this->fieldAs($i++,$attributes,[]); |
|
| 269 | - else{ |
|
| 270 | - $type=preg_replace('/\d/', '', $type ); |
|
| 271 | - $this->fieldAs($i++,$type,$attributes); |
|
| 265 | + if (JArray::isAssociative($types)) { |
|
| 266 | + foreach ($types as $type=>$attributes) { |
|
| 267 | + if (\is_int($type)) |
|
| 268 | + $this->fieldAs($i++, $attributes, []); |
|
| 269 | + else { |
|
| 270 | + $type=preg_replace('/\d/', '', $type); |
|
| 271 | + $this->fieldAs($i++, $type, $attributes); |
|
| 272 | 272 | } |
| 273 | 273 | } |
| 274 | - }else{ |
|
| 275 | - foreach ($types as $type){ |
|
| 276 | - $this->fieldAs($i++,$type); |
|
| 274 | + } else { |
|
| 275 | + foreach ($types as $type) { |
|
| 276 | + $this->fieldAs($i++, $type); |
|
| 277 | 277 | } |
| 278 | 278 | } |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - public function fieldAs($index,$type,$attributes=NULL){ |
|
| 281 | + public function fieldAs($index, $type, $attributes=NULL) { |
|
| 282 | 282 | $method="fieldAs".\ucfirst($type); |
| 283 | - if(\method_exists($this, $method)){ |
|
| 284 | - if(!\is_array($attributes)){ |
|
| 283 | + if (\method_exists($this, $method)) { |
|
| 284 | + if (!\is_array($attributes)) { |
|
| 285 | 285 | $attributes=[$index]; |
| 286 | - }else{ |
|
| 286 | + } else { |
|
| 287 | 287 | \array_unshift($attributes, $index); |
| 288 | 288 | } |
| 289 | - \call_user_func_array([$this,$method], $attributes); |
|
| 289 | + \call_user_func_array([$this, $method], $attributes); |
|
| 290 | 290 | } |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
| 294 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle,$attributes){ |
|
| 295 | - $button=new HtmlButton($id,$caption,$cssStyle); |
|
| 296 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement,@$attributes["ajax"]); |
|
| 293 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
| 294 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle, $attributes){ |
|
| 295 | + $button=new HtmlButton($id, $caption, $cssStyle); |
|
| 296 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement, @$attributes["ajax"]); |
|
| 297 | 297 | return $button; |
| 298 | - }, $index,$attributes,"submit"); |
|
| 298 | + }, $index, $attributes, "submit"); |
|
| 299 | 299 | } |
| 300 | 300 | |
| 301 | - public function fieldAsButton($index,$cssStyle=NULL,$attributes=NULL){ |
|
| 302 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){ |
|
| 303 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
| 301 | + public function fieldAsButton($index, $cssStyle=NULL, $attributes=NULL) { |
|
| 302 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){ |
|
| 303 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
| 304 | 304 | return $button; |
| 305 | - }, $index,$attributes,"button"); |
|
| 305 | + }, $index, $attributes, "button"); |
|
| 306 | 306 | } |
| 307 | 307 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | use Ajax\common\html\traits\BaseHooksTrait; |
| 22 | 22 | |
| 23 | 23 | abstract class Widget extends HtmlDoubleElement { |
| 24 | - use FieldAsTrait,FormTrait,BaseHooksTrait; |
|
| 24 | + use FieldAsTrait, FormTrait, BaseHooksTrait; |
|
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * @var string classname |
@@ -56,17 +56,17 @@ discard block |
||
| 56 | 56 | protected $_hasRules; |
| 57 | 57 | |
| 58 | 58 | |
| 59 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
| 59 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
| 60 | 60 | parent::__construct($identifier); |
| 61 | 61 | $this->_template="%wrapContentBefore%%content%%wrapContentAfter%"; |
| 62 | 62 | $this->setModel($model); |
| 63 | - if(isset($modelInstance)){ |
|
| 63 | + if (isset($modelInstance)) { |
|
| 64 | 64 | $this->show($modelInstance); |
| 65 | 65 | } |
| 66 | 66 | $this->_generated=false; |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - protected function _init($instanceViewer,$contentKey,$content,$edition){ |
|
| 69 | + protected function _init($instanceViewer, $contentKey, $content, $edition) { |
|
| 70 | 70 | $this->_instanceViewer=$instanceViewer; |
| 71 | 71 | $this->content=[$contentKey=>$content]; |
| 72 | 72 | $this->_self=$content; |
@@ -78,31 +78,31 @@ discard block |
||
| 78 | 78 | * @param int|string $fieldName |
| 79 | 79 | * @return int|string|boolean |
| 80 | 80 | */ |
| 81 | - protected function _getIndex($fieldName){ |
|
| 81 | + protected function _getIndex($fieldName) { |
|
| 82 | 82 | $index=$fieldName; |
| 83 | - if(\is_string($fieldName)){ |
|
| 83 | + if (\is_string($fieldName)) { |
|
| 84 | 84 | $fields=$this->_instanceViewer->getVisibleProperties(); |
| 85 | 85 | $index=\array_search($fieldName, $fields); |
| 86 | 86 | } |
| 87 | 87 | return $index; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - protected function _getFieldIdentifier($prefix,$name=""){ |
|
| 90 | + protected function _getFieldIdentifier($prefix, $name="") { |
|
| 91 | 91 | return $this->identifier."-{$prefix}-".$this->_instanceViewer->getIdentifier(); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - protected function _getFieldName($index){ |
|
| 94 | + protected function _getFieldName($index) { |
|
| 95 | 95 | return $this->_instanceViewer->getFieldName($index); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - protected function _getFieldCaption($index){ |
|
| 98 | + protected function _getFieldCaption($index) { |
|
| 99 | 99 | return $this->_instanceViewer->getCaption($index); |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | - abstract protected function _setToolbarPosition($table,$captions=NULL); |
|
| 102 | + abstract protected function _setToolbarPosition($table, $captions=NULL); |
|
| 103 | 103 | |
| 104 | - public function show($modelInstance){ |
|
| 105 | - if(\is_array($modelInstance)){ |
|
| 104 | + public function show($modelInstance) { |
|
| 105 | + if (\is_array($modelInstance)) { |
|
| 106 | 106 | $modelInstance=\json_decode(\json_encode($modelInstance), FALSE); |
| 107 | 107 | } |
| 108 | 108 | $this->_modelInstance=$modelInstance; |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | abstract public function getHtmlComponent(); |
| 130 | 130 | |
| 131 | - public function setAttached($value=true){ |
|
| 131 | + public function setAttached($value=true) { |
|
| 132 | 132 | return $this->getHtmlComponent()->setAttached($value); |
| 133 | 133 | } |
| 134 | 134 | |
@@ -139,65 +139,65 @@ discard block |
||
| 139 | 139 | * @param callable $callback function called after the field compilation |
| 140 | 140 | * @return Widget |
| 141 | 141 | */ |
| 142 | - public function afterCompile($index,$callback){ |
|
| 142 | + public function afterCompile($index, $callback) { |
|
| 143 | 143 | $index=$this->_getIndex($index); |
| 144 | 144 | $this->_instanceViewer->afterCompile($index, $callback); |
| 145 | 145 | return $this; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - public function setColor($color){ |
|
| 148 | + public function setColor($color) { |
|
| 149 | 149 | return $this->getHtmlComponent()->setColor($color); |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | |
| 153 | - public function setCaptions($captions){ |
|
| 153 | + public function setCaptions($captions) { |
|
| 154 | 154 | $this->_instanceViewer->setCaptions($captions); |
| 155 | 155 | return $this; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - public function setCaption($index,$caption){ |
|
| 158 | + public function setCaption($index, $caption) { |
|
| 159 | 159 | $this->_instanceViewer->setCaption($this->_getIndex($index), $caption); |
| 160 | 160 | return $this; |
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - public function setFields($fields){ |
|
| 163 | + public function setFields($fields) { |
|
| 164 | 164 | $this->_instanceViewer->setVisibleProperties($fields); |
| 165 | 165 | return $this; |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | - public function addField($field,$key=null){ |
|
| 169 | - $this->_instanceViewer->addField($field,$key); |
|
| 168 | + public function addField($field, $key=null) { |
|
| 169 | + $this->_instanceViewer->addField($field, $key); |
|
| 170 | 170 | return $this; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - public function addFields($fields){ |
|
| 173 | + public function addFields($fields) { |
|
| 174 | 174 | $this->_instanceViewer->addFields($fields); |
| 175 | 175 | return $this; |
| 176 | 176 | } |
| 177 | 177 | |
| 178 | - public function countFields(){ |
|
| 178 | + public function countFields() { |
|
| 179 | 179 | return $this->_instanceViewer->visiblePropertiesCount(); |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - public function addMessage($attributes=NULL,$fieldName="message"){ |
|
| 182 | + public function addMessage($attributes=NULL, $fieldName="message") { |
|
| 183 | 183 | $this->_instanceViewer->addField($fieldName); |
| 184 | 184 | $count=$this->_instanceViewer->visiblePropertiesCount(); |
| 185 | - return $this->fieldAsMessage($count-1,$attributes); |
|
| 185 | + return $this->fieldAsMessage($count-1, $attributes); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - public function addErrorMessage(){ |
|
| 189 | - return $this->addMessage(["error"=>true],"message"); |
|
| 188 | + public function addErrorMessage() { |
|
| 189 | + return $this->addMessage(["error"=>true], "message"); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - public function insertField($index,$field,$key=null){ |
|
| 192 | + public function insertField($index, $field, $key=null) { |
|
| 193 | 193 | $index=$this->_getIndex($index); |
| 194 | - $this->_instanceViewer->insertField($index, $field,$key); |
|
| 194 | + $this->_instanceViewer->insertField($index, $field, $key); |
|
| 195 | 195 | return $this; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - public function insertInField($index,$field,$key=null){ |
|
| 198 | + public function insertInField($index, $field, $key=null) { |
|
| 199 | 199 | $index=$this->_getIndex($index); |
| 200 | - $this->_instanceViewer->insertInField($index, $field,$key); |
|
| 200 | + $this->_instanceViewer->insertInField($index, $field, $key); |
|
| 201 | 201 | return $this; |
| 202 | 202 | } |
| 203 | 203 | |
@@ -207,13 +207,13 @@ discard block |
||
| 207 | 207 | * @param callable $callback function parameters are : $value : the field value, $instance : the active instance of model, $fieldIndex : the field index, $rowIndex : the row index |
| 208 | 208 | * @return Widget |
| 209 | 209 | */ |
| 210 | - public function setValueFunction($index,$callback){ |
|
| 210 | + public function setValueFunction($index, $callback) { |
|
| 211 | 211 | $index=$this->_getIndex($index); |
| 212 | 212 | $this->_instanceViewer->setValueFunction($index, $callback); |
| 213 | 213 | return $this; |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - public function setIdentifierFunction($callback){ |
|
| 216 | + public function setIdentifierFunction($callback) { |
|
| 217 | 217 | $this->_instanceViewer->setIdentifierFunction($callback); |
| 218 | 218 | return $this; |
| 219 | 219 | } |
@@ -221,8 +221,8 @@ discard block |
||
| 221 | 221 | /** |
| 222 | 222 | * @return \Ajax\semantic\html\collections\menus\HtmlMenu |
| 223 | 223 | */ |
| 224 | - public function getToolbar(){ |
|
| 225 | - if(isset($this->_toolbar)===false){ |
|
| 224 | + public function getToolbar() { |
|
| 225 | + if (isset($this->_toolbar)===false) { |
|
| 226 | 226 | $this->_toolbar=new HtmlMenu("toolbar-".$this->identifier); |
| 227 | 227 | } |
| 228 | 228 | return $this->_toolbar; |
@@ -234,15 +234,15 @@ discard block |
||
| 234 | 234 | * @param callable $callback function to call on $element |
| 235 | 235 | * @return \Ajax\common\html\HtmlDoubleElement |
| 236 | 236 | */ |
| 237 | - public function addInToolbar($element,$callback=NULL){ |
|
| 237 | + public function addInToolbar($element, $callback=NULL) { |
|
| 238 | 238 | $tb=$this->getToolbar(); |
| 239 | - if($element instanceof BaseWidget){ |
|
| 240 | - if($element->getIdentifier()===""){ |
|
| 239 | + if ($element instanceof BaseWidget) { |
|
| 240 | + if ($element->getIdentifier()==="") { |
|
| 241 | 241 | $element->setIdentifier("tb-item-".$this->identifier."-".$tb->count()); |
| 242 | 242 | } |
| 243 | 243 | } |
| 244 | - if(isset($callback)){ |
|
| 245 | - if(\is_callable($callback)){ |
|
| 244 | + if (isset($callback)) { |
|
| 245 | + if (\is_callable($callback)) { |
|
| 246 | 246 | $callback($element); |
| 247 | 247 | } |
| 248 | 248 | } |
@@ -255,9 +255,9 @@ discard block |
||
| 255 | 255 | * @param callable $callback function($element) |
| 256 | 256 | * @return \Ajax\common\html\HtmlDoubleElement |
| 257 | 257 | */ |
| 258 | - public function addItemInToolbar($caption,$icon=NULL,$callback=NULL){ |
|
| 259 | - $result=$this->addInToolbar($caption,$callback); |
|
| 260 | - if(isset($icon) && method_exists($result, "addIcon")) |
|
| 258 | + public function addItemInToolbar($caption, $icon=NULL, $callback=NULL) { |
|
| 259 | + $result=$this->addInToolbar($caption, $callback); |
|
| 260 | + if (isset($icon) && method_exists($result, "addIcon")) |
|
| 261 | 261 | $result->addIcon($icon); |
| 262 | 262 | return $result; |
| 263 | 263 | } |
@@ -267,14 +267,14 @@ discard block |
||
| 267 | 267 | * @param callable $callback function($element) |
| 268 | 268 | * @return \Ajax\common\Widget |
| 269 | 269 | */ |
| 270 | - public function addItemsInToolbar(array $items,$callback=NULL){ |
|
| 271 | - if(JArray::isAssociative($items)){ |
|
| 272 | - foreach ($items as $icon=>$item){ |
|
| 273 | - $this->addItemInToolbar($item,$icon,$callback); |
|
| 270 | + public function addItemsInToolbar(array $items, $callback=NULL) { |
|
| 271 | + if (JArray::isAssociative($items)) { |
|
| 272 | + foreach ($items as $icon=>$item) { |
|
| 273 | + $this->addItemInToolbar($item, $icon, $callback); |
|
| 274 | 274 | } |
| 275 | - }else{ |
|
| 276 | - foreach ($items as $item){ |
|
| 277 | - $this->addItemInToolbar($item,null,$callback); |
|
| 275 | + } else { |
|
| 276 | + foreach ($items as $item) { |
|
| 277 | + $this->addItemInToolbar($item, null, $callback); |
|
| 278 | 278 | } |
| 279 | 279 | } |
| 280 | 280 | return $this; |
@@ -286,12 +286,12 @@ discard block |
||
| 286 | 286 | * @param callable $callback function($element) |
| 287 | 287 | * @return \Ajax\common\html\HtmlDoubleElement |
| 288 | 288 | */ |
| 289 | - public function addDropdownInToolbar($value,$items,$callback=NULL){ |
|
| 289 | + public function addDropdownInToolbar($value, $items, $callback=NULL) { |
|
| 290 | 290 | $dd=$value; |
| 291 | 291 | if (\is_string($value)) { |
| 292 | - $dd=new HtmlDropdown("dropdown-". $this->identifier."-".$value, $value, $items); |
|
| 292 | + $dd=new HtmlDropdown("dropdown-".$this->identifier."-".$value, $value, $items); |
|
| 293 | 293 | } |
| 294 | - return $this->addInToolbar($dd,$callback); |
|
| 294 | + return $this->addInToolbar($dd, $callback); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |
@@ -300,9 +300,9 @@ discard block |
||
| 300 | 300 | * @param callable $callback function($element) |
| 301 | 301 | * @return \Ajax\common\html\HtmlDoubleElement |
| 302 | 302 | */ |
| 303 | - public function addButtonInToolbar($caption,$cssStyle=null,$callback=NULL){ |
|
| 304 | - $bt=new HtmlButton("bt-".$caption,$caption,$cssStyle); |
|
| 305 | - return $this->addInToolbar($bt,$callback); |
|
| 303 | + public function addButtonInToolbar($caption, $cssStyle=null, $callback=NULL) { |
|
| 304 | + $bt=new HtmlButton("bt-".$caption, $caption, $cssStyle); |
|
| 305 | + return $this->addInToolbar($bt, $callback); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -311,9 +311,9 @@ discard block |
||
| 311 | 311 | * @param callable $callback function($element) |
| 312 | 312 | * @return \Ajax\common\html\HtmlDoubleElement |
| 313 | 313 | */ |
| 314 | - public function addButtonsInToolbar(array $captions,$asIcon=false,$callback=NULL){ |
|
| 315 | - $bts=new HtmlButtonGroups("",$captions,$asIcon); |
|
| 316 | - return $this->addInToolbar($bts,$callback); |
|
| 314 | + public function addButtonsInToolbar(array $captions, $asIcon=false, $callback=NULL) { |
|
| 315 | + $bts=new HtmlButtonGroups("", $captions, $asIcon); |
|
| 316 | + return $this->addInToolbar($bts, $callback); |
|
| 317 | 317 | } |
| 318 | 318 | |
| 319 | 319 | /** |
@@ -323,15 +323,15 @@ discard block |
||
| 323 | 323 | * @param boolean $labeled |
| 324 | 324 | * @return \Ajax\common\html\HtmlDoubleElement |
| 325 | 325 | */ |
| 326 | - public function addLabelledIconButtonInToolbar($caption,$icon,$before=true,$labeled=false){ |
|
| 327 | - $bt=new HtmlButton("",$caption); |
|
| 328 | - $bt->addIcon($icon,$before,$labeled); |
|
| 326 | + public function addLabelledIconButtonInToolbar($caption, $icon, $before=true, $labeled=false) { |
|
| 327 | + $bt=new HtmlButton("", $caption); |
|
| 328 | + $bt->addIcon($icon, $before, $labeled); |
|
| 329 | 329 | return $this->addInToolbar($bt); |
| 330 | 330 | } |
| 331 | 331 | |
| 332 | - public function addSubmitInToolbar($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$parameters=NULL){ |
|
| 333 | - $button=new HtmlButton($identifier,$value,$cssStyle); |
|
| 334 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement,$parameters); |
|
| 332 | + public function addSubmitInToolbar($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $parameters=NULL) { |
|
| 333 | + $button=new HtmlButton($identifier, $value, $cssStyle); |
|
| 334 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement, $parameters); |
|
| 335 | 335 | return $this->addInToolbar($button); |
| 336 | 336 | } |
| 337 | 337 | |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | * @param callable $defaultValueFunction function parameters are : $name : the field name, $value : the field value ,$index : the field index, $instance : the active instance of model |
| 362 | 362 | * @return \Ajax\common\Widget |
| 363 | 363 | */ |
| 364 | - public function setDefaultValueFunction($defaultValueFunction){ |
|
| 364 | + public function setDefaultValueFunction($defaultValueFunction) { |
|
| 365 | 365 | $this->_instanceViewer->setDefaultValueFunction($defaultValueFunction); |
| 366 | 366 | return $this; |
| 367 | 367 | } |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | /** |
| 370 | 370 | * @return callable |
| 371 | 371 | */ |
| 372 | - public function getDefaultValueFunction(){ |
|
| 372 | + public function getDefaultValueFunction() { |
|
| 373 | 373 | return $this->_instanceViewer->getDefaultValueFunction(); |
| 374 | 374 | } |
| 375 | 375 | |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | * @param string|boolean $disable |
| 378 | 378 | * @return string |
| 379 | 379 | */ |
| 380 | - public function jsDisabled($disable=true){ |
|
| 380 | + public function jsDisabled($disable=true) { |
|
| 381 | 381 | return "$('#".$this->identifier." .ui.input,#".$this->identifier." .ui.dropdown,#".$this->identifier." .ui.checkbox').toggleClass('disabled',".$disable.");"; |
| 382 | 382 | } |
| 383 | 383 | |
@@ -386,12 +386,12 @@ discard block |
||
| 386 | 386 | * @param callable $callback function($element) |
| 387 | 387 | * @return \Ajax\common\html\HtmlDoubleElement |
| 388 | 388 | */ |
| 389 | - public function addEditButtonInToolbar($caption,$callback=NULL){ |
|
| 390 | - $bt=new HtmlButton($this->identifier."-editBtn",$caption); |
|
| 389 | + public function addEditButtonInToolbar($caption, $callback=NULL) { |
|
| 390 | + $bt=new HtmlButton($this->identifier."-editBtn", $caption); |
|
| 391 | 391 | $bt->setToggle(); |
| 392 | 392 | $bt->setActive($this->_edition); |
| 393 | 393 | $bt->onClick($this->jsDisabled(Javascript::prep_value("!$(event.target).hasClass('active')"))); |
| 394 | - return $this->addInToolbar($bt,$callback); |
|
| 394 | + return $this->addInToolbar($bt, $callback); |
|
| 395 | 395 | } |
| 396 | 396 | |
| 397 | 397 | public function setToolbar(HtmlMenu $_toolbar) { |
@@ -405,34 +405,34 @@ discard block |
||
| 405 | 405 | } |
| 406 | 406 | |
| 407 | 407 | public function getForm() { |
| 408 | - if(!isset($this->_form)){ |
|
| 408 | + if (!isset($this->_form)) { |
|
| 409 | 409 | $this->_form=new HtmlForm("frm-".$this->identifier); |
| 410 | 410 | $this->setEdition(true); |
| 411 | 411 | } |
| 412 | 412 | return $this->_form; |
| 413 | 413 | } |
| 414 | 414 | |
| 415 | - public function run(JsUtils $js){ |
|
| 415 | + public function run(JsUtils $js) { |
|
| 416 | 416 | parent::run($js); |
| 417 | - if(isset($this->_form)){ |
|
| 417 | + if (isset($this->_form)) { |
|
| 418 | 418 | $this->runForm($js); |
| 419 | 419 | } |
| 420 | 420 | } |
| 421 | 421 | |
| 422 | - protected function runForm(JsUtils $js){ |
|
| 422 | + protected function runForm(JsUtils $js) { |
|
| 423 | 423 | $fields=$this->getContentInstances(HtmlFormField::class); |
| 424 | - foreach ($fields as $field){ |
|
| 424 | + foreach ($fields as $field) { |
|
| 425 | 425 | $this->_form->addField($field); |
| 426 | 426 | } |
| 427 | 427 | return $this->_form->run($js); |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | - protected function _compileForm(){ |
|
| 431 | - if(isset($this->_form)){ |
|
| 430 | + protected function _compileForm() { |
|
| 431 | + if (isset($this->_form)) { |
|
| 432 | 432 | $noValidate=""; |
| 433 | - if(\sizeof($this->_form->getValidationParams())>0) |
|
| 433 | + if (\sizeof($this->_form->getValidationParams())>0) |
|
| 434 | 434 | $noValidate="novalidate"; |
| 435 | - $this->wrapContent("<form class='ui form' id='frm-".$this->identifier."' name='frm-".$this->identifier."' ".$noValidate.">","</form>"); |
|
| 435 | + $this->wrapContent("<form class='ui form' id='frm-".$this->identifier."' name='frm-".$this->identifier."' ".$noValidate.">", "</form>"); |
|
| 436 | 436 | } |
| 437 | 437 | } |
| 438 | 438 | |
@@ -447,33 +447,33 @@ discard block |
||
| 447 | 447 | return $this; |
| 448 | 448 | } |
| 449 | 449 | |
| 450 | - public function moveFieldTo($from,$to){ |
|
| 450 | + public function moveFieldTo($from, $to) { |
|
| 451 | 451 | return $this->_instanceViewer->moveFieldTo($from, $to); |
| 452 | 452 | } |
| 453 | 453 | |
| 454 | - public function swapFields($index1,$index2){ |
|
| 454 | + public function swapFields($index1, $index2) { |
|
| 455 | 455 | $index1=$this->_getIndex($index1); |
| 456 | 456 | $index2=$this->_getIndex($index2); |
| 457 | 457 | return $this->_instanceViewer->swapFields($index1, $index2); |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - public function removeField($index){ |
|
| 460 | + public function removeField($index) { |
|
| 461 | 461 | $index=$this->_getIndex($index); |
| 462 | 462 | $this->_instanceViewer->removeField($index); |
| 463 | 463 | return $this; |
| 464 | 464 | } |
| 465 | 465 | |
| 466 | - public function asModal($header=null){ |
|
| 467 | - $modal=new HtmlModal("modal-".$this->identifier,$header); |
|
| 466 | + public function asModal($header=null) { |
|
| 467 | + $modal=new HtmlModal("modal-".$this->identifier, $header); |
|
| 468 | 468 | $modal->setContent($this); |
| 469 | - if(isset($this->_form)){ |
|
| 469 | + if (isset($this->_form)) { |
|
| 470 | 470 | $this->_form->onSuccess($modal->jsHide()); |
| 471 | 471 | } |
| 472 | 472 | return $modal; |
| 473 | 473 | } |
| 474 | 474 | |
| 475 | 475 | public function addToProperty($name, $value, $separator=" ") { |
| 476 | - return $this->getHtmlComponent()->addToProperty($name,$value,$separator); |
|
| 476 | + return $this->getHtmlComponent()->addToProperty($name, $value, $separator); |
|
| 477 | 477 | } |
| 478 | 478 | /** |
| 479 | 479 | * @return mixed |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | trait JsUtilsActionsTrait { |
| 13 | 13 | |
| 14 | - abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
| 14 | + abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
| 15 | 15 | /** |
| 16 | 16 | * show or hide with effect |
| 17 | 17 | * |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | * @param boolean $immediatly defers the execution if set to false |
| 23 | 23 | * @return string |
| 24 | 24 | */ |
| 25 | - protected function _showHideWithEffect($action,$element='this', $speed='', $callback='', $immediatly=false) { |
|
| 25 | + protected function _showHideWithEffect($action, $element='this', $speed='', $callback='', $immediatly=false) { |
|
| 26 | 26 | $element=Javascript::prep_element($element); |
| 27 | 27 | $speed=$this->_validate_speed($speed); |
| 28 | 28 | if ($callback!='') { |
@@ -39,8 +39,8 @@ discard block |
||
| 39 | 39 | * @return string |
| 40 | 40 | */ |
| 41 | 41 | private function _validate_speed($speed) { |
| 42 | - if (in_array($speed, array ( |
|
| 43 | - 'slow','normal','fast' |
|
| 42 | + if (in_array($speed, array( |
|
| 43 | + 'slow', 'normal', 'fast' |
|
| 44 | 44 | ))) { |
| 45 | 45 | $speed='"'.$speed.'"'; |
| 46 | 46 | } elseif (preg_match("/[^0-9]/", $speed)) { |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * @param string $param |
| 58 | 58 | * @param boolean $immediatly delayed if false |
| 59 | 59 | */ |
| 60 | - public function _genericCallValue($jQueryCall,$element='this', $param="", $immediatly=false) { |
|
| 60 | + public function _genericCallValue($jQueryCall, $element='this', $param="", $immediatly=false) { |
|
| 61 | 61 | $element=Javascript::prep_element($element); |
| 62 | 62 | if (isset($param)) { |
| 63 | 63 | $param=Javascript::prep_value($param); |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * @param boolean $immediatly delayed if false |
| 78 | 78 | * @return string |
| 79 | 79 | */ |
| 80 | - public function _genericCallElement($jQueryCall,$to='this', $element, $immediatly=false) { |
|
| 80 | + public function _genericCallElement($jQueryCall, $to='this', $element, $immediatly=false) { |
|
| 81 | 81 | $to=Javascript::prep_element($to); |
| 82 | 82 | $element=Javascript::prep_element($element); |
| 83 | 83 | $str="$({$to}).{$jQueryCall}({$element});"; |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @return string |
| 95 | 95 | */ |
| 96 | 96 | public function addClass($element='this', $class='', $immediatly=false) { |
| 97 | - return $this->_genericCallValue('addClass',$element, $class, $immediatly); |
|
| 97 | + return $this->_genericCallValue('addClass', $element, $class, $immediatly); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | * @param boolean $immediatly defers the execution if set to false |
| 105 | 105 | * @return string |
| 106 | 106 | */ |
| 107 | - public function after($to, $element, $immediatly=false){ |
|
| 108 | - return $this->_genericCallElement('after',$to, $element, $immediatly); |
|
| 107 | + public function after($to, $element, $immediatly=false) { |
|
| 108 | + return $this->_genericCallElement('after', $to, $element, $immediatly); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | * @param boolean $immediatly defers the execution if set to false |
| 116 | 116 | * @return string |
| 117 | 117 | */ |
| 118 | - public function before($to, $element, $immediatly=false){ |
|
| 119 | - return $this->_genericCallElement('before',$to, $element, $immediatly); |
|
| 118 | + public function before($to, $element, $immediatly=false) { |
|
| 119 | + return $this->_genericCallElement('before', $to, $element, $immediatly); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
@@ -144,8 +144,8 @@ discard block |
||
| 144 | 144 | * @param string $value |
| 145 | 145 | * @param boolean $immediatly defers the execution if set to false |
| 146 | 146 | */ |
| 147 | - public function val($element='this',$value='',$immediatly=false){ |
|
| 148 | - return $this->_genericCallValue('val',$element,$value,$immediatly); |
|
| 147 | + public function val($element='this', $value='', $immediatly=false) { |
|
| 148 | + return $this->_genericCallValue('val', $element, $value, $immediatly); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * @param boolean $immediatly defers the execution if set to false |
| 156 | 156 | */ |
| 157 | 157 | public function html($element='this', $value='', $immediatly=false) { |
| 158 | - return $this->_genericCallValue('html',$element, $value, $immediatly); |
|
| 158 | + return $this->_genericCallValue('html', $element, $value, $immediatly); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | |
| 175 | 175 | $animations="\t\t\t"; |
| 176 | 176 | if (\is_array($params)) { |
| 177 | - foreach ( $params as $param => $value ) { |
|
| 177 | + foreach ($params as $param => $value) { |
|
| 178 | 178 | $animations.=$param.': \''.$value.'\', '; |
| 179 | 179 | } |
| 180 | 180 | } |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | * @return string |
| 204 | 204 | */ |
| 205 | 205 | public function append($to, $element, $immediatly=false) { |
| 206 | - return $this->_genericCallElement('append',$to, $element, $immediatly); |
|
| 206 | + return $this->_genericCallElement('append', $to, $element, $immediatly); |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | /** |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | * @return string |
| 215 | 215 | */ |
| 216 | 216 | public function prepend($to, $element, $immediatly=false) { |
| 217 | - return $this->_genericCallElement('prepend',$to, $element, $immediatly); |
|
| 217 | + return $this->_genericCallElement('prepend', $to, $element, $immediatly); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | /** |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | * @return string |
| 228 | 228 | */ |
| 229 | 229 | public function fadeIn($element='this', $speed='', $callback='', $immediatly=false) { |
| 230 | - return $this->_showHideWithEffect("fadeIn",$element,$speed,$callback,$immediatly); |
|
| 230 | + return $this->_showHideWithEffect("fadeIn", $element, $speed, $callback, $immediatly); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | * @return string |
| 241 | 241 | */ |
| 242 | 242 | public function fadeOut($element='this', $speed='', $callback='', $immediatly=false) { |
| 243 | - return $this->_showHideWithEffect("fadeOut",$element,$speed,$callback,$immediatly); |
|
| 243 | + return $this->_showHideWithEffect("fadeOut", $element, $speed, $callback, $immediatly); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | /** |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | * @return string |
| 254 | 254 | */ |
| 255 | 255 | public function slideUp($element='this', $speed='', $callback='', $immediatly=false) { |
| 256 | - return $this->_showHideWithEffect("slideUp",$element,$speed,$callback,$immediatly); |
|
| 256 | + return $this->_showHideWithEffect("slideUp", $element, $speed, $callback, $immediatly); |
|
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | /** |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | * @return string |
| 266 | 266 | */ |
| 267 | 267 | public function removeClass($element='this', $class='', $immediatly=false) { |
| 268 | - return $this->_genericCallValue('removeClass',$element, $class, $immediatly); |
|
| 268 | + return $this->_genericCallValue('removeClass', $element, $class, $immediatly); |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | * @return string |
| 279 | 279 | */ |
| 280 | 280 | public function slideDown($element='this', $speed='', $callback='', $immediatly=false) { |
| 281 | - return $this->_showHideWithEffect("slideDown",$element,$speed,$callback,$immediatly); |
|
| 281 | + return $this->_showHideWithEffect("slideDown", $element, $speed, $callback, $immediatly); |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | /** |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | * @return string |
| 292 | 292 | */ |
| 293 | 293 | public function slideToggle($element='this', $speed='', $callback='', $immediatly=false) { |
| 294 | - return $this->_showHideWithEffect("slideToggle",$element,$speed,$callback,$immediatly); |
|
| 294 | + return $this->_showHideWithEffect("slideToggle", $element, $speed, $callback, $immediatly); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | * @return string |
| 305 | 305 | */ |
| 306 | 306 | public function hide($element='this', $speed='', $callback='', $immediatly=false) { |
| 307 | - return $this->_showHideWithEffect("hide",$element,$speed,$callback,$immediatly); |
|
| 307 | + return $this->_showHideWithEffect("hide", $element, $speed, $callback, $immediatly); |
|
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | /** |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | * @return string |
| 318 | 318 | */ |
| 319 | 319 | public function toggle($element='this', $speed='', $callback='', $immediatly=false) { |
| 320 | - return $this->_showHideWithEffect("toggle",$element,$speed,$callback,$immediatly); |
|
| 320 | + return $this->_showHideWithEffect("toggle", $element, $speed, $callback, $immediatly); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /** |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | * @return string |
| 330 | 330 | */ |
| 331 | 331 | public function toggleClass($element='this', $class='', $immediatly=false) { |
| 332 | - return $this->_genericCallValue('toggleClass',$element, $class, $immediatly); |
|
| 332 | + return $this->_genericCallValue('toggleClass', $element, $class, $immediatly); |
|
| 333 | 333 | } |
| 334 | 334 | |
| 335 | 335 | /** |
@@ -357,7 +357,7 @@ discard block |
||
| 357 | 357 | * @return string |
| 358 | 358 | */ |
| 359 | 359 | public function show($element='this', $speed='', $callback='', $immediatly=false) { |
| 360 | - return $this->_showHideWithEffect("show",$element,$speed,$callback,$immediatly); |
|
| 360 | + return $this->_showHideWithEffect("show", $element, $speed, $callback, $immediatly); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | /** |
@@ -369,8 +369,8 @@ discard block |
||
| 369 | 369 | */ |
| 370 | 370 | public function sortable($element, $options=array()) { |
| 371 | 371 | if (count($options)>0) { |
| 372 | - $sort_options=array (); |
|
| 373 | - foreach ( $options as $k => $v ) { |
|
| 372 | + $sort_options=array(); |
|
| 373 | + foreach ($options as $k => $v) { |
|
| 374 | 374 | $sort_options[]="\n\t\t".$k.': '.$v.""; |
| 375 | 375 | } |
| 376 | 376 | $sort_options=implode(",", $sort_options); |
@@ -467,8 +467,8 @@ discard block |
||
| 467 | 467 | * @param boolean $immediatly |
| 468 | 468 | * @return string |
| 469 | 469 | */ |
| 470 | - private function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="",$immediatly=true) { |
|
| 471 | - return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation,$immediatly); |
|
| 470 | + private function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="", $immediatly=true) { |
|
| 471 | + return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation, $immediatly); |
|
| 472 | 472 | } |
| 473 | 473 | |
| 474 | 474 | /** |
@@ -486,7 +486,7 @@ discard block |
||
| 486 | 486 | $preventDefault=false; |
| 487 | 487 | $immediatly=true; |
| 488 | 488 | extract($parameters); |
| 489 | - return $this->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback,$immediatly); |
|
| 489 | + return $this->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback, $immediatly); |
|
| 490 | 490 | } |
| 491 | 491 | |
| 492 | 492 | /** |
@@ -527,11 +527,11 @@ discard block |
||
| 527 | 527 | $preventDefault=false; |
| 528 | 528 | $immediatly=true; |
| 529 | 529 | extract($parameters); |
| 530 | - $script=$this->_add_event($element, $this->exec($js), $event, $preventDefault, $stopPropagation,$immediatly); |
|
| 530 | + $script=$this->_add_event($element, $this->exec($js), $event, $preventDefault, $stopPropagation, $immediatly); |
|
| 531 | 531 | return $script; |
| 532 | 532 | } |
| 533 | 533 | |
| 534 | - public function setJsonToElement($json,$elementClass="_element",$immediatly=true){ |
|
| 534 | + public function setJsonToElement($json, $elementClass="_element", $immediatly=true) { |
|
| 535 | 535 | $retour="var data={$json};" |
| 536 | 536 | ."\n\tdata=($.isPlainObject(data))?data:JSON.parse(data);" |
| 537 | 537 | ."\n\tvar pk=data['pk'];var object=data['object'];" |
@@ -542,7 +542,7 @@ discard block |
||
| 542 | 542 | ."\n\t});" |
| 543 | 543 | ."\n}};\n"; |
| 544 | 544 | $retour.="\t$(document).trigger('jsonReady',[data]);\n"; |
| 545 | - return $this->exec($retour,$immediatly); |
|
| 545 | + return $this->exec($retour, $immediatly); |
|
| 546 | 546 | } |
| 547 | 547 | |
| 548 | 548 | /** |
@@ -550,10 +550,10 @@ discard block |
||
| 550 | 550 | * @param string $element The element selector |
| 551 | 551 | * @param array $parameters default : array("attr"=>"id","preventDefault"=>false,"stopPropagation"=>false,"immediatly"=>true) |
| 552 | 552 | */ |
| 553 | - public function setDraggable($element,$parameters=[]){ |
|
| 553 | + public function setDraggable($element, $parameters=[]) { |
|
| 554 | 554 | $attr="id"; |
| 555 | 555 | extract($parameters); |
| 556 | - $script=$this->_add_event($element, Javascript::draggable($attr), "dragstart",$parameters); |
|
| 556 | + $script=$this->_add_event($element, Javascript::draggable($attr), "dragstart", $parameters); |
|
| 557 | 557 | return $script; |
| 558 | 558 | } |
| 559 | 559 | |
@@ -563,13 +563,13 @@ discard block |
||
| 563 | 563 | * @param array $parameters default : array("attr"=>"id","stopPropagation"=>false,"immediatly"=>true,"jqueryDone"=>"append") |
| 564 | 564 | * @param string $jsCallback the js script to call when element is dropped |
| 565 | 565 | */ |
| 566 | - public function asDropZone($element,$jsCallback="",$parameters=[]){ |
|
| 566 | + public function asDropZone($element, $jsCallback="", $parameters=[]) { |
|
| 567 | 567 | $stopPropagation=false; |
| 568 | 568 | $immediatly=true; |
| 569 | 569 | $jqueryDone="append"; |
| 570 | - $script=$this->_add_event($element, '', "dragover",true,$stopPropagation,$immediatly); |
|
| 570 | + $script=$this->_add_event($element, '', "dragover", true, $stopPropagation, $immediatly); |
|
| 571 | 571 | extract($parameters); |
| 572 | - $script.=$this->_add_event($element, Javascript::dropZone($jqueryDone,$jsCallback), "drop",true,$stopPropagation,$immediatly); |
|
| 572 | + $script.=$this->_add_event($element, Javascript::dropZone($jqueryDone, $jsCallback), "drop", true, $stopPropagation, $immediatly); |
|
| 573 | 573 | return $script; |
| 574 | 574 | } |
| 575 | 575 | |
@@ -581,16 +581,16 @@ discard block |
||
| 581 | 581 | * @param boolean $immediatly delayed if false |
| 582 | 582 | * @return string |
| 583 | 583 | */ |
| 584 | - public function interval($jsCode,$time,$globalName=null,$immediatly=true){ |
|
| 585 | - if(!Javascript::isFunction($jsCode)){ |
|
| 584 | + public function interval($jsCode, $time, $globalName=null, $immediatly=true) { |
|
| 585 | + if (!Javascript::isFunction($jsCode)) { |
|
| 586 | 586 | $jsCode="function(){\n".$jsCode."\n}"; |
| 587 | 587 | } |
| 588 | - if(isset($globalName)){ |
|
| 588 | + if (isset($globalName)) { |
|
| 589 | 589 | $script="if(window.{$globalName}){clearInterval(window.{$globalName});}\nwindow.{$globalName}=setInterval({$jsCode},{$time});"; |
| 590 | - }else{ |
|
| 590 | + } else { |
|
| 591 | 591 | $script="setInterval({$jsCode},{$time});"; |
| 592 | 592 | } |
| 593 | - return $this->exec($script,$immediatly); |
|
| 593 | + return $this->exec($script, $immediatly); |
|
| 594 | 594 | } |
| 595 | 595 | |
| 596 | 596 | /** |
@@ -599,8 +599,8 @@ discard block |
||
| 599 | 599 | * @param boolean $immediatly delayed if false |
| 600 | 600 | * @return string |
| 601 | 601 | */ |
| 602 | - public function clearInterval($globalName,$immediatly=true){ |
|
| 603 | - return $this->exec("if(window.{$globalName}){clearInterval(window.{$globalName});}",$immediatly); |
|
| 602 | + public function clearInterval($globalName, $immediatly=true) { |
|
| 603 | + return $this->exec("if(window.{$globalName}){clearInterval(window.{$globalName});}", $immediatly); |
|
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | /** |
@@ -613,17 +613,17 @@ discard block |
||
| 613 | 613 | * @param boolean $immediatly delayed if false |
| 614 | 614 | * @return string |
| 615 | 615 | */ |
| 616 | - public function counter($counterSelector,$value=0,$limit=0,$globalName=null,$countDown=true,$immediatly=true){ |
|
| 616 | + public function counter($counterSelector, $value=0, $limit=0, $globalName=null, $countDown=true, $immediatly=true) { |
|
| 617 | 617 | $stop=""; |
| 618 | - if($countDown){ |
|
| 618 | + if ($countDown) { |
|
| 619 | 619 | $stop="if (--timer < ".$limit.") {clearInterval(interval);display.trigger({type:'counter-end',value: timer,limit:".$limit."});}"; |
| 620 | - }else{ |
|
| 621 | - if($limit!=0){ |
|
| 620 | + } else { |
|
| 621 | + if ($limit!=0) { |
|
| 622 | 622 | $stop="if (++timer > ".$limit.") {clearInterval(interval);display.trigger({type:'counter-end',value: timer,limit:".$limit."});}"; |
| 623 | 623 | } |
| 624 | 624 | } |
| 625 | 625 | $global=""; |
| 626 | - if(isset($globalName)){ |
|
| 626 | + if (isset($globalName)) { |
|
| 627 | 627 | $global="\nwindow.{$globalName}=interval;"; |
| 628 | 628 | } |
| 629 | 629 | $timer="var startTimer=function(duration, display) {var timer = duration, minutes, seconds; |
@@ -639,7 +639,7 @@ discard block |
||
| 639 | 639 | ".$global." |
| 640 | 640 | }"; |
| 641 | 641 | $element='$("'.$counterSelector.'")'; |
| 642 | - return $this->exec($timer."\nstartTimer(".$value.",".$element.");",$immediatly); |
|
| 642 | + return $this->exec($timer."\nstartTimer(".$value.",".$element.");", $immediatly); |
|
| 643 | 643 | } |
| 644 | 644 | |
| 645 | 645 | /** |
@@ -653,7 +653,7 @@ discard block |
||
| 653 | 653 | * @param boolean $countDown count down if true or elapse if false |
| 654 | 654 | * @return string |
| 655 | 655 | */ |
| 656 | - public function counterOn($element,$event,$counterSelector,$value=0,$limit=0,$globalName=null,$countDown=true){ |
|
| 657 | - return $this->execOn($event, $element, $this->counter($counterSelector,$value,$limit,$globalName,$countDown,false)); |
|
| 656 | + public function counterOn($element, $event, $counterSelector, $value=0, $limit=0, $globalName=null, $countDown=true) { |
|
| 657 | + return $this->execOn($event, $element, $this->counter($counterSelector, $value, $limit, $globalName, $countDown, false)); |
|
| 658 | 658 | } |
| 659 | 659 | } |
@@ -30,15 +30,15 @@ discard block |
||
| 30 | 30 | return $this->content; |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function addContent($content,$before=false) { |
|
| 33 | + public function addContent($content, $before=false) { |
|
| 34 | 34 | if (!\is_array($this->content)) { |
| 35 | - if(isset($this->content)) |
|
| 36 | - $this->content=array ($this->content); |
|
| 35 | + if (isset($this->content)) |
|
| 36 | + $this->content=array($this->content); |
|
| 37 | 37 | else |
| 38 | 38 | $this->content=array(); |
| 39 | 39 | } |
| 40 | - if($before) |
|
| 41 | - array_unshift($this->content,$content); |
|
| 40 | + if ($before) |
|
| 41 | + array_unshift($this->content, $content); |
|
| 42 | 42 | else |
| 43 | 43 | $this->content []=$content; |
| 44 | 44 | return $this; |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | if ($this->content instanceof HtmlDoubleElement) { |
| 54 | 54 | $this->content->run($js); |
| 55 | 55 | } else if (\is_array($this->content)) { |
| 56 | - foreach ( $this->content as $itemContent ) { |
|
| 56 | + foreach ($this->content as $itemContent) { |
|
| 57 | 57 | if ($itemContent instanceof HtmlDoubleElement) { |
| 58 | 58 | $itemContent->run($js); |
| 59 | 59 | } |
@@ -70,19 +70,19 @@ discard block |
||
| 70 | 70 | return $this; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - public function getContentInstances($class){ |
|
| 74 | - return $this->_getContentInstances($class,$this->content); |
|
| 73 | + public function getContentInstances($class) { |
|
| 74 | + return $this->_getContentInstances($class, $this->content); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - protected function _getContentInstances($class,$content){ |
|
| 77 | + protected function _getContentInstances($class, $content) { |
|
| 78 | 78 | $instances=[]; |
| 79 | - if($content instanceof $class){ |
|
| 79 | + if ($content instanceof $class) { |
|
| 80 | 80 | $instances[]=$content; |
| 81 | - }elseif($content instanceof HtmlDoubleElement){ |
|
| 82 | - $instances=\array_merge($instances,$content->getContentInstances($class)); |
|
| 83 | - }elseif (\is_array($content)){ |
|
| 84 | - foreach ($content as $element){ |
|
| 85 | - $instances=\array_merge($instances,$this->_getContentInstances($class, $element)); |
|
| 81 | + }elseif ($content instanceof HtmlDoubleElement) { |
|
| 82 | + $instances=\array_merge($instances, $content->getContentInstances($class)); |
|
| 83 | + }elseif (\is_array($content)) { |
|
| 84 | + foreach ($content as $element) { |
|
| 85 | + $instances=\array_merge($instances, $this->_getContentInstances($class, $element)); |
|
| 86 | 86 | } |
| 87 | 87 | } |
| 88 | 88 | return $instances; |
@@ -92,36 +92,36 @@ discard block |
||
| 92 | 92 | * Transforms the element into a link |
| 93 | 93 | * @return HtmlDoubleElement |
| 94 | 94 | */ |
| 95 | - public function asLink($href=NULL,$target=NULL) { |
|
| 95 | + public function asLink($href=NULL, $target=NULL) { |
|
| 96 | 96 | if (isset($href)) |
| 97 | 97 | $this->setProperty("href", $href); |
| 98 | - if(isset($target)) |
|
| 98 | + if (isset($target)) |
|
| 99 | 99 | $this->setProperty("target", $target); |
| 100 | 100 | return $this->setTagName("a"); |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - public function getTextContent(){ |
|
| 104 | - if(is_array($this->content)){ |
|
| 103 | + public function getTextContent() { |
|
| 104 | + if (is_array($this->content)) { |
|
| 105 | 105 | return strip_tags(implode("", $this->content)); |
| 106 | 106 | } |
| 107 | 107 | return strip_tags($this->content); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - public function asEditable(HtmlFormField $field,$asForm=false,$setValueProperty="val()"){ |
|
| 110 | + public function asEditable(HtmlFormField $field, $asForm=false, $setValueProperty="val()") { |
|
| 111 | 111 | $idF=$field->getIdentifier(); |
| 112 | 112 | $idE=$idF; |
| 113 | - if($asForm){ |
|
| 113 | + if ($asForm) { |
|
| 114 | 114 | $frm=new HtmlForm("frm-".$field->getIdentifier()); |
| 115 | 115 | $frm->setProperty("onsubmit", "return false;"); |
| 116 | 116 | $fields=$frm->addFields(); |
| 117 | 117 | $idE=$frm->getIdentifier(); |
| 118 | 118 | $fields->addItem($field); |
| 119 | - $fields->addButtonIcon("bt-okay", "check","green mini","\$('#".$idE."').trigger('validate',{value: $('#'+idF+' input').val()});"); |
|
| 120 | - $fields->addButtonIcon("bt-cancel", "close","mini","\$('#".$idE."').trigger('endEdit');"); |
|
| 119 | + $fields->addButtonIcon("bt-okay", "check", "green mini", "\$('#".$idE."').trigger('validate',{value: $('#'+idF+' input').val()});"); |
|
| 120 | + $fields->addButtonIcon("bt-cancel", "close", "mini", "\$('#".$idE."').trigger('endEdit');"); |
|
| 121 | 121 | $this->_editableContent=$frm; |
| 122 | 122 | $keypress=""; |
| 123 | 123 | $focusOut=""; |
| 124 | - }else{ |
|
| 124 | + } else { |
|
| 125 | 125 | $focusOut="if(e.relatedTarget==null)elm.trigger('endEdit');"; |
| 126 | 126 | $this->_editableContent=$field; |
| 127 | 127 | $keypress="$('#".$idF."').keyup(function(e){if(e.which == 13) {\$('#".$idE."').trigger('validate',{value: $('#'+idF+' input').val()});}if(e.keyCode===27) {\$('#".$idE."').trigger('endEdit');}});"; |
@@ -134,11 +134,11 @@ discard block |
||
| 134 | 134 | * {@inheritDoc} |
| 135 | 135 | * @see \Ajax\common\html\BaseHtml::compile_once() |
| 136 | 136 | */ |
| 137 | - protected function compile_once(\Ajax\JsUtils $js = NULL, &$view = NULL) { |
|
| 138 | - if(!$this->_compiled && isset($this->_editableContent)){ |
|
| 139 | - $this->wrap("",$this->_editableContent); |
|
| 137 | + protected function compile_once(\Ajax\JsUtils $js=NULL, &$view=NULL) { |
|
| 138 | + if (!$this->_compiled && isset($this->_editableContent)) { |
|
| 139 | + $this->wrap("", $this->_editableContent); |
|
| 140 | 140 | } |
| 141 | - parent::compile_once($js,$view); |
|
| 141 | + parent::compile_once($js, $view); |
|
| 142 | 142 | |
| 143 | 143 | } |
| 144 | 144 | |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * @param string $hookKey |
| 10 | 10 | * @return boolean |
| 11 | 11 | */ |
| 12 | - public function hookExists($hookKey){ |
|
| 12 | + public function hookExists($hookKey) { |
|
| 13 | 13 | return isset($this->_hooks[$hookKey]); |
| 14 | 14 | } |
| 15 | 15 | |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | * @param string $hookKey |
| 18 | 18 | * @return callable|NULL |
| 19 | 19 | */ |
| 20 | - public function getHook($hookKey){ |
|
| 21 | - if(isset($this->_hooks[$hookKey])){ |
|
| 20 | + public function getHook($hookKey) { |
|
| 21 | + if (isset($this->_hooks[$hookKey])) { |
|
| 22 | 22 | return $this->_hooks[$hookKey]; |
| 23 | 23 | } |
| 24 | 24 | return null; |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | * @param String $hookKey |
| 30 | 30 | * @param callable $callable |
| 31 | 31 | */ |
| 32 | - public function addHook($hookKey,$callable){ |
|
| 32 | + public function addHook($hookKey, $callable) { |
|
| 33 | 33 | $this->_hooks[$hookKey]=$callable; |
| 34 | 34 | } |
| 35 | 35 | |
@@ -39,9 +39,9 @@ discard block |
||
| 39 | 39 | * @param mixed|null $variable |
| 40 | 40 | * @return void|mixed |
| 41 | 41 | */ |
| 42 | - public function execHook($hookKey,...$variables){ |
|
| 43 | - if(($hook=$this->getHook($hookKey))!=null){ |
|
| 44 | - return call_user_func_array($hook,$variables); |
|
| 42 | + public function execHook($hookKey, ...$variables) { |
|
| 43 | + if (($hook=$this->getHook($hookKey))!=null) { |
|
| 44 | + return call_user_func_array($hook, $variables); |
|
| 45 | 45 | } |
| 46 | 46 | return; |
| 47 | 47 | } |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Ajax\common\html; |
| 4 | 4 | |
| 5 | -class HtmlContentOnly extends HtmlDoubleElement{ |
|
| 6 | - public function __construct($content,$identifier=""){ |
|
| 5 | +class HtmlContentOnly extends HtmlDoubleElement { |
|
| 6 | + public function __construct($content, $identifier="") { |
|
| 7 | 7 | parent::__construct($identifier); |
| 8 | 8 | $this->_template='%wrapContentBefore%%content%%wrapContentAfter%'; |
| 9 | 9 | $this->setContent($content); |