@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class HtmlForm extends HtmlSemCollection { |
| 22 | 22 | |
| 23 | - use FieldsTrait,FormTrait; |
|
| 23 | + use FieldsTrait, FormTrait; |
|
| 24 | 24 | /** |
| 25 | 25 | * @var array |
| 26 | 26 | */ |
@@ -33,14 +33,14 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | public function __construct($identifier, $elements=array()) { |
| 35 | 35 | parent::__construct($identifier, "form", "ui form"); |
| 36 | - $this->_states=[ State::ERROR,State::SUCCESS,State::WARNING,State::DISABLED ]; |
|
| 36 | + $this->_states=[State::ERROR, State::SUCCESS, State::WARNING, State::DISABLED]; |
|
| 37 | 37 | $this->setProperty("name", $this->identifier); |
| 38 | - $this->_fields=array (); |
|
| 38 | + $this->_fields=array(); |
|
| 39 | 39 | $this->addItems($elements); |
| 40 | 40 | $this->_validationParams=[]; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - protected function getForm(){ |
|
| 43 | + protected function getForm() { |
|
| 44 | 44 | return $this; |
| 45 | 45 | } |
| 46 | 46 | |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | * @param string $caption |
| 63 | 63 | * @return HtmlForm |
| 64 | 64 | */ |
| 65 | - public function addDivider($caption=NULL){ |
|
| 66 | - return $this->addContent(new HtmlDivider("",$caption)); |
|
| 65 | + public function addDivider($caption=NULL) { |
|
| 66 | + return $this->addContent(new HtmlDivider("", $caption)); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -85,13 +85,13 @@ discard block |
||
| 85 | 85 | $label=NULL; |
| 86 | 86 | } |
| 87 | 87 | $this->_fields=\array_merge($this->_fields, $fields); |
| 88 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields); |
|
| 88 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count(), $fields); |
|
| 89 | 89 | } |
| 90 | - if (isset($label)){ |
|
| 91 | - $fields->wrap("<div class='field'><label>{$label}</label>","</div>"); |
|
| 90 | + if (isset($label)) { |
|
| 91 | + $fields->wrap("<div class='field'><label>{$label}</label>", "</div>"); |
|
| 92 | 92 | } |
| 93 | 93 | } else { |
| 94 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count()); |
|
| 94 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count()); |
|
| 95 | 95 | } |
| 96 | 96 | $this->addItem($fields); |
| 97 | 97 | return $fields; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | |
| 100 | 100 | public function addItem($item) { |
| 101 | 101 | $item=parent::addItem($item); |
| 102 | - if (\is_subclass_of($item, HtmlFormField::class) === true) { |
|
| 102 | + if (\is_subclass_of($item, HtmlFormField::class)===true) { |
|
| 103 | 103 | $this->_fields[]=$item; |
| 104 | 104 | } |
| 105 | 105 | return $item; |
@@ -157,39 +157,39 @@ discard block |
||
| 157 | 157 | |
| 158 | 158 | |
| 159 | 159 | |
| 160 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 161 | - if(\sizeof($this->_validationParams)>0) |
|
| 160 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 161 | + if (\sizeof($this->_validationParams)>0) |
|
| 162 | 162 | $this->setProperty("novalidate", ""); |
| 163 | - return parent::compile($js,$view); |
|
| 163 | + return parent::compile($js, $view); |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | public function run(JsUtils $js) { |
| 167 | - if(isset($js)){ |
|
| 167 | + if (isset($js)) { |
|
| 168 | 168 | $compo=$js->semantic()->form("#".$this->identifier); |
| 169 | - }else{ |
|
| 169 | + } else { |
|
| 170 | 170 | $compo=new Form(); |
| 171 | 171 | $compo->attach("#".$this->identifier); |
| 172 | 172 | } |
| 173 | - foreach ($this->_fields as $field){ |
|
| 174 | - if($field instanceof HtmlFormField){ |
|
| 173 | + foreach ($this->_fields as $field) { |
|
| 174 | + if ($field instanceof HtmlFormField) { |
|
| 175 | 175 | $compo=$this->addCompoValidation($compo, $field); |
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | - foreach ($this->content as $field){ |
|
| 179 | - if($field instanceof HtmlFormFields){ |
|
| 178 | + foreach ($this->content as $field) { |
|
| 179 | + if ($field instanceof HtmlFormFields) { |
|
| 180 | 180 | $items=$field->getItems(); |
| 181 | - foreach ($items as $_field){ |
|
| 182 | - if($_field instanceof HtmlFormField) |
|
| 181 | + foreach ($items as $_field) { |
|
| 182 | + if ($_field instanceof HtmlFormField) |
|
| 183 | 183 | $compo=$this->addCompoValidation($compo, $_field); |
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | - $this->_runValidationParams($compo,$js); |
|
| 187 | + $this->_runValidationParams($compo, $js); |
|
| 188 | 188 | return $this->_bsComponent; |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - public function addValidationParam($paramName,$paramValue,$before="",$after=""){ |
|
| 192 | - $this->addBehavior($this->_validationParams, $paramName, $paramValue,$before,$after); |
|
| 191 | + public function addValidationParam($paramName, $paramValue, $before="", $after="") { |
|
| 192 | + $this->addBehavior($this->_validationParams, $paramName, $paramValue, $before, $after); |
|
| 193 | 193 | return $this; |
| 194 | 194 | } |
| 195 | 195 | |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | return $this->_validationParams; |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - public function removeValidationParam($param){ |
|
| 205 | + public function removeValidationParam($param) { |
|
| 206 | 206 | unset($this->_validationParams[$param]); |
| 207 | 207 | return $this; |
| 208 | 208 | } |
@@ -52,8 +52,9 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | public function addHeader($title, $niveau=1, $dividing=true) { |
| 54 | 54 | $header=new HtmlHeader("", $niveau, $title); |
| 55 | - if ($dividing) |
|
| 56 | - $header->setDividing(); |
|
| 55 | + if ($dividing) { |
|
| 56 | + $header->setDividing(); |
|
| 57 | + } |
|
| 57 | 58 | return $this->addItem($header); |
| 58 | 59 | } |
| 59 | 60 | |
@@ -81,8 +82,9 @@ discard block |
||
| 81 | 82 | if (\is_string($end)) { |
| 82 | 83 | $label=$end; |
| 83 | 84 | \array_pop($fields); |
| 84 | - } else |
|
| 85 | - $label=NULL; |
|
| 85 | + } else { |
|
| 86 | + $label=NULL; |
|
| 87 | + } |
|
| 86 | 88 | } |
| 87 | 89 | $this->_fields=\array_merge($this->_fields, $fields); |
| 88 | 90 | $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields); |
@@ -146,27 +148,31 @@ discard block |
||
| 146 | 148 | */ |
| 147 | 149 | public function addMessage($identifier, $content, $header=NULL, $icon=NULL, $type=NULL) { |
| 148 | 150 | $message=new HtmlMessage($identifier, $content); |
| 149 | - if (isset($header)) |
|
| 150 | - $message->addHeader($header); |
|
| 151 | - if (isset($icon)) |
|
| 152 | - $message->setIcon($icon); |
|
| 153 | - if (isset($type)) |
|
| 154 | - $message->setStyle($type); |
|
| 151 | + if (isset($header)) { |
|
| 152 | + $message->addHeader($header); |
|
| 153 | + } |
|
| 154 | + if (isset($icon)) { |
|
| 155 | + $message->setIcon($icon); |
|
| 156 | + } |
|
| 157 | + if (isset($type)) { |
|
| 158 | + $message->setStyle($type); |
|
| 159 | + } |
|
| 155 | 160 | return $this->addItem($message); |
| 156 | 161 | } |
| 157 | 162 | |
| 158 | 163 | |
| 159 | 164 | |
| 160 | 165 | public function compile(JsUtils $js=NULL,&$view=NULL){ |
| 161 | - if(\sizeof($this->_validationParams)>0) |
|
| 162 | - $this->setProperty("novalidate", ""); |
|
| 166 | + if(\sizeof($this->_validationParams)>0) { |
|
| 167 | + $this->setProperty("novalidate", ""); |
|
| 168 | + } |
|
| 163 | 169 | return parent::compile($js,$view); |
| 164 | 170 | } |
| 165 | 171 | |
| 166 | 172 | public function run(JsUtils $js) { |
| 167 | 173 | if(isset($js)){ |
| 168 | 174 | $compo=$js->semantic()->form("#".$this->identifier); |
| 169 | - }else{ |
|
| 175 | + } else{ |
|
| 170 | 176 | $compo=new Form(); |
| 171 | 177 | $compo->attach("#".$this->identifier); |
| 172 | 178 | } |
@@ -179,8 +185,9 @@ discard block |
||
| 179 | 185 | if($field instanceof HtmlFormFields){ |
| 180 | 186 | $items=$field->getItems(); |
| 181 | 187 | foreach ($items as $_field){ |
| 182 | - if($_field instanceof HtmlFormField) |
|
| 183 | - $compo=$this->addCompoValidation($compo, $_field); |
|
| 188 | + if($_field instanceof HtmlFormField) { |
|
| 189 | + $compo=$this->addCompoValidation($compo, $_field); |
|
| 190 | + } |
|
| 184 | 191 | } |
| 185 | 192 | } |
| 186 | 193 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * @version 1.001 |
| 8 | 8 | * Generates a JSON field validator |
| 9 | 9 | */ |
| 10 | -class FieldValidation implements \JsonSerializable{ |
|
| 10 | +class FieldValidation implements \JsonSerializable { |
|
| 11 | 11 | /** |
| 12 | 12 | * @var string |
| 13 | 13 | */ |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | protected $optional; |
| 26 | 26 | |
| 27 | - public function __construct($identifier){ |
|
| 27 | + public function __construct($identifier) { |
|
| 28 | 28 | $this->identifier=$identifier; |
| 29 | 29 | $this->rules=[]; |
| 30 | 30 | } |
@@ -48,22 +48,22 @@ discard block |
||
| 48 | 48 | * @param string $value |
| 49 | 49 | * @return Rule |
| 50 | 50 | */ |
| 51 | - public function addRule($type,$prompt=NULL,$value=NULL){ |
|
| 52 | - if($type instanceof Rule) |
|
| 51 | + public function addRule($type, $prompt=NULL, $value=NULL) { |
|
| 52 | + if ($type instanceof Rule) |
|
| 53 | 53 | $rule=$type; |
| 54 | - else if(\is_array($type)){ |
|
| 54 | + else if (\is_array($type)) { |
|
| 55 | 55 | $value=JArray::getValue($type, "value", 2); |
| 56 | 56 | $prompt=JArray::getValue($type, "prompt", 1); |
| 57 | 57 | $type=JArray::getValue($type, "type", 0); |
| 58 | - $rule=new Rule($type,$prompt,$value); |
|
| 59 | - }else |
|
| 60 | - $rule=new Rule($type,$prompt,$value); |
|
| 58 | + $rule=new Rule($type, $prompt, $value); |
|
| 59 | + } else |
|
| 60 | + $rule=new Rule($type, $prompt, $value); |
|
| 61 | 61 | $this->rules[]=$rule; |
| 62 | 62 | return $rule; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - public function jsonSerialize(){ |
|
| 66 | - return ["identifier"=>$this->identifier,"rules"=>$this->rules]; |
|
| 65 | + public function jsonSerialize() { |
|
| 66 | + return ["identifier"=>$this->identifier, "rules"=>$this->rules]; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | public function setDepends($depends) { |
@@ -49,15 +49,16 @@ |
||
| 49 | 49 | * @return Rule |
| 50 | 50 | */ |
| 51 | 51 | public function addRule($type,$prompt=NULL,$value=NULL){ |
| 52 | - if($type instanceof Rule) |
|
| 53 | - $rule=$type; |
|
| 54 | - else if(\is_array($type)){ |
|
| 52 | + if($type instanceof Rule) { |
|
| 53 | + $rule=$type; |
|
| 54 | + } else if(\is_array($type)){ |
|
| 55 | 55 | $value=JArray::getValue($type, "value", 2); |
| 56 | 56 | $prompt=JArray::getValue($type, "prompt", 1); |
| 57 | 57 | $type=JArray::getValue($type, "type", 0); |
| 58 | 58 | $rule=new Rule($type,$prompt,$value); |
| 59 | - }else |
|
| 60 | - $rule=new Rule($type,$prompt,$value); |
|
| 59 | + } else { |
|
| 60 | + $rule=new Rule($type,$prompt,$value); |
|
| 61 | + } |
|
| 61 | 62 | $this->rules[]=$rule; |
| 62 | 63 | return $rule; |
| 63 | 64 | } |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | * @param string $action one of "select","auto","activate","combo","nothing","hide" |
| 18 | 18 | * @return \Ajax\semantic\components\Dropdown |
| 19 | 19 | */ |
| 20 | - public function setAction($action){ |
|
| 21 | - return $this->setParamCtrl("action", $action,array("select","auto","activate","combo","nothing","hide")); |
|
| 20 | + public function setAction($action) { |
|
| 21 | + return $this->setParamCtrl("action", $action, array("select", "auto", "activate", "combo", "nothing", "hide")); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
@@ -26,15 +26,15 @@ discard block |
||
| 26 | 26 | * @param string $event Event used to trigger dropdown (Hover, Click, Custom Event) |
| 27 | 27 | * @return \Ajax\semantic\components\Dropdown |
| 28 | 28 | */ |
| 29 | - public function setOn($event){ |
|
| 29 | + public function setOn($event) { |
|
| 30 | 30 | return $this->setParam("on", $event); |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function setFullTextSearch($value){ |
|
| 33 | + public function setFullTextSearch($value) { |
|
| 34 | 34 | return $this->setParam("fullTextSearch", $value); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - public function setShowOnFocus($value){ |
|
| 37 | + public function setShowOnFocus($value) { |
|
| 38 | 38 | return $this->setParam("showOnFocus", $value); |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -11,11 +11,11 @@ discard block |
||
| 11 | 11 | trait JsUtilsEventsTrait { |
| 12 | 12 | |
| 13 | 13 | |
| 14 | - protected $jquery_events=array ( |
|
| 15 | - "bind","blur","change","click","dblclick","delegate","die","error","focus","focusin","focusout","hover","keydown","keypress","keyup","live","load","mousedown","mousseenter","mouseleave","mousemove","mouseout","mouseover","mouseup","off","on","one","ready","resize","scroll","select","submit","toggle","trigger","triggerHandler","undind","undelegate","unload" |
|
| 14 | + protected $jquery_events=array( |
|
| 15 | + "bind", "blur", "change", "click", "dblclick", "delegate", "die", "error", "focus", "focusin", "focusout", "hover", "keydown", "keypress", "keyup", "live", "load", "mousedown", "mousseenter", "mouseleave", "mousemove", "mouseout", "mouseover", "mouseup", "off", "on", "one", "ready", "resize", "scroll", "select", "submit", "toggle", "trigger", "triggerHandler", "undind", "undelegate", "unload" |
|
| 16 | 16 | ); |
| 17 | 17 | |
| 18 | - abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
| 18 | + abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * Outputs a javascript library blur event |
@@ -37,8 +37,8 @@ discard block |
||
| 37 | 37 | * @param boolean $stopPropagation |
| 38 | 38 | * @return string |
| 39 | 39 | */ |
| 40 | - public function change($element='this', $js='',$preventDefault=false,$stopPropagation=false) { |
|
| 41 | - return $this->_add_event($element, $js, 'change',$preventDefault,$stopPropagation); |
|
| 40 | + public function change($element='this', $js='', $preventDefault=false, $stopPropagation=false) { |
|
| 41 | + return $this->_add_event($element, $js, 'change', $preventDefault, $stopPropagation); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -51,9 +51,9 @@ discard block |
||
| 51 | 51 | * @param boolean $stopPropagation |
| 52 | 52 | * @return string |
| 53 | 53 | */ |
| 54 | - public function click($element='this', $js='', $ret_false=TRUE,$preventDefault=false,$stopPropagation=false) { |
|
| 54 | + public function click($element='this', $js='', $ret_false=TRUE, $preventDefault=false, $stopPropagation=false) { |
|
| 55 | 55 | if (!is_array($js)) { |
| 56 | - $js=array ( |
|
| 56 | + $js=array( |
|
| 57 | 57 | $js |
| 58 | 58 | ); |
| 59 | 59 | } |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $js[]="return false;"; |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - return $this->_add_event($element, $js, 'click',$preventDefault,$stopPropagation); |
|
| 65 | + return $this->_add_event($element, $js, 'click', $preventDefault, $stopPropagation); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -52,8 +52,9 @@ discard block |
||
| 52 | 52 | $retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n"; |
| 53 | 53 | $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n"; |
| 54 | 54 | $retour=$this->_addJsCondition($jsCondition,$retour); |
| 55 | - if ($immediatly) |
|
| 56 | - $this->jquery_code_for_compile[]=$retour; |
|
| 55 | + if ($immediatly) { |
|
| 56 | + $this->jquery_code_for_compile[]=$retour; |
|
| 57 | + } |
|
| 57 | 58 | return $retour; |
| 58 | 59 | } |
| 59 | 60 | |
@@ -89,12 +90,13 @@ discard block |
||
| 89 | 90 | if(JString::isNotNull($attr)){ |
| 90 | 91 | if ($attr==="value"){ |
| 91 | 92 | $retour.="url=url+'".$slash."'+$(this).val();\n"; |
| 92 | - }elseif ($attr==="html"){ |
|
| 93 | + } elseif ($attr==="html"){ |
|
| 93 | 94 | $retour.="url=url+'".$slash."'+$(this).html();\n"; |
| 94 | - }elseif(\substr($attr, 0,3)==="js:"){ |
|
| 95 | + } elseif(\substr($attr, 0,3)==="js:"){ |
|
| 95 | 96 | $retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n"; |
| 96 | - }elseif($attr!==null && $attr!=="") |
|
| 97 | - $retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n"; |
|
| 97 | + } elseif($attr!==null && $attr!=="") { |
|
| 98 | + $retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n"; |
|
| 99 | + } |
|
| 98 | 100 | } |
| 99 | 101 | return $retour; |
| 100 | 102 | } |
@@ -104,13 +106,14 @@ discard block |
||
| 104 | 106 | if (JString::isNotNull($responseElement)) { |
| 105 | 107 | if(isset($ajaxTransition)){ |
| 106 | 108 | $call=$this->setAjaxDataCall($ajaxTransition); |
| 107 | - }elseif(isset($this->ajaxTransition)){ |
|
| 109 | + } elseif(isset($this->ajaxTransition)){ |
|
| 108 | 110 | $call=$this->ajaxTransition; |
| 109 | 111 | } |
| 110 | - if(\is_callable($call)) |
|
| 111 | - $retour="\t".$call($responseElement,$jqueryDone).";\n"; |
|
| 112 | - else |
|
| 113 | - $retour="\t{$responseElement}.{$jqueryDone}( data );\n"; |
|
| 112 | + if(\is_callable($call)) { |
|
| 113 | + $retour="\t".$call($responseElement,$jqueryDone).";\n"; |
|
| 114 | + } else { |
|
| 115 | + $retour="\t{$responseElement}.{$jqueryDone}( data );\n"; |
|
| 116 | + } |
|
| 114 | 117 | } |
| 115 | 118 | $retour.="\t".$jsCallback."\n"; |
| 116 | 119 | return $retour; |
@@ -125,8 +128,9 @@ discard block |
||
| 125 | 128 | } |
| 126 | 129 | |
| 127 | 130 | protected function _correctAjaxUrl($url) { |
| 128 | - if ($url!=="/" && JString::endsWith($url, "/")===true) |
|
| 129 | - $url=substr($url, 0, strlen($url)-1); |
|
| 131 | + if ($url!=="/" && JString::endsWith($url, "/")===true) { |
|
| 132 | + $url=substr($url, 0, strlen($url)-1); |
|
| 133 | + } |
|
| 130 | 134 | if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) { |
| 131 | 135 | $url=$this->getUrl($url); |
| 132 | 136 | } |
@@ -146,8 +150,9 @@ discard block |
||
| 146 | 150 | public static function _implodeParams($parameters){ |
| 147 | 151 | $allParameters=[]; |
| 148 | 152 | foreach ($parameters as $params){ |
| 149 | - if(isset($params)) |
|
| 150 | - $allParameters[]=self::_correctParams($params); |
|
| 153 | + if(isset($params)) { |
|
| 154 | + $allParameters[]=self::_correctParams($params); |
|
| 155 | + } |
|
| 151 | 156 | } |
| 152 | 157 | return \implode("+'&'+", $allParameters); |
| 153 | 158 | } |
@@ -176,8 +181,9 @@ discard block |
||
| 176 | 181 | |
| 177 | 182 | protected function setDefaultParameters(&$parameters,$default){ |
| 178 | 183 | foreach ($default as $k=>$v){ |
| 179 | - if(!isset($parameters[$k])) |
|
| 180 | - $parameters[$k]=$v; |
|
| 184 | + if(!isset($parameters[$k])) { |
|
| 185 | + $parameters[$k]=$v; |
|
| 186 | + } |
|
| 181 | 187 | } |
| 182 | 188 | } |
| 183 | 189 | |
@@ -295,7 +301,7 @@ discard block |
||
| 295 | 301 | if($context===null){ |
| 296 | 302 | $parent="$('".$maskSelector."').parent()"; |
| 297 | 303 | $newElm = "$('#'+newId)"; |
| 298 | - }else{ |
|
| 304 | + } else{ |
|
| 299 | 305 | $parent=$context; |
| 300 | 306 | $newElm = $context.".find('#'+newId)"; |
| 301 | 307 | } |
@@ -497,8 +503,9 @@ discard block |
||
| 497 | 503 | $retour.="$('#".$form."').submit();\n"; |
| 498 | 504 | } |
| 499 | 505 | $retour=$this->_addJsCondition($jsCondition, $retour); |
| 500 | - if ($immediatly) |
|
| 501 | - $this->jquery_code_for_compile[]=$retour; |
|
| 506 | + if ($immediatly) { |
|
| 507 | + $this->jquery_code_for_compile[]=$retour; |
|
| 508 | + } |
|
| 502 | 509 | return $retour; |
| 503 | 510 | } |
| 504 | 511 | |
@@ -16,9 +16,9 @@ discard block |
||
| 16 | 16 | protected $ajaxLoader="<div class=\"ui active centered inline text loader\">Loading</div>"; |
| 17 | 17 | |
| 18 | 18 | abstract public function getUrl($url); |
| 19 | - abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
| 19 | + abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
| 20 | 20 | |
| 21 | - protected function _ajax($method,$url,$responseElement="",$parameters=[]) { |
|
| 21 | + protected function _ajax($method, $url, $responseElement="", $parameters=[]) { |
|
| 22 | 22 | $jsCallback=null; |
| 23 | 23 | $attr="id"; |
| 24 | 24 | $hasLoader=true; |
@@ -36,80 +36,80 @@ discard block |
||
| 36 | 36 | $retour=$this->_getAjaxUrl($url, $attr); |
| 37 | 37 | $responseElement=$this->_getResponseElement($responseElement); |
| 38 | 38 | $retour.="var self=this;\n"; |
| 39 | - if($hasLoader===true && JString::isNotNull($responseElement)){ |
|
| 40 | - $this->addLoading($retour, $responseElement,$ajaxLoader); |
|
| 39 | + if ($hasLoader===true && JString::isNotNull($responseElement)) { |
|
| 40 | + $this->addLoading($retour, $responseElement, $ajaxLoader); |
|
| 41 | 41 | } |
| 42 | - $ajaxParameters=["url"=>"url","method"=>"'".\strtoupper($method)."'"]; |
|
| 43 | - if(!$async){ |
|
| 42 | + $ajaxParameters=["url"=>"url", "method"=>"'".\strtoupper($method)."'"]; |
|
| 43 | + if (!$async) { |
|
| 44 | 44 | $ajaxParameters["async"]="false"; |
| 45 | 45 | } |
| 46 | - if(isset($params)){ |
|
| 46 | + if (isset($params)) { |
|
| 47 | 47 | $ajaxParameters["data"]=self::_correctParams($params); |
| 48 | 48 | } |
| 49 | - if(isset($headers)){ |
|
| 49 | + if (isset($headers)) { |
|
| 50 | 50 | $ajaxParameters["headers"]=$headers; |
| 51 | 51 | } |
| 52 | 52 | $this->createAjaxParameters($ajaxParameters, $parameters); |
| 53 | 53 | $retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n"; |
| 54 | - $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n"; |
|
| 55 | - $retour=$this->_addJsCondition($jsCondition,$retour); |
|
| 54 | + $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback)."});\n"; |
|
| 55 | + $retour=$this->_addJsCondition($jsCondition, $retour); |
|
| 56 | 56 | if ($immediatly) |
| 57 | 57 | $this->jquery_code_for_compile[]=$retour; |
| 58 | 58 | return $retour; |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - protected function createAjaxParameters(&$original,$parameters){ |
|
| 62 | - $validParameters=["dataType"=>"'%value%'","beforeSend"=>"function(jqXHR,settings){%value%}","complete"=>"function(jqXHR){%value%}"]; |
|
| 63 | - foreach ($validParameters as $param=>$mask){ |
|
| 64 | - if(isset($parameters[$param])){ |
|
| 61 | + protected function createAjaxParameters(&$original, $parameters) { |
|
| 62 | + $validParameters=["dataType"=>"'%value%'", "beforeSend"=>"function(jqXHR,settings){%value%}", "complete"=>"function(jqXHR){%value%}"]; |
|
| 63 | + foreach ($validParameters as $param=>$mask) { |
|
| 64 | + if (isset($parameters[$param])) { |
|
| 65 | 65 | $original[$param]=\str_replace("%value%", $parameters[$param], $mask); |
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - protected function implodeAjaxParameters($ajaxParameters){ |
|
| 71 | - $s = ''; foreach ($ajaxParameters as $k=>$v) { if ($s !== '') { $s .= ','; } $s .= "'{$k}':{$v}"; } |
|
| 70 | + protected function implodeAjaxParameters($ajaxParameters) { |
|
| 71 | + $s=''; foreach ($ajaxParameters as $k=>$v) { if ($s!=='') { $s.=','; } $s.="'{$k}':{$v}"; } |
|
| 72 | 72 | return $s; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - protected function _addJsCondition($jsCondition,$jsSource){ |
|
| 76 | - if(isset($jsCondition)){ |
|
| 75 | + protected function _addJsCondition($jsCondition, $jsSource) { |
|
| 76 | + if (isset($jsCondition)) { |
|
| 77 | 77 | return "if(".$jsCondition."){\n".$jsSource."\n}"; |
| 78 | 78 | } |
| 79 | 79 | return $jsSource; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | |
| 83 | - protected function _getAjaxUrl($url,$attr){ |
|
| 83 | + protected function _getAjaxUrl($url, $attr) { |
|
| 84 | 84 | $url=$this->_correctAjaxUrl($url); |
| 85 | 85 | $retour="url='".$url."';"; |
| 86 | 86 | $slash="/"; |
| 87 | - if(JString::endswith($url, "/")===true){ |
|
| 87 | + if (JString::endswith($url, "/")===true) { |
|
| 88 | 88 | $slash=""; |
| 89 | 89 | } |
| 90 | - if(JString::isNotNull($attr)){ |
|
| 91 | - if ($attr==="value"){ |
|
| 90 | + if (JString::isNotNull($attr)) { |
|
| 91 | + if ($attr==="value") { |
|
| 92 | 92 | $retour.="url=url+'".$slash."'+$(this).val();\n"; |
| 93 | - }elseif ($attr==="html"){ |
|
| 93 | + }elseif ($attr==="html") { |
|
| 94 | 94 | $retour.="url=url+'".$slash."'+$(this).html();\n"; |
| 95 | - }elseif(\substr($attr, 0,3)==="js:"){ |
|
| 95 | + }elseif (\substr($attr, 0, 3)==="js:") { |
|
| 96 | 96 | $retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n"; |
| 97 | - }elseif($attr!==null && $attr!=="") |
|
| 97 | + }elseif ($attr!==null && $attr!=="") |
|
| 98 | 98 | $retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n"; |
| 99 | 99 | } |
| 100 | 100 | return $retour; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - protected function _getOnAjaxDone($responseElement,$jqueryDone,$ajaxTransition,$jsCallback){ |
|
| 104 | - $retour="";$call=null; |
|
| 103 | + protected function _getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback) { |
|
| 104 | + $retour=""; $call=null; |
|
| 105 | 105 | if (JString::isNotNull($responseElement)) { |
| 106 | - if(isset($ajaxTransition)){ |
|
| 106 | + if (isset($ajaxTransition)) { |
|
| 107 | 107 | $call=$this->setAjaxDataCall($ajaxTransition); |
| 108 | - }elseif(isset($this->ajaxTransition)){ |
|
| 108 | + }elseif (isset($this->ajaxTransition)) { |
|
| 109 | 109 | $call=$this->ajaxTransition; |
| 110 | 110 | } |
| 111 | - if(\is_callable($call)) |
|
| 112 | - $retour="\t".$call($responseElement,$jqueryDone).";\n"; |
|
| 111 | + if (\is_callable($call)) |
|
| 112 | + $retour="\t".$call($responseElement, $jqueryDone).";\n"; |
|
| 113 | 113 | else |
| 114 | 114 | $retour="\t{$responseElement}.{$jqueryDone}( data );\n"; |
| 115 | 115 | } |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | return $retour; |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - protected function _getResponseElement($responseElement){ |
|
| 120 | + protected function _getResponseElement($responseElement) { |
|
| 121 | 121 | if (JString::isNotNull($responseElement)) { |
| 122 | 122 | $responseElement=Javascript::prep_value($responseElement); |
| 123 | 123 | $responseElement=Javascript::prep_jquery_selector($responseElement); |
@@ -128,33 +128,33 @@ discard block |
||
| 128 | 128 | protected function _correctAjaxUrl($url) { |
| 129 | 129 | if ($url!=="/" && JString::endsWith($url, "/")===true) |
| 130 | 130 | $url=substr($url, 0, strlen($url)-1); |
| 131 | - if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) { |
|
| 131 | + if (strncmp($url, 'http://', 7)!=0 && strncmp($url, 'https://', 8)!=0) { |
|
| 132 | 132 | $url=$this->getUrl($url); |
| 133 | 133 | } |
| 134 | 134 | return $url; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - public static function _correctParams($params){ |
|
| 138 | - if(JString::isNull($params)){ |
|
| 137 | + public static function _correctParams($params) { |
|
| 138 | + if (JString::isNull($params)) { |
|
| 139 | 139 | return ""; |
| 140 | 140 | } |
| 141 | - if(\preg_match("@^\{.*?\}$@", $params)){ |
|
| 141 | + if (\preg_match("@^\{.*?\}$@", $params)) { |
|
| 142 | 142 | return '$.param('.$params.')'; |
| 143 | 143 | } |
| 144 | 144 | return $params; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - public static function _implodeParams($parameters){ |
|
| 147 | + public static function _implodeParams($parameters) { |
|
| 148 | 148 | $allParameters=[]; |
| 149 | - foreach ($parameters as $params){ |
|
| 150 | - if(isset($params)) |
|
| 149 | + foreach ($parameters as $params) { |
|
| 150 | + if (isset($params)) |
|
| 151 | 151 | $allParameters[]=self::_correctParams($params); |
| 152 | 152 | } |
| 153 | 153 | return \implode("+'&'+", $allParameters); |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - protected function addLoading(&$retour, $responseElement,$ajaxLoader=null) { |
|
| 157 | - if(!isset($ajaxLoader)){ |
|
| 156 | + protected function addLoading(&$retour, $responseElement, $ajaxLoader=null) { |
|
| 157 | + if (!isset($ajaxLoader)) { |
|
| 158 | 158 | $ajaxLoader=$this->ajaxLoader; |
| 159 | 159 | } |
| 160 | 160 | $loading_notifier='<div class="ajax-loader">'.$ajaxLoader.'</div>'; |
@@ -162,19 +162,19 @@ discard block |
||
| 162 | 162 | $retour.="\t\t{$responseElement}.prepend('{$loading_notifier}');\n"; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - protected function setAjaxDataCall($params){ |
|
| 165 | + protected function setAjaxDataCall($params) { |
|
| 166 | 166 | $result=null; |
| 167 | - if(!\is_callable($params)){ |
|
| 168 | - $result=function ($responseElement,$jqueryDone="html") use($params){ |
|
| 169 | - return AjaxTransition::{$params}($responseElement,$jqueryDone); |
|
| 167 | + if (!\is_callable($params)) { |
|
| 168 | + $result=function($responseElement, $jqueryDone="html") use($params){ |
|
| 169 | + return AjaxTransition::{$params}($responseElement, $jqueryDone); |
|
| 170 | 170 | }; |
| 171 | 171 | } |
| 172 | 172 | return $result; |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - protected function setDefaultParameters(&$parameters,$default){ |
|
| 176 | - foreach ($default as $k=>$v){ |
|
| 177 | - if(!isset($parameters[$k])) |
|
| 175 | + protected function setDefaultParameters(&$parameters, $default) { |
|
| 176 | + foreach ($default as $k=>$v) { |
|
| 177 | + if (!isset($parameters[$k])) |
|
| 178 | 178 | $parameters[$k]=$v; |
| 179 | 179 | } |
| 180 | 180 | } |
@@ -188,8 +188,8 @@ discard block |
||
| 188 | 188 | * @param string $url The url of the request |
| 189 | 189 | * @param string $responseElement selector of the HTML element displaying the answer |
| 190 | 190 | */ |
| 191 | - private function _get($url, $responseElement="",$parameters=[]) { |
|
| 192 | - return $this->_ajax("get", $url,$responseElement,$parameters); |
|
| 191 | + private function _get($url, $responseElement="", $parameters=[]) { |
|
| 192 | + return $this->_ajax("get", $url, $responseElement, $parameters); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -198,9 +198,9 @@ discard block |
||
| 198 | 198 | * @param string $responseElement selector of the HTML element displaying the answer |
| 199 | 199 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null) |
| 200 | 200 | */ |
| 201 | - public function get($url, $responseElement="",$parameters=[]) { |
|
| 201 | + public function get($url, $responseElement="", $parameters=[]) { |
|
| 202 | 202 | $parameters["immediatly"]=true; |
| 203 | - return $this->_get($url,$responseElement,$parameters); |
|
| 203 | + return $this->_get($url, $responseElement, $parameters); |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | /** |
@@ -210,9 +210,9 @@ discard block |
||
| 210 | 210 | * @param string $responseElement selector of the HTML element displaying the answer |
| 211 | 211 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null) |
| 212 | 212 | */ |
| 213 | - public function ajax($method,$url, $responseElement="", $parameters=[]) { |
|
| 213 | + public function ajax($method, $url, $responseElement="", $parameters=[]) { |
|
| 214 | 214 | $parameters["immediatly"]=true; |
| 215 | - return $this->_ajax($method,$url,$responseElement,$parameters); |
|
| 215 | + return $this->_ajax($method, $url, $responseElement, $parameters); |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | /** |
@@ -222,9 +222,9 @@ discard block |
||
| 222 | 222 | * @param string $responseElement selector of the HTML element displaying the answer |
| 223 | 223 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null) |
| 224 | 224 | */ |
| 225 | - public function ajaxDeferred($method,$url, $responseElement="", $parameters=[]) { |
|
| 225 | + public function ajaxDeferred($method, $url, $responseElement="", $parameters=[]) { |
|
| 226 | 226 | $parameters["immediatly"]=false; |
| 227 | - return $this->_ajax($method,$url,$responseElement,$parameters); |
|
| 227 | + return $this->_ajax($method, $url, $responseElement, $parameters); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | /** |
@@ -233,15 +233,15 @@ discard block |
||
| 233 | 233 | * @param string $method Method used |
| 234 | 234 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>"document","jsCondition"=>NULL,"headers"=>null,"immediatly"=>false) |
| 235 | 235 | */ |
| 236 | - private function _json($url, $method="get",$parameters=[]) { |
|
| 237 | - $parameters=\array_merge($parameters,["hasLoader"=>false]); |
|
| 236 | + private function _json($url, $method="get", $parameters=[]) { |
|
| 237 | + $parameters=\array_merge($parameters, ["hasLoader"=>false]); |
|
| 238 | 238 | $jsCallback=isset($parameters['jsCallback']) ? $parameters['jsCallback'] : ""; |
| 239 | 239 | $context=isset($parameters['context']) ? $parameters['context'] : "document"; |
| 240 | 240 | $retour="\tdata=($.isPlainObject(data))?data:JSON.parse(data);\t".$jsCallback.";\n\tfor(var key in data){" |
| 241 | 241 | ."if($('#'+key,".$context.").length){ if($('#'+key,".$context.").is('[value]')) { $('#'+key,".$context.").val(data[key]);} else { $('#'+key,".$context.").html(data[key]); }}};\n"; |
| 242 | 242 | $retour.="\t$(document).trigger('jsonReady',[data]);\n"; |
| 243 | 243 | $parameters["jsCallback"]=$retour; |
| 244 | - return $this->_ajax($method, $url,null,$parameters); |
|
| 244 | + return $this->_ajax($method, $url, null, $parameters); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | /** |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>"document","jsCondition"=>NULL,"headers"=>null,"immediatly"=>false) |
| 252 | 252 | */ |
| 253 | 253 | public function json($url, $method="get", $parameters=[]) { |
| 254 | - return $this->_json($url,$method,$parameters); |
|
| 254 | + return $this->_json($url, $method, $parameters); |
|
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | /** |
@@ -262,9 +262,9 @@ discard block |
||
| 262 | 262 | * @param string $method default get |
| 263 | 263 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true) |
| 264 | 264 | */ |
| 265 | - public function jsonOn($event,$element, $url,$method="get",$parameters=array()) { |
|
| 266 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 267 | - return $this->_add_event($element, $this->jsonDeferred($url,$method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 265 | + public function jsonOn($event, $element, $url, $method="get", $parameters=array()) { |
|
| 266 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 267 | + return $this->_add_event($element, $this->jsonDeferred($url, $method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | /** |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | */ |
| 276 | 276 | public function jsonDeferred($url, $method="get", $parameters=[]) { |
| 277 | 277 | $parameters["immediatly"]=false; |
| 278 | - return $this->_json($url,$method,$parameters); |
|
| 278 | + return $this->_json($url, $method, $parameters); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | /** |
@@ -286,26 +286,26 @@ discard block |
||
| 286 | 286 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>null,"jsCondition"=>NULL,"headers"=>null,"immediatly"=>false,"rowClass"=>"_json") |
| 287 | 287 | */ |
| 288 | 288 | private function _jsonArray($maskSelector, $url, $method="get", $parameters=[]) { |
| 289 | - $parameters=\array_merge($parameters,["hasLoader"=>false]); |
|
| 289 | + $parameters=\array_merge($parameters, ["hasLoader"=>false]); |
|
| 290 | 290 | $rowClass=isset($parameters['rowClass']) ? $parameters['rowClass'] : "_json"; |
| 291 | 291 | $jsCallback=isset($parameters['jsCallback']) ? $parameters['jsCallback'] : ""; |
| 292 | 292 | $context=isset($parameters['context']) ? $parameters['context'] : null; |
| 293 | - if($context===null){ |
|
| 293 | + if ($context===null) { |
|
| 294 | 294 | $parent="$('".$maskSelector."').parent()"; |
| 295 | - $newElm = "$('#'+newId)"; |
|
| 296 | - }else{ |
|
| 295 | + $newElm="$('#'+newId)"; |
|
| 296 | + } else { |
|
| 297 | 297 | $parent=$context; |
| 298 | - $newElm = $context.".find('#'+newId)"; |
|
| 298 | + $newElm=$context.".find('#'+newId)"; |
|
| 299 | 299 | } |
| 300 | 300 | $appendTo="\t\tnewElm.appendTo(".$parent.");\n"; |
| 301 | 301 | $retour=$parent.".find('.{$rowClass}').remove();"; |
| 302 | 302 | $retour.="\tdata=($.isPlainObject(data))?data:JSON.parse(data);\t".$jsCallback.";\n$.each(data, function(index, value) {\n"."\tvar created=false;var maskElm=$('".$maskSelector."').first();maskElm.hide();"."\tvar newId=(maskElm.attr('id') || 'mask')+'-'+index;"."\tvar newElm=".$newElm.";\n"."\tif(!newElm.length){\n"."\t\tnewElm=maskElm.clone(); |
| 303 | 303 | newElm.attr('id',newId);\n;newElm.addClass('{$rowClass}').removeClass('_jsonArrayModel');\nnewElm.find('[id]').each(function(){ var newId=$(this).attr('id')+'-'+index;$(this).attr('id',newId).removeClass('_jsonArrayChecked');});\n"; |
| 304 | - $retour.= $appendTo; |
|
| 304 | + $retour.=$appendTo; |
|
| 305 | 305 | $retour.="\t}\n"."\tfor(var key in value){\n"."\t\t\tvar html = $('<div />').append($(newElm).clone()).html();\n"."\t\t\tif(html.indexOf('__'+key+'__')>-1){\n"."\t\t\t\tcontent=$(html.split('__'+key+'__').join(value[key]));\n"."\t\t\t\t$(newElm).replaceWith(content);newElm=content;\n"."\t\t\t}\n"."\t\tvar sel='[data-id=\"'+key+'\"]';if($(sel,newElm).length){\n"."\t\t\tvar selElm=$(sel,newElm);\n"."\t\t\t if(selElm.is('[value]')) { selElm.attr('value',value[key]);selElm.val(value[key]);} else { selElm.html(value[key]); }\n"."\t\t}\n"."}\n"."\t$(newElm).show(true);"."\n"."\t$(newElm).removeClass('hide');"."});\n"; |
| 306 | 306 | $retour.="\t$(document).trigger('jsonReady',[data]);\n"; |
| 307 | 307 | $parameters["jsCallback"]=$retour; |
| 308 | - return $this->_ajax($method, $url,null,$parameters); |
|
| 308 | + return $this->_ajax($method, $url, null, $parameters); |
|
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | /** |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>null,"jsCondition"=>NULL,"headers"=>null,"immediatly"=>false,"rowClass"=>"_json") |
| 317 | 317 | */ |
| 318 | 318 | public function jsonArray($maskSelector, $url, $method="get", $parameters=[]) { |
| 319 | - return $this->_jsonArray($maskSelector, $url,$method,$parameters); |
|
| 319 | + return $this->_jsonArray($maskSelector, $url, $method, $parameters); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | /** |
@@ -339,9 +339,9 @@ discard block |
||
| 339 | 339 | * @param string $method Method used, default : get |
| 340 | 340 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","rowClass"=>"_json","immediatly"=>true) |
| 341 | 341 | */ |
| 342 | - public function jsonArrayOn($event,$element,$maskSelector, $url,$method="get",$parameters=array()) { |
|
| 343 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 344 | - return $this->_add_event($element, $this->jsonArrayDeferred($maskSelector,$url,$method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 342 | + public function jsonArrayOn($event, $element, $maskSelector, $url, $method="get", $parameters=array()) { |
|
| 343 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 344 | + return $this->_add_event($element, $this->jsonArrayDeferred($maskSelector, $url, $method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | /** |
@@ -353,7 +353,7 @@ discard block |
||
| 353 | 353 | */ |
| 354 | 354 | public function getDeferred($url, $responseElement="", $parameters=[]) { |
| 355 | 355 | $parameters["immediatly"]=false; |
| 356 | - return $this->_get($url, $responseElement,$parameters); |
|
| 356 | + return $this->_get($url, $responseElement, $parameters); |
|
| 357 | 357 | } |
| 358 | 358 | |
| 359 | 359 | /** |
@@ -366,8 +366,8 @@ discard block |
||
| 366 | 366 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>null,"headers"=>null) |
| 367 | 367 | */ |
| 368 | 368 | public function getOn($event, $element, $url, $responseElement="", $parameters=array()) { |
| 369 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 370 | - return $this->_add_event($element, $this->getDeferred($url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 369 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 370 | + return $this->_add_event($element, $this->getDeferred($url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 371 | 371 | } |
| 372 | 372 | |
| 373 | 373 | /** |
@@ -380,8 +380,8 @@ discard block |
||
| 380 | 380 | * @param array $parameters default : array("method"=>"get","preventDefault"=>true,"stopPropagation"=>true,"params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","jsCondition"=>NULL,"headers"=>null) |
| 381 | 381 | */ |
| 382 | 382 | public function ajaxOn($event, $element, $url, $responseElement="", $parameters=array()) { |
| 383 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true,"method"=>"get"]); |
|
| 384 | - return $this->_add_event($element, $this->ajaxDeferred($parameters["method"],$url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 383 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true, "method"=>"get"]); |
|
| 384 | + return $this->_add_event($element, $this->ajaxDeferred($parameters["method"], $url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | /** |
@@ -408,9 +408,9 @@ discard block |
||
| 408 | 408 | return $this->getOn("click", $element, $url, $responseElement, $parameters); |
| 409 | 409 | } |
| 410 | 410 | |
| 411 | - private function _post($url, $params="{}",$responseElement="", $parameters=[]) { |
|
| 411 | + private function _post($url, $params="{}", $responseElement="", $parameters=[]) { |
|
| 412 | 412 | $parameters["params"]=$params; |
| 413 | - return $this->_ajax("POST", $url,$responseElement,$parameters); |
|
| 413 | + return $this->_ajax("POST", $url, $responseElement, $parameters); |
|
| 414 | 414 | } |
| 415 | 415 | |
| 416 | 416 | /** |
@@ -420,8 +420,8 @@ discard block |
||
| 420 | 420 | * @param string $params JSON parameters |
| 421 | 421 | * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null) |
| 422 | 422 | */ |
| 423 | - public function post($url, $params="{}",$responseElement="", $parameters=[]) { |
|
| 424 | - return $this->_post($url, $params,$responseElement, $parameters); |
|
| 423 | + public function post($url, $params="{}", $responseElement="", $parameters=[]) { |
|
| 424 | + return $this->_post($url, $params, $responseElement, $parameters); |
|
| 425 | 425 | } |
| 426 | 426 | |
| 427 | 427 | /** |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | * @param string $responseElement selector of the HTML element displaying the answer |
| 433 | 433 | * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null) |
| 434 | 434 | */ |
| 435 | - public function postDeferred($url, $params="{}",$responseElement="", $parameters=[]) { |
|
| 435 | + public function postDeferred($url, $params="{}", $responseElement="", $parameters=[]) { |
|
| 436 | 436 | $parameters["immediatly"]=false; |
| 437 | 437 | return $this->_post($url, $params, $responseElement, $parameters); |
| 438 | 438 | } |
@@ -448,8 +448,8 @@ discard block |
||
| 448 | 448 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null) |
| 449 | 449 | */ |
| 450 | 450 | public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) { |
| 451 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 452 | - return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 451 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 452 | + return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 453 | 453 | } |
| 454 | 454 | |
| 455 | 455 | /** |
@@ -466,27 +466,27 @@ discard block |
||
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | private function _postForm($url, $form, $responseElement, $parameters=[]) { |
| 469 | - $params="{}";$validation=false;$jsCallback=NULL;$attr="id";$hasLoader=true;$ajaxLoader=null;$jqueryDone="html";$ajaxTransition=null;$immediatly=false;$jsCondition=NULL;$headers=NULL;$async=true; |
|
| 469 | + $params="{}"; $validation=false; $jsCallback=NULL; $attr="id"; $hasLoader=true; $ajaxLoader=null; $jqueryDone="html"; $ajaxTransition=null; $immediatly=false; $jsCondition=NULL; $headers=NULL; $async=true; |
|
| 470 | 470 | \extract($parameters); |
| 471 | - $async=($async)?"true":"false"; |
|
| 471 | + $async=($async) ? "true" : "false"; |
|
| 472 | 472 | $jsCallback=isset($jsCallback) ? $jsCallback : ""; |
| 473 | 473 | $retour=$this->_getAjaxUrl($url, $attr); |
| 474 | 474 | $retour.="\nvar params=$('#".$form."').serialize();\n"; |
| 475 | - if(isset($params)){ |
|
| 475 | + if (isset($params)) { |
|
| 476 | 476 | $retour.="params+='&'+".self::_correctParams($params).";\n"; |
| 477 | 477 | } |
| 478 | 478 | $responseElement=$this->_getResponseElement($responseElement); |
| 479 | 479 | $retour.="var self=this;\n"; |
| 480 | - if($hasLoader===true){ |
|
| 481 | - $this->addLoading($retour, $responseElement,$ajaxLoader); |
|
| 480 | + if ($hasLoader===true) { |
|
| 481 | + $this->addLoading($retour, $responseElement, $ajaxLoader); |
|
| 482 | 482 | } |
| 483 | - $ajaxParameters=["url"=>"url","method"=>"'POST'","data"=>"params","async"=>$async]; |
|
| 484 | - if(isset($headers)){ |
|
| 483 | + $ajaxParameters=["url"=>"url", "method"=>"'POST'", "data"=>"params", "async"=>$async]; |
|
| 484 | + if (isset($headers)) { |
|
| 485 | 485 | $ajaxParameters["headers"]=$headers; |
| 486 | 486 | } |
| 487 | 487 | $this->createAjaxParameters($ajaxParameters, $parameters); |
| 488 | 488 | $retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data ) {\n"; |
| 489 | - $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback)."});\n"; |
|
| 489 | + $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback)."});\n"; |
|
| 490 | 490 | |
| 491 | 491 | if ($validation) { |
| 492 | 492 | $retour="$('#".$form."').validate({submitHandler: function(form) { |
@@ -536,8 +536,8 @@ discard block |
||
| 536 | 536 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>null,"headers"=>null) |
| 537 | 537 | */ |
| 538 | 538 | public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) { |
| 539 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 540 | - return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 539 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 540 | + return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 541 | 541 | } |
| 542 | 542 | |
| 543 | 543 | /** |
@@ -23,21 +23,21 @@ discard block |
||
| 23 | 23 | $this->parameters["immediatly"]=false; |
| 24 | 24 | extract($this->parameters); |
| 25 | 25 | $result=$this->_eventPreparing($preventDefault, $stopPropagation); |
| 26 | - switch($this->method) { |
|
| 26 | + switch ($this->method) { |
|
| 27 | 27 | case "get": |
| 28 | 28 | $result.=$js->getDeferred($url, $responseElement, $this->parameters); |
| 29 | 29 | break; |
| 30 | 30 | case "post": |
| 31 | - $result.=$js->postDeferred($url, $params,$responseElement, $this->parameters); |
|
| 31 | + $result.=$js->postDeferred($url, $params, $responseElement, $this->parameters); |
|
| 32 | 32 | break; |
| 33 | 33 | case "postForm": |
| 34 | 34 | $result.=$js->postFormDeferred($url, $form, $responseElement, $this->parameters); |
| 35 | 35 | break; |
| 36 | 36 | case "json": |
| 37 | - $result.=$js->jsonDeferred($url,$method,$this->parameters); |
|
| 37 | + $result.=$js->jsonDeferred($url, $method, $this->parameters); |
|
| 38 | 38 | break; |
| 39 | 39 | case "jsonArray": |
| 40 | - $result.=$js->jsonArrayDeferred($modelSelector, $url,$method,$this->parameters); |
|
| 40 | + $result.=$js->jsonArrayDeferred($modelSelector, $url, $method, $this->parameters); |
|
| 41 | 41 | break; |
| 42 | 42 | default: |
| 43 | 43 | //$result.=$js->ajax($this->method, $url,$responseElement,$this->parameters); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | return $result; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - protected function _eventPreparing($preventDefault,$stopPropagation){ |
|
| 49 | + protected function _eventPreparing($preventDefault, $stopPropagation) { |
|
| 50 | 50 | $result=""; |
| 51 | 51 | if ($preventDefault===true) { |
| 52 | 52 | $result.=Javascript::$preventDefault; |
@@ -14,8 +14,9 @@ |
||
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | public function compile(JsUtils $js=null) { |
| 17 | - if ($js===null) |
|
| 18 | - return; |
|
| 17 | + if ($js===null) { |
|
| 18 | + return; |
|
| 19 | + } |
|
| 19 | 20 | $params="{}"; |
| 20 | 21 | $stopPropagation=true; |
| 21 | 22 | $preventDefault=true; |
@@ -6,44 +6,44 @@ discard block |
||
| 6 | 6 | use Symfony\Component\HttpFoundation\Request; |
| 7 | 7 | use Symfony\Component\HttpKernel\HttpKernelInterface; |
| 8 | 8 | use Ajax\service\JString; |
| 9 | -class JsUtils extends \Ajax\JsUtils{ |
|
| 9 | +class JsUtils extends \Ajax\JsUtils { |
|
| 10 | 10 | |
| 11 | - public function getUrl($url){ |
|
| 11 | + public function getUrl($url) { |
|
| 12 | 12 | $router=$this->getInjected(); |
| 13 | - if(isset($router)){ |
|
| 13 | + if (isset($router)) { |
|
| 14 | 14 | try { |
| 15 | 15 | $url=$router->generate($url); |
| 16 | - }catch (\Exception $e){ |
|
| 16 | + }catch (\Exception $e) { |
|
| 17 | 17 | return $url; |
| 18 | 18 | } |
| 19 | 19 | } |
| 20 | 20 | return $url; |
| 21 | 21 | } |
| 22 | - public function addViewElement($identifier,$content,&$view){ |
|
| 23 | - if(\is_array($view)){ |
|
| 24 | - if(\array_key_exists("q", $view)===false){ |
|
| 22 | + public function addViewElement($identifier, $content, &$view) { |
|
| 23 | + if (\is_array($view)) { |
|
| 24 | + if (\array_key_exists("q", $view)===false) { |
|
| 25 | 25 | $view["q"]=array(); |
| 26 | 26 | } |
| 27 | 27 | $view["q"][$identifier]=$content; |
| 28 | - }elseif($view instanceof \Twig_Environment){ |
|
| 28 | + }elseif ($view instanceof \Twig_Environment) { |
|
| 29 | 29 | $vars=$view->getGlobals(); |
| 30 | - if(\array_key_exists("q", $vars)===false){ |
|
| 30 | + if (\array_key_exists("q", $vars)===false) { |
|
| 31 | 31 | $vars["q"]=array(); |
| 32 | 32 | } |
| 33 | 33 | $vars["q"][$identifier]=$content; |
| 34 | - $view->addGlobal("q",$vars["q"]); |
|
| 34 | + $view->addGlobal("q", $vars["q"]); |
|
| 35 | 35 | } |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - public function createScriptVariable(&$view,$view_var, $output){ |
|
| 38 | + public function createScriptVariable(&$view, $view_var, $output) { |
|
| 39 | 39 | $this->addVariable($view_var, $output, $view); |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - protected function addVariable($key,$value,&$view){ |
|
| 43 | - if(\is_array($view)){ |
|
| 42 | + protected function addVariable($key, $value, &$view) { |
|
| 43 | + if (\is_array($view)) { |
|
| 44 | 44 | $view[$key]=$value; |
| 45 | - }elseif($view instanceof \Twig_Environment){ |
|
| 46 | - $view->addGlobal($key,$value); |
|
| 45 | + }elseif ($view instanceof \Twig_Environment) { |
|
| 46 | + $view->addGlobal($key, $value); |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
@@ -54,17 +54,17 @@ discard block |
||
| 54 | 54 | * @param array $params |
| 55 | 55 | * @see \Ajax\JsUtils::forward() |
| 56 | 56 | */ |
| 57 | - public function forward($initialControllerInstance,$controllerName,$actionName,$params=array()){ |
|
| 57 | + public function forward($initialControllerInstance, $controllerName, $actionName, $params=array()) { |
|
| 58 | 58 | $path=$params; |
| 59 | - $request = $initialControllerInstance->get('request_stack')->getCurrentRequest(); |
|
| 60 | - $path['_forwarded'] = $request->attributes; |
|
| 61 | - $path['_controller'] = $controllerName.":".$actionName; |
|
| 62 | - $subRequest = $request->duplicate([], null, $path); |
|
| 63 | - $response= $initialControllerInstance->get('http_kernel')->handle($subRequest, HttpKernelInterface::SUB_REQUEST); |
|
| 59 | + $request=$initialControllerInstance->get('request_stack')->getCurrentRequest(); |
|
| 60 | + $path['_forwarded']=$request->attributes; |
|
| 61 | + $path['_controller']=$controllerName.":".$actionName; |
|
| 62 | + $subRequest=$request->duplicate([], null, $path); |
|
| 63 | + $response=$initialControllerInstance->get('http_kernel')->handle($subRequest, HttpKernelInterface::SUB_REQUEST); |
|
| 64 | 64 | return $response->getContent(); |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - public function renderContent($initialControllerInstance,$viewName, $params=NULL) { |
|
| 67 | + public function renderContent($initialControllerInstance, $viewName, $params=NULL) { |
|
| 68 | 68 | if ($initialControllerInstance->has('templating')) { |
| 69 | 69 | return $initialControllerInstance->get('templating')->render($viewName, $params); |
| 70 | 70 | } |
@@ -76,10 +76,10 @@ discard block |
||
| 76 | 76 | return $initialControllerInstance->get('twig')->render($viewName, $params); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - public function fromDispatcher($dispatcher){ |
|
| 80 | - $request = $dispatcher->get('request_stack')->getCurrentRequest(); |
|
| 79 | + public function fromDispatcher($dispatcher) { |
|
| 80 | + $request=$dispatcher->get('request_stack')->getCurrentRequest(); |
|
| 81 | 81 | $uri=$request->getPathInfo(); |
| 82 | - if(JString::startswith($uri, "/")){ |
|
| 82 | + if (JString::startswith($uri, "/")) { |
|
| 83 | 83 | $uri=\substr($uri, 1); |
| 84 | 84 | } |
| 85 | 85 | return \explode("/", $uri); |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | if(isset($router)){ |
| 14 | 14 | try { |
| 15 | 15 | $url=$router->generate($url); |
| 16 | - }catch (\Exception $e){ |
|
| 16 | + } catch (\Exception $e){ |
|
| 17 | 17 | return $url; |
| 18 | 18 | } |
| 19 | 19 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $view["q"]=array(); |
| 26 | 26 | } |
| 27 | 27 | $view["q"][$identifier]=$content; |
| 28 | - }elseif($view instanceof \Twig_Environment){ |
|
| 28 | + } elseif($view instanceof \Twig_Environment){ |
|
| 29 | 29 | $vars=$view->getGlobals(); |
| 30 | 30 | if(\array_key_exists("q", $vars)===false){ |
| 31 | 31 | $vars["q"]=array(); |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | protected function addVariable($key,$value,&$view){ |
| 43 | 43 | if(\is_array($view)){ |
| 44 | 44 | $view[$key]=$value; |
| 45 | - }elseif($view instanceof \Twig_Environment){ |
|
| 45 | + } elseif($view instanceof \Twig_Environment){ |
|
| 46 | 46 | $view->addGlobal($key,$value); |
| 47 | 47 | } |
| 48 | 48 | } |
@@ -109,15 +109,18 @@ discard block |
||
| 109 | 109 | $flag=false; |
| 110 | 110 | $index=0; |
| 111 | 111 | while ( !$flag && $index < sizeof($elements) ) { |
| 112 | - if ($elements[$index] instanceof BaseHtml) |
|
| 113 | - $flag=($callback($elements[$index])); |
|
| 112 | + if ($elements[$index] instanceof BaseHtml) { |
|
| 113 | + $flag=($callback($elements[$index])); |
|
| 114 | + } |
|
| 114 | 115 | $index++; |
| 115 | 116 | } |
| 116 | - if ($flag === true) |
|
| 117 | - return $elements[$index - 1]; |
|
| 117 | + if ($flag === true) { |
|
| 118 | + return $elements[$index - 1]; |
|
| 119 | + } |
|
| 118 | 120 | } elseif ($elements instanceof BaseHtml) { |
| 119 | - if ($callback($elements)) |
|
| 120 | - return $elements; |
|
| 121 | + if ($callback($elements)) { |
|
| 122 | + return $elements; |
|
| 123 | + } |
|
| 121 | 124 | } |
| 122 | 125 | return null; |
| 123 | 126 | } |
@@ -143,8 +146,9 @@ discard block |
||
| 143 | 146 | |
| 144 | 147 | public function fromArray($array) { |
| 145 | 148 | foreach ( $this as $key => $value ) { |
| 146 | - if(array_key_exists($key, $array)===true) |
|
| 147 | - $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 149 | + if(array_key_exists($key, $array)===true) { |
|
| 150 | + $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 151 | + } |
|
| 148 | 152 | } |
| 149 | 153 | foreach ( $array as $key => $value ) { |
| 150 | 154 | if($this->_callSetter($key, $key, $value, $array)===false){ |
@@ -213,9 +217,9 @@ discard block |
||
| 213 | 217 | if(\strstr($result, "%{$key}%")!==false){ |
| 214 | 218 | if (\is_array($value)) { |
| 215 | 219 | $v=PropertyWrapper::wrap($value, $js); |
| 216 | - }elseif($value instanceof \stdClass){ |
|
| 220 | + } elseif($value instanceof \stdClass){ |
|
| 217 | 221 | $v=\print_r($value,true); |
| 218 | - }else{ |
|
| 222 | + } else{ |
|
| 219 | 223 | $v=$value; |
| 220 | 224 | } |
| 221 | 225 | $result=str_replace("%{$key}%", $v, $result); |
@@ -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 $_postCompile; |
@@ -32,14 +32,14 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | abstract public function run(JsUtils $js); |
| 34 | 34 | |
| 35 | - private function _callSetter($setter,$key,$value,&$array){ |
|
| 35 | + private function _callSetter($setter, $key, $value, &$array) { |
|
| 36 | 36 | $result=false; |
| 37 | - if (method_exists($this, $setter) && substr($setter, 0, 1) !== "_") { |
|
| 37 | + if (method_exists($this, $setter) && substr($setter, 0, 1)!=="_") { |
|
| 38 | 38 | try { |
| 39 | 39 | $this->$setter($value); |
| 40 | 40 | unset($array[$key]); |
| 41 | 41 | $result=true; |
| 42 | - } catch ( \Exception $e ) { |
|
| 42 | + }catch (\Exception $e) { |
|
| 43 | 43 | $result=false; |
| 44 | 44 | } |
| 45 | 45 | } |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | protected function getTemplate(JsUtils $js=NULL) { |
| 50 | - return PropertyWrapper::wrap($this->_wrapBefore, $js) . $this->_template . PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
| 50 | + return PropertyWrapper::wrap($this->_wrapBefore, $js).$this->_template.PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | protected function ctrl($name, $value, $typeCtrl) { |
| 54 | 54 | if (\is_array($typeCtrl)) { |
| 55 | - if (array_search($value, $typeCtrl) === false) { |
|
| 56 | - throw new \Exception("La valeur passée `" . $value . "` à la propriété `" . $name . "` ne fait pas partie des valeurs possibles : {" . implode(",", $typeCtrl) . "}"); |
|
| 55 | + if (array_search($value, $typeCtrl)===false) { |
|
| 56 | + throw new \Exception("La valeur passée `".$value."` à la propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
| 57 | 57 | } |
| 58 | 58 | } else { |
| 59 | 59 | if (!$typeCtrl($value)) { |
| 60 | - throw new \Exception("La fonction " . $typeCtrl . " a retourné faux pour l'affectation de la propriété " . $name); |
|
| 60 | + throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name); |
|
| 61 | 61 | } |
| 62 | 62 | } |
| 63 | 63 | return true; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | |
| 68 | 68 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
| 69 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 69 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 70 | 70 | return $name=$value; |
| 71 | 71 | } |
| 72 | 72 | return $this; |
@@ -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 | } |
@@ -83,17 +83,17 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | |
| 85 | 85 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
| 86 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 86 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 87 | 87 | if (\is_array($typeCtrl)) { |
| 88 | 88 | $this->removeOldValues($name, $typeCtrl); |
| 89 | 89 | } |
| 90 | - $name.=$separator . $value; |
|
| 90 | + $name.=$separator.$value; |
|
| 91 | 91 | } |
| 92 | 92 | return $this; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | protected function addToMember(&$name, $value, $separator=" ") { |
| 96 | - $name=str_ireplace($value, "", $name) . $separator . $value; |
|
| 96 | + $name=str_ireplace($value, "", $name).$separator.$value; |
|
| 97 | 97 | return $this; |
| 98 | 98 | } |
| 99 | 99 | |
@@ -104,18 +104,18 @@ discard block |
||
| 104 | 104 | $oldValue=trim($oldValue); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - protected function _getElementBy($callback,$elements){ |
|
| 107 | + protected function _getElementBy($callback, $elements) { |
|
| 108 | 108 | if (\is_array($elements)) { |
| 109 | 109 | $elements=\array_values($elements); |
| 110 | 110 | $flag=false; |
| 111 | 111 | $index=0; |
| 112 | - while ( !$flag && $index < sizeof($elements) ) { |
|
| 112 | + while (!$flag && $index<sizeof($elements)) { |
|
| 113 | 113 | if ($elements[$index] instanceof BaseHtml) |
| 114 | 114 | $flag=($callback($elements[$index])); |
| 115 | 115 | $index++; |
| 116 | 116 | } |
| 117 | - if ($flag === true) |
|
| 118 | - return $elements[$index - 1]; |
|
| 117 | + if ($flag===true) |
|
| 118 | + return $elements[$index-1]; |
|
| 119 | 119 | } elseif ($elements instanceof BaseHtml) { |
| 120 | 120 | if ($callback($elements)) |
| 121 | 121 | return $elements; |
@@ -143,13 +143,13 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | public function fromArray($array) { |
| 146 | - foreach ( $this as $key => $value ) { |
|
| 147 | - if(array_key_exists($key, $array)===true) |
|
| 148 | - $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 146 | + foreach ($this as $key => $value) { |
|
| 147 | + if (array_key_exists($key, $array)===true) |
|
| 148 | + $this->_callSetter("set".ucfirst($key), $key, $array[$key], $array); |
|
| 149 | 149 | } |
| 150 | - foreach ( $array as $key => $value ) { |
|
| 151 | - if($this->_callSetter($key, $key, $value, $array)===false){ |
|
| 152 | - $this->_callSetter("set" . ucfirst($key), $key, $value, $array); |
|
| 150 | + foreach ($array as $key => $value) { |
|
| 151 | + if ($this->_callSetter($key, $key, $value, $array)===false) { |
|
| 152 | + $this->_callSetter("set".ucfirst($key), $key, $value, $array); |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | return $array; |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | |
| 158 | 158 | public function fromDatabaseObjects($objects, $function) { |
| 159 | 159 | if (isset($objects)) { |
| 160 | - foreach ( $objects as $object ) { |
|
| 160 | + foreach ($objects as $object) { |
|
| 161 | 161 | $this->fromDatabaseObject($object, $function); |
| 162 | 162 | } |
| 163 | 163 | } |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | |
| 179 | 179 | |
| 180 | 180 | public function getElementById($identifier, $elements) { |
| 181 | - return $this->_getElementBy(function(BaseWidget $element) use ($identifier){return $element->getIdentifier()===$identifier;}, $elements); |
|
| 181 | + return $this->_getElementBy(function(BaseWidget $element) use ($identifier){return $element->getIdentifier()===$identifier; }, $elements); |
|
| 182 | 182 | } |
| 183 | 183 | |
| 184 | 184 | public function getBsComponent() { |
@@ -191,14 +191,14 @@ discard block |
||
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | protected function compile_once(JsUtils $js=NULL, &$view=NULL) { |
| 194 | - if(!$this->_compiled){ |
|
| 195 | - if(isset($js)){ |
|
| 194 | + if (!$this->_compiled) { |
|
| 195 | + if (isset($js)) { |
|
| 196 | 196 | $beforeCompile=$js->getParam("beforeCompileHtml"); |
| 197 | - if(\is_callable($beforeCompile)){ |
|
| 198 | - $beforeCompile($this,$js,$view); |
|
| 197 | + if (\is_callable($beforeCompile)) { |
|
| 198 | + $beforeCompile($this, $js, $view); |
|
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | - if(\is_callable($this->_preCompile)){ |
|
| 201 | + if (\is_callable($this->_preCompile)) { |
|
| 202 | 202 | $pc=$this->_preCompile; |
| 203 | 203 | $pc($this); |
| 204 | 204 | } |
@@ -208,15 +208,15 @@ discard block |
||
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 211 | - $this->compile_once($js,$view); |
|
| 211 | + $this->compile_once($js, $view); |
|
| 212 | 212 | $result=$this->getTemplate($js); |
| 213 | - foreach ( $this as $key => $value ) { |
|
| 214 | - if(\strstr($result, "%{$key}%")!==false){ |
|
| 213 | + foreach ($this as $key => $value) { |
|
| 214 | + if (\strstr($result, "%{$key}%")!==false) { |
|
| 215 | 215 | if (\is_array($value)) { |
| 216 | 216 | $v=PropertyWrapper::wrap($value, $js); |
| 217 | - }elseif($value instanceof \stdClass){ |
|
| 218 | - $v=\print_r($value,true); |
|
| 219 | - }else{ |
|
| 217 | + }elseif ($value instanceof \stdClass) { |
|
| 218 | + $v=\print_r($value, true); |
|
| 219 | + } else { |
|
| 220 | 220 | $v=$value; |
| 221 | 221 | } |
| 222 | 222 | $result=str_replace("%{$key}%", $v, $result); |
@@ -224,12 +224,12 @@ discard block |
||
| 224 | 224 | } |
| 225 | 225 | if (isset($js)===true) { |
| 226 | 226 | $this->run($js); |
| 227 | - if (isset($view) === true) { |
|
| 227 | + if (isset($view)===true) { |
|
| 228 | 228 | $js->addViewElement($this->_identifier, $result, $view); |
| 229 | 229 | } |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | - if(\is_callable($this->_postCompile)){ |
|
| 232 | + if (\is_callable($this->_postCompile)) { |
|
| 233 | 233 | $pc=$this->_postCompile; |
| 234 | 234 | $pc($this); |
| 235 | 235 | } |
@@ -243,13 +243,13 @@ discard block |
||
| 243 | 243 | * @param array $parameters default: ["jsCallback"=>"","jqueryDone"=>"append"] |
| 244 | 244 | * @return \Ajax\common\html\BaseHtml |
| 245 | 245 | */ |
| 246 | - public function setDraggable($attr="id",$dropZone=null,$parameters=[]){ |
|
| 246 | + public function setDraggable($attr="id", $dropZone=null, $parameters=[]) { |
|
| 247 | 247 | $this->setProperty("draggable", "true"); |
| 248 | - $this->addEvent("dragstart",Javascript::draggable($attr)); |
|
| 249 | - if(isset($dropZone)&& $dropZone instanceof BaseHtml){ |
|
| 250 | - $jqueryDone="append";$jsCallback=""; |
|
| 248 | + $this->addEvent("dragstart", Javascript::draggable($attr)); |
|
| 249 | + if (isset($dropZone) && $dropZone instanceof BaseHtml) { |
|
| 250 | + $jqueryDone="append"; $jsCallback=""; |
|
| 251 | 251 | extract($parameters); |
| 252 | - $dropZone->asDropZone($jsCallback,$jqueryDone,$parameters); |
|
| 252 | + $dropZone->asDropZone($jsCallback, $jqueryDone, $parameters); |
|
| 253 | 253 | } |
| 254 | 254 | return $this; |
| 255 | 255 | } |
@@ -261,11 +261,11 @@ discard block |
||
| 261 | 261 | * @param array $parameters |
| 262 | 262 | * @return \Ajax\common\html\BaseHtml |
| 263 | 263 | */ |
| 264 | - public function asDropZone($jsCallback="",$jqueryDone="append",$parameters=[]){ |
|
| 264 | + public function asDropZone($jsCallback="", $jqueryDone="append", $parameters=[]) { |
|
| 265 | 265 | $stopPropagation=false; |
| 266 | - $script=$this->addEvent("dragover", '', $stopPropagation,true); |
|
| 266 | + $script=$this->addEvent("dragover", '', $stopPropagation, true); |
|
| 267 | 267 | extract($parameters); |
| 268 | - $this->addEvent("drop",Javascript::dropZone($jqueryDone,$jsCallback),$stopPropagation,true); |
|
| 268 | + $this->addEvent("drop", Javascript::dropZone($jqueryDone, $jsCallback), $stopPropagation, true); |
|
| 269 | 269 | return $this; |
| 270 | 270 | } |
| 271 | 271 | |
@@ -273,11 +273,11 @@ discard block |
||
| 273 | 273 | return $this->compile(); |
| 274 | 274 | } |
| 275 | 275 | |
| 276 | - public function onPostCompile($callback){ |
|
| 276 | + public function onPostCompile($callback) { |
|
| 277 | 277 | $this->_postCompile=$callback; |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - public function onPreCompile($callback){ |
|
| 280 | + public function onPreCompile($callback) { |
|
| 281 | 281 | $this->_preCompile=$callback; |
| 282 | 282 | } |
| 283 | 283 | } |
@@ -12,8 +12,8 @@ discard block |
||
| 12 | 12 | } |
| 13 | 13 | $output=""; |
| 14 | 14 | if (\is_array($input)) { |
| 15 | - if (sizeof($input) > 0) { |
|
| 16 | - if (self::containsElement($input) === false) { |
|
| 15 | + if (sizeof($input)>0) { |
|
| 16 | + if (self::containsElement($input)===false) { |
|
| 17 | 17 | $output=self::wrapStrings($input, $separator=' ', $valueQuote='"'); |
| 18 | 18 | } else { |
| 19 | 19 | $output=self::wrapObjects($input, $js, $separator, $valueQuote); |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | private static function containsElement($input) { |
| 27 | - foreach ( $input as $v ) { |
|
| 27 | + foreach ($input as $v) { |
|
| 28 | 28 | if (\is_object($v) || \is_array($v)) |
| 29 | 29 | return true; |
| 30 | 30 | } |
@@ -32,9 +32,9 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public static function wrapStrings($input, $separator=' ', $valueQuote='"') { |
| 35 | - if (JArray::isAssociative($input) === true) { |
|
| 36 | - $result=implode($separator, array_map(function ($v, $k) use($valueQuote) { |
|
| 37 | - return $k . '=' . $valueQuote . $v . $valueQuote; |
|
| 35 | + if (JArray::isAssociative($input)===true) { |
|
| 36 | + $result=implode($separator, array_map(function($v, $k) use($valueQuote) { |
|
| 37 | + return $k.'='.$valueQuote.$v.$valueQuote; |
|
| 38 | 38 | }, $input, array_keys($input))); |
| 39 | 39 | } else { |
| 40 | 40 | $result=implode($separator, $input); |
@@ -43,17 +43,17 @@ discard block |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | public static function wrapObjects($input, $js=NULL, $separator=' ', $valueQuote='"') { |
| 46 | - return implode($separator, array_map(function ($v) use($js, $separator, $valueQuote) { |
|
| 47 | - if(\is_string($v)){ |
|
| 46 | + return implode($separator, array_map(function($v) use($js, $separator, $valueQuote) { |
|
| 47 | + if (\is_string($v)) { |
|
| 48 | 48 | return $v; |
| 49 | 49 | } |
| 50 | - if ($v instanceof BaseHtml){ |
|
| 50 | + if ($v instanceof BaseHtml) { |
|
| 51 | 51 | return $v->compile($js); |
| 52 | 52 | } |
| 53 | 53 | if (\is_array($v)) { |
| 54 | 54 | return self::wrap($v, $js, $separator, $valueQuote); |
| 55 | 55 | } |
| 56 | - if(!\is_callable($v)){ |
|
| 56 | + if (!\is_callable($v)) { |
|
| 57 | 57 | return $v; |
| 58 | 58 | } |
| 59 | 59 | }, $input)); |
@@ -71,14 +71,14 @@ discard block |
||
| 71 | 71 | return $result;*/ |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - protected static function wrapValue($value,$js=NULL, $separator=' ', $valueQuote='"'){ |
|
| 74 | + protected static function wrapValue($value, $js=NULL, $separator=' ', $valueQuote='"') { |
|
| 75 | 75 | if (\is_array($value)) { |
| 76 | 76 | return self::wrap($value, $js, $separator, $valueQuote); |
| 77 | 77 | } |
| 78 | - if ($value instanceof BaseHtml){ |
|
| 78 | + if ($value instanceof BaseHtml) { |
|
| 79 | 79 | return $value->compile($js); |
| 80 | 80 | } |
| 81 | - if(!\is_callable($value)){ |
|
| 81 | + if (!\is_callable($value)) { |
|
| 82 | 82 | return $value; |
| 83 | 83 | } |
| 84 | 84 | return ''; |
@@ -25,8 +25,9 @@ |
||
| 25 | 25 | |
| 26 | 26 | private static function containsElement($input) { |
| 27 | 27 | foreach ( $input as $v ) { |
| 28 | - if (\is_object($v) || \is_array($v)) |
|
| 29 | - return true; |
|
| 28 | + if (\is_object($v) || \is_array($v)) { |
|
| 29 | + return true; |
|
| 30 | + } |
|
| 30 | 31 | } |
| 31 | 32 | return false; |
| 32 | 33 | } |