@@ -17,11 +17,11 @@ discard block |
||
| 17 | 17 | protected $ajaxLoader="<div class=\"ui active centered inline text loader\">Loading</div>"; |
| 18 | 18 | |
| 19 | 19 | abstract public function getUrl($url); |
| 20 | - abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
| 21 | - abstract public function interval($jsCode,$time,$globalName=null,$immediatly=true); |
|
| 20 | + abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
| 21 | + abstract public function interval($jsCode, $time, $globalName=null, $immediatly=true); |
|
| 22 | 22 | |
| 23 | - protected function _ajax($method,$url,$responseElement="",$parameters=[]) { |
|
| 24 | - if(isset($this->params["ajax"])){ |
|
| 23 | + protected function _ajax($method, $url, $responseElement="", $parameters=[]) { |
|
| 24 | + if (isset($this->params["ajax"])) { |
|
| 25 | 25 | extract($this->params["ajax"]); |
| 26 | 26 | } |
| 27 | 27 | extract($parameters); |
@@ -31,109 +31,109 @@ discard block |
||
| 31 | 31 | $originalSelector=$responseElement; |
| 32 | 32 | $responseElement=$this->_getResponseElement($responseElement); |
| 33 | 33 | $retour.="var self=this;\n"; |
| 34 | - if($hasLoader===true && JString::isNotNull($responseElement)){ |
|
| 35 | - $this->addLoading($retour, $responseElement,$ajaxLoader); |
|
| 36 | - }elseif($hasLoader==="internal"){ |
|
| 34 | + if ($hasLoader===true && JString::isNotNull($responseElement)) { |
|
| 35 | + $this->addLoading($retour, $responseElement, $ajaxLoader); |
|
| 36 | + }elseif ($hasLoader==="internal") { |
|
| 37 | 37 | $retour.="\n$(this).addClass('loading');"; |
| 38 | 38 | } |
| 39 | - $ajaxParameters=["url"=>"url","method"=>"'".\strtoupper($method)."'"]; |
|
| 39 | + $ajaxParameters=["url"=>"url", "method"=>"'".\strtoupper($method)."'"]; |
|
| 40 | 40 | |
| 41 | - $ajaxParameters["async"]=($async?"true":"false"); |
|
| 41 | + $ajaxParameters["async"]=($async ? "true" : "false"); |
|
| 42 | 42 | |
| 43 | - if(isset($params)){ |
|
| 43 | + if (isset($params)) { |
|
| 44 | 44 | $ajaxParameters["data"]=self::_correctParams($params); |
| 45 | 45 | } |
| 46 | - if(isset($headers)){ |
|
| 46 | + if (isset($headers)) { |
|
| 47 | 47 | $ajaxParameters["headers"]=$headers; |
| 48 | 48 | } |
| 49 | 49 | $this->createAjaxParameters($ajaxParameters, $parameters); |
| 50 | 50 | $retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data, textStatus, jqXHR ) {\n"; |
| 51 | - $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback,$hasLoader,($historize?$originalSelector:null))."});\n"; |
|
| 52 | - $retour=$this->_addJsCondition($jsCondition,$retour); |
|
| 51 | + $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback, $hasLoader, ($historize ? $originalSelector : null))."});\n"; |
|
| 52 | + $retour=$this->_addJsCondition($jsCondition, $retour); |
|
| 53 | 53 | if ($immediatly) |
| 54 | 54 | $this->jquery_code_for_compile[]=$retour; |
| 55 | 55 | return $retour; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - protected function createAjaxParameters(&$original,$parameters){ |
|
| 59 | - $validParameters=["dataType"=>"'%value%'","beforeSend"=>"function(jqXHR,settings){%value%}","complete"=>"function(jqXHR){%value%}"]; |
|
| 60 | - foreach ($validParameters as $param=>$mask){ |
|
| 61 | - if(isset($parameters[$param])){ |
|
| 58 | + protected function createAjaxParameters(&$original, $parameters) { |
|
| 59 | + $validParameters=["dataType"=>"'%value%'", "beforeSend"=>"function(jqXHR,settings){%value%}", "complete"=>"function(jqXHR){%value%}"]; |
|
| 60 | + foreach ($validParameters as $param=>$mask) { |
|
| 61 | + if (isset($parameters[$param])) { |
|
| 62 | 62 | $original[$param]=\str_replace("%value%", $parameters[$param], $mask); |
| 63 | 63 | } |
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - protected function implodeAjaxParameters($ajaxParameters){ |
|
| 68 | - $s = ''; foreach ($ajaxParameters as $k=>$v) { if ($s !== '') { $s .= ','; } $s .= "'{$k}':{$v}"; } |
|
| 67 | + protected function implodeAjaxParameters($ajaxParameters) { |
|
| 68 | + $s=''; foreach ($ajaxParameters as $k=>$v) { if ($s!=='') { $s.=','; } $s.="'{$k}':{$v}"; } |
|
| 69 | 69 | return $s; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - protected function _addJsCondition($jsCondition,$jsSource){ |
|
| 73 | - if(isset($jsCondition)){ |
|
| 72 | + protected function _addJsCondition($jsCondition, $jsSource) { |
|
| 73 | + if (isset($jsCondition)) { |
|
| 74 | 74 | return "if(".$jsCondition."){\n".$jsSource."\n}"; |
| 75 | 75 | } |
| 76 | 76 | return $jsSource; |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | |
| 80 | - protected function _getAjaxUrl($url,$attr){ |
|
| 80 | + protected function _getAjaxUrl($url, $attr) { |
|
| 81 | 81 | $url=$this->_correctAjaxUrl($url); |
| 82 | 82 | $retour="url='".$url."';"; |
| 83 | 83 | $slash="/"; |
| 84 | - if(JString::endswith($url, "/")===true){ |
|
| 84 | + if (JString::endswith($url, "/")===true) { |
|
| 85 | 85 | $slash=""; |
| 86 | 86 | } |
| 87 | - if(JString::isNotNull($attr)){ |
|
| 88 | - if ($attr==="value"){ |
|
| 87 | + if (JString::isNotNull($attr)) { |
|
| 88 | + if ($attr==="value") { |
|
| 89 | 89 | $retour.="url=url+'".$slash."'+$(this).val();\n"; |
| 90 | - }elseif ($attr==="html"){ |
|
| 90 | + }elseif ($attr==="html") { |
|
| 91 | 91 | $retour.="url=url+'".$slash."'+$(this).html();\n"; |
| 92 | - }elseif(\substr($attr, 0,3)==="js:"){ |
|
| 92 | + }elseif (\substr($attr, 0, 3)==="js:") { |
|
| 93 | 93 | $retour.="url=url+'".$slash."'+".\substr($attr, 3).";\n"; |
| 94 | - }elseif($attr!==null && $attr!=="") |
|
| 94 | + }elseif ($attr!==null && $attr!=="") |
|
| 95 | 95 | $retour.="url=url+'".$slash."'+($(this).attr('".$attr."')||'');\n"; |
| 96 | 96 | } |
| 97 | 97 | return $retour; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - protected function onPopstate(){ |
|
| 100 | + protected function onPopstate() { |
|
| 101 | 101 | return "window.onpopstate = function(e){if(e.state){var target=e.state.jqueryDone;$(e.state.selector)[target](e.state.html);}};"; |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - protected function autoActiveLinks($previousURL="window.location.href"){ |
|
| 105 | - $result= "\nfunction getHref(url) { return \$('a').filter(function(){return \$(this).prop('href') == url; });}"; |
|
| 104 | + protected function autoActiveLinks($previousURL="window.location.href") { |
|
| 105 | + $result="\nfunction getHref(url) { return \$('a').filter(function(){return \$(this).prop('href') == url; });}"; |
|
| 106 | 106 | $result.="\nvar myurl={$previousURL};if(window._previousURL) getHref(window._previousURL).removeClass('active');getHref(myurl).addClass('active');window._previousURL=myurl;"; |
| 107 | 107 | return $result; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - protected function _getOnAjaxDone($responseElement,$jqueryDone,$ajaxTransition,$jsCallback,$hasLoader=false,$history=null){ |
|
| 111 | - $retour="";$call=null; |
|
| 110 | + protected function _getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback, $hasLoader=false, $history=null) { |
|
| 111 | + $retour=""; $call=null; |
|
| 112 | 112 | if (JString::isNotNull($responseElement)) { |
| 113 | - if(isset($ajaxTransition)){ |
|
| 113 | + if (isset($ajaxTransition)) { |
|
| 114 | 114 | $call=$this->setAjaxDataCall($ajaxTransition); |
| 115 | - }elseif(isset($this->ajaxTransition)){ |
|
| 115 | + }elseif (isset($this->ajaxTransition)) { |
|
| 116 | 116 | $call=$this->ajaxTransition; |
| 117 | 117 | } |
| 118 | - if(\is_callable($call)) |
|
| 119 | - $retour="\t".$call($responseElement,$jqueryDone).";\n"; |
|
| 118 | + if (\is_callable($call)) |
|
| 119 | + $retour="\t".$call($responseElement, $jqueryDone).";\n"; |
|
| 120 | 120 | else |
| 121 | 121 | $retour="\t{$responseElement}.{$jqueryDone}( data );\n"; |
| 122 | 122 | } |
| 123 | - if(isset($history)){ |
|
| 124 | - if($this->params["autoActiveLinks"]){ |
|
| 123 | + if (isset($history)) { |
|
| 124 | + if ($this->params["autoActiveLinks"]) { |
|
| 125 | 125 | $retour.=$this->autoActiveLinks("url"); |
| 126 | 126 | } |
| 127 | 127 | $retour.="\nwindow.history.pushState({'html':data,'selector':".Javascript::prep_value($history).",'jqueryDone':'{$jqueryDone}'},'', url);"; |
| 128 | 128 | } |
| 129 | - if($hasLoader==="internal"){ |
|
| 129 | + if ($hasLoader==="internal") { |
|
| 130 | 130 | $retour.="\n$(self).removeClass('loading');"; |
| 131 | 131 | } |
| 132 | 132 | $retour.="\t".$jsCallback."\n"; |
| 133 | 133 | return $retour; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - protected function _getResponseElement($responseElement){ |
|
| 136 | + protected function _getResponseElement($responseElement) { |
|
| 137 | 137 | if (JString::isNotNull($responseElement)) { |
| 138 | 138 | $responseElement=Javascript::prep_jquery_selector($responseElement); |
| 139 | 139 | } |
@@ -143,33 +143,33 @@ discard block |
||
| 143 | 143 | protected function _correctAjaxUrl($url) { |
| 144 | 144 | if ($url!=="/" && JString::endsWith($url, "/")===true) |
| 145 | 145 | $url=substr($url, 0, strlen($url)-1); |
| 146 | - if (strncmp($url, 'http://', 7)!=0&&strncmp($url, 'https://', 8)!=0) { |
|
| 146 | + if (strncmp($url, 'http://', 7)!=0 && strncmp($url, 'https://', 8)!=0) { |
|
| 147 | 147 | $url=$this->getUrl($url); |
| 148 | 148 | } |
| 149 | 149 | return $url; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - public static function _correctParams($params){ |
|
| 153 | - if(JString::isNull($params)){ |
|
| 152 | + public static function _correctParams($params) { |
|
| 153 | + if (JString::isNull($params)) { |
|
| 154 | 154 | return ""; |
| 155 | 155 | } |
| 156 | - if(\preg_match("@^\{.*?\}$@", $params)){ |
|
| 156 | + if (\preg_match("@^\{.*?\}$@", $params)) { |
|
| 157 | 157 | return '$.param('.$params.')'; |
| 158 | 158 | } |
| 159 | 159 | return $params; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - public static function _implodeParams($parameters){ |
|
| 162 | + public static function _implodeParams($parameters) { |
|
| 163 | 163 | $allParameters=[]; |
| 164 | - foreach ($parameters as $params){ |
|
| 165 | - if(isset($params)) |
|
| 164 | + foreach ($parameters as $params) { |
|
| 165 | + if (isset($params)) |
|
| 166 | 166 | $allParameters[]=self::_correctParams($params); |
| 167 | 167 | } |
| 168 | 168 | return \implode("+'&'+", $allParameters); |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - protected function addLoading(&$retour, $responseElement,$ajaxLoader=null) { |
|
| 172 | - if(!isset($ajaxLoader)){ |
|
| 171 | + protected function addLoading(&$retour, $responseElement, $ajaxLoader=null) { |
|
| 172 | + if (!isset($ajaxLoader)) { |
|
| 173 | 173 | $ajaxLoader=$this->ajaxLoader; |
| 174 | 174 | } |
| 175 | 175 | $loading_notifier='<div class="ajax-loader">'.$ajaxLoader.'</div>'; |
@@ -177,19 +177,19 @@ discard block |
||
| 177 | 177 | $retour.="\t\t{$responseElement}.prepend('{$loading_notifier}');\n"; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - protected function setAjaxDataCall($params){ |
|
| 180 | + protected function setAjaxDataCall($params) { |
|
| 181 | 181 | $result=null; |
| 182 | - if(!\is_callable($params)){ |
|
| 183 | - $result=function ($responseElement,$jqueryDone="html") use($params){ |
|
| 184 | - return AjaxTransition::{$params}($responseElement,$jqueryDone); |
|
| 182 | + if (!\is_callable($params)) { |
|
| 183 | + $result=function($responseElement, $jqueryDone="html") use($params){ |
|
| 184 | + return AjaxTransition::{$params}($responseElement, $jqueryDone); |
|
| 185 | 185 | }; |
| 186 | 186 | } |
| 187 | 187 | return $result; |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - protected function setDefaultParameters(&$parameters,$default){ |
|
| 191 | - foreach ($default as $k=>$v){ |
|
| 192 | - if(!isset($parameters[$k])) |
|
| 190 | + protected function setDefaultParameters(&$parameters, $default) { |
|
| 191 | + foreach ($default as $k=>$v) { |
|
| 192 | + if (!isset($parameters[$k])) |
|
| 193 | 193 | $parameters[$k]=$v; |
| 194 | 194 | } |
| 195 | 195 | } |
@@ -203,8 +203,8 @@ discard block |
||
| 203 | 203 | * @param string $url The url of the request |
| 204 | 204 | * @param string $responseElement selector of the HTML element displaying the answer |
| 205 | 205 | */ |
| 206 | - private function _get($url, $responseElement="",$parameters=[]) { |
|
| 207 | - return $this->_ajax("get", $url,$responseElement,$parameters); |
|
| 206 | + private function _get($url, $responseElement="", $parameters=[]) { |
|
| 207 | + return $this->_ajax("get", $url, $responseElement, $parameters); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -213,9 +213,9 @@ discard block |
||
| 213 | 213 | * @param string $responseElement selector of the HTML element displaying the answer |
| 214 | 214 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null,"historize"=>false) |
| 215 | 215 | */ |
| 216 | - public function get($url, $responseElement="",$parameters=[]) { |
|
| 216 | + public function get($url, $responseElement="", $parameters=[]) { |
|
| 217 | 217 | $parameters["immediatly"]=true; |
| 218 | - return $this->_get($url,$responseElement,$parameters); |
|
| 218 | + return $this->_get($url, $responseElement, $parameters); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
@@ -225,13 +225,13 @@ discard block |
||
| 225 | 225 | * @param string $responseElement selector of the HTML element displaying the answer |
| 226 | 226 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null,"historize"=>false) |
| 227 | 227 | */ |
| 228 | - public function ajax($method,$url, $responseElement="", $parameters=[]) { |
|
| 228 | + public function ajax($method, $url, $responseElement="", $parameters=[]) { |
|
| 229 | 229 | $parameters["immediatly"]=true; |
| 230 | - return $this->_ajax($method,$url,$responseElement,$parameters); |
|
| 230 | + return $this->_ajax($method, $url, $responseElement, $parameters); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | - public function ajaxInterval($method,$url, $interval,$globalName=null,$responseElement="", $parameters=[]){ |
|
| 234 | - return $this->interval($this->ajaxDeferred($method, $url,$responseElement,$parameters), $interval,$globalName); |
|
| 233 | + public function ajaxInterval($method, $url, $interval, $globalName=null, $responseElement="", $parameters=[]) { |
|
| 234 | + return $this->interval($this->ajaxDeferred($method, $url, $responseElement, $parameters), $interval, $globalName); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -241,9 +241,9 @@ discard block |
||
| 241 | 241 | * @param string $responseElement selector of the HTML element displaying the answer |
| 242 | 242 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null,"historize"=>false) |
| 243 | 243 | */ |
| 244 | - public function ajaxDeferred($method,$url, $responseElement="", $parameters=[]) { |
|
| 244 | + public function ajaxDeferred($method, $url, $responseElement="", $parameters=[]) { |
|
| 245 | 245 | $parameters["immediatly"]=false; |
| 246 | - return $this->_ajax($method,$url,$responseElement,$parameters); |
|
| 246 | + return $this->_ajax($method, $url, $responseElement, $parameters); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | /** |
@@ -252,8 +252,8 @@ discard block |
||
| 252 | 252 | * @param string $method Method used |
| 253 | 253 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>"document","jsCondition"=>NULL,"headers"=>null,"immediatly"=>false) |
| 254 | 254 | */ |
| 255 | - private function _json($url, $method="get",$parameters=[]) { |
|
| 256 | - $parameters=\array_merge($parameters,["hasLoader"=>false]); |
|
| 255 | + private function _json($url, $method="get", $parameters=[]) { |
|
| 256 | + $parameters=\array_merge($parameters, ["hasLoader"=>false]); |
|
| 257 | 257 | $jsCallback=isset($parameters['jsCallback']) ? $parameters['jsCallback'] : ""; |
| 258 | 258 | $context=isset($parameters['context']) ? $parameters['context'] : "document"; |
| 259 | 259 | $retour="\tdata=($.isPlainObject(data))?data:JSON.parse(data);\t".$jsCallback.";" |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | ."if($('#'+key,".$context.").length){ if($('#'+key,".$context.").is('[value]')) { $('#'+key,".$context.").val(data[key]);} else { $('#'+key,".$context.").html(data[key]); }}};\n"; |
| 262 | 262 | $retour.="\t$(document).trigger('jsonReady',[data]);\n"; |
| 263 | 263 | $parameters["jsCallback"]=$retour; |
| 264 | - return $this->_ajax($method, $url,null,$parameters); |
|
| 264 | + return $this->_ajax($method, $url, null, $parameters); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | /** |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>"document","jsCondition"=>NULL,"headers"=>null,"immediatly"=>false) |
| 272 | 272 | */ |
| 273 | 273 | public function json($url, $method="get", $parameters=[]) { |
| 274 | - return $this->_json($url,$method,$parameters); |
|
| 274 | + return $this->_json($url, $method, $parameters); |
|
| 275 | 275 | } |
| 276 | 276 | |
| 277 | 277 | /** |
@@ -282,9 +282,9 @@ discard block |
||
| 282 | 282 | * @param string $method default get |
| 283 | 283 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true) |
| 284 | 284 | */ |
| 285 | - public function jsonOn($event,$element, $url,$method="get",$parameters=array()) { |
|
| 286 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 287 | - return $this->_add_event($element, $this->jsonDeferred($url,$method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 285 | + public function jsonOn($event, $element, $url, $method="get", $parameters=array()) { |
|
| 286 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 287 | + return $this->_add_event($element, $this->jsonDeferred($url, $method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | /** |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | */ |
| 296 | 296 | public function jsonDeferred($url, $method="get", $parameters=[]) { |
| 297 | 297 | $parameters["immediatly"]=false; |
| 298 | - return $this->_json($url,$method,$parameters); |
|
| 298 | + return $this->_json($url, $method, $parameters); |
|
| 299 | 299 | } |
| 300 | 300 | |
| 301 | 301 | /** |
@@ -306,27 +306,27 @@ discard block |
||
| 306 | 306 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>null,"jsCondition"=>NULL,"headers"=>null,"immediatly"=>false,"rowClass"=>"_json") |
| 307 | 307 | */ |
| 308 | 308 | private function _jsonArray($maskSelector, $url, $method="get", $parameters=[]) { |
| 309 | - $parameters=\array_merge($parameters,["hasLoader"=>false]); |
|
| 309 | + $parameters=\array_merge($parameters, ["hasLoader"=>false]); |
|
| 310 | 310 | $rowClass=isset($parameters['rowClass']) ? $parameters['rowClass'] : "_json"; |
| 311 | 311 | $jsCallback=isset($parameters['jsCallback']) ? $parameters['jsCallback'] : ""; |
| 312 | 312 | $context=isset($parameters['context']) ? $parameters['context'] : null; |
| 313 | - if($context===null){ |
|
| 313 | + if ($context===null) { |
|
| 314 | 314 | $parent="$('".$maskSelector."').parent()"; |
| 315 | - $newElm = "$('#'+newId)"; |
|
| 316 | - }else{ |
|
| 315 | + $newElm="$('#'+newId)"; |
|
| 316 | + } else { |
|
| 317 | 317 | $parent=$context; |
| 318 | - $newElm = $context.".find('#'+newId)"; |
|
| 318 | + $newElm=$context.".find('#'+newId)"; |
|
| 319 | 319 | } |
| 320 | 320 | $appendTo="\t\tnewElm.appendTo(".$parent.");\n"; |
| 321 | 321 | $retour=$parent.".find('.{$rowClass}').remove();"; |
| 322 | 322 | $retour.="\tdata=($.isPlainObject(data)||$.isArray(data))?data:JSON.parse(data);\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(); |
| 323 | 323 | 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"; |
| 324 | - $retour.= $appendTo; |
|
| 324 | + $retour.=$appendTo; |
|
| 325 | 325 | $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"; |
| 326 | 326 | $retour.="\t$(document).trigger('jsonReady',[data]);\n"; |
| 327 | 327 | $retour.="\t".$jsCallback; |
| 328 | 328 | $parameters["jsCallback"]=$retour; |
| 329 | - return $this->_ajax($method, $url,null,$parameters); |
|
| 329 | + return $this->_ajax($method, $url, null, $parameters); |
|
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | /** |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | * @param array $parameters default : array("params"=>"{}","jsCallback"=>NULL,"attr"=>"id","context"=>null,"jsCondition"=>NULL,"headers"=>null,"immediatly"=>false,"rowClass"=>"_json") |
| 338 | 338 | */ |
| 339 | 339 | public function jsonArray($maskSelector, $url, $method="get", $parameters=[]) { |
| 340 | - return $this->_jsonArray($maskSelector, $url,$method,$parameters); |
|
| 340 | + return $this->_jsonArray($maskSelector, $url, $method, $parameters); |
|
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | /** |
@@ -360,9 +360,9 @@ discard block |
||
| 360 | 360 | * @param string $method Method used, default : get |
| 361 | 361 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","rowClass"=>"_json","immediatly"=>true) |
| 362 | 362 | */ |
| 363 | - public function jsonArrayOn($event,$element,$maskSelector, $url,$method="get",$parameters=array()) { |
|
| 364 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 365 | - return $this->_add_event($element, $this->jsonArrayDeferred($maskSelector,$url,$method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 363 | + public function jsonArrayOn($event, $element, $maskSelector, $url, $method="get", $parameters=array()) { |
|
| 364 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 365 | + return $this->_add_event($element, $this->jsonArrayDeferred($maskSelector, $url, $method, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | /** |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | public function getDeferred($url, $responseElement="", $parameters=[]) { |
| 376 | 376 | $parameters["immediatly"]=false; |
| 377 | - return $this->_get($url, $responseElement,$parameters); |
|
| 377 | + return $this->_get($url, $responseElement, $parameters); |
|
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | /** |
@@ -387,8 +387,8 @@ discard block |
||
| 387 | 387 | * @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,"historize"=>false) |
| 388 | 388 | */ |
| 389 | 389 | public function getOn($event, $element, $url, $responseElement="", $parameters=array()) { |
| 390 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 391 | - return $this->_add_event($element, $this->getDeferred($url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 390 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 391 | + return $this->_add_event($element, $this->getDeferred($url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | /** |
@@ -401,8 +401,8 @@ discard block |
||
| 401 | 401 | * @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,"historize"=>false) |
| 402 | 402 | */ |
| 403 | 403 | public function ajaxOn($event, $element, $url, $responseElement="", $parameters=array()) { |
| 404 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true,"method"=>"get"]); |
|
| 405 | - return $this->_add_event($element, $this->ajaxDeferred($parameters["method"],$url,$responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 404 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true, "method"=>"get"]); |
|
| 405 | + return $this->_add_event($element, $this->ajaxDeferred($parameters["method"], $url, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 406 | 406 | } |
| 407 | 407 | |
| 408 | 408 | /** |
@@ -436,15 +436,15 @@ discard block |
||
| 436 | 436 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"params"=>"{}","jsCallback"=>NULL,"attr"=>"href","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","jsCondition"=>NULL,"headers"=>null,"historize"=>true) |
| 437 | 437 | * @return $this |
| 438 | 438 | */ |
| 439 | - public function getHref($element,$responseElement="",$parameters=array()){ |
|
| 439 | + public function getHref($element, $responseElement="", $parameters=array()) { |
|
| 440 | 440 | $parameters["attr"]="href"; |
| 441 | - if(JString::isNull($responseElement)){ |
|
| 441 | + if (JString::isNull($responseElement)) { |
|
| 442 | 442 | $responseElement='%$(self).attr("data-target")%'; |
| 443 | 443 | } |
| 444 | - if(!isset($parameters["historize"])){ |
|
| 444 | + if (!isset($parameters["historize"])) { |
|
| 445 | 445 | $parameters["historize"]=true; |
| 446 | 446 | } |
| 447 | - return $this->getOnClick($element, "",$responseElement,$parameters); |
|
| 447 | + return $this->getOnClick($element, "", $responseElement, $parameters); |
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | /** |
@@ -454,20 +454,20 @@ discard block |
||
| 454 | 454 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"params"=>"{}","jsCallback"=>NULL,"attr"=>"href","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","jsCondition"=>NULL,"headers"=>null,"historize"=>false) |
| 455 | 455 | * @return $this |
| 456 | 456 | */ |
| 457 | - public function postHref($element,$responseElement="",$parameters=array()){ |
|
| 457 | + public function postHref($element, $responseElement="", $parameters=array()) { |
|
| 458 | 458 | $parameters["attr"]="href"; |
| 459 | - if(JString::isNull($responseElement)){ |
|
| 459 | + if (JString::isNull($responseElement)) { |
|
| 460 | 460 | $responseElement='%$(this).attr("data-target")%'; |
| 461 | 461 | } |
| 462 | - if(!isset($parameters["historize"])){ |
|
| 462 | + if (!isset($parameters["historize"])) { |
|
| 463 | 463 | $parameters["historize"]=true; |
| 464 | 464 | } |
| 465 | - return $this->postOnClick($element, "","{}",$responseElement,$parameters); |
|
| 465 | + return $this->postOnClick($element, "", "{}", $responseElement, $parameters); |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | - private function _post($url, $params="{}",$responseElement="", $parameters=[]) { |
|
| 468 | + private function _post($url, $params="{}", $responseElement="", $parameters=[]) { |
|
| 469 | 469 | $parameters["params"]=$params; |
| 470 | - return $this->_ajax("POST", $url,$responseElement,$parameters); |
|
| 470 | + return $this->_ajax("POST", $url, $responseElement, $parameters); |
|
| 471 | 471 | } |
| 472 | 472 | |
| 473 | 473 | /** |
@@ -477,8 +477,8 @@ discard block |
||
| 477 | 477 | * @param string $params JSON parameters |
| 478 | 478 | * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null,"historize"=>false) |
| 479 | 479 | */ |
| 480 | - public function post($url, $params="{}",$responseElement="", $parameters=[]) { |
|
| 481 | - return $this->_post($url, $params,$responseElement, $parameters); |
|
| 480 | + public function post($url, $params="{}", $responseElement="", $parameters=[]) { |
|
| 481 | + return $this->_post($url, $params, $responseElement, $parameters); |
|
| 482 | 482 | } |
| 483 | 483 | |
| 484 | 484 | /** |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | * @param string $responseElement selector of the HTML element displaying the answer |
| 490 | 490 | * @param array $parameters default : array("jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"ajaxLoader"=>null,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null,"jsCondition"=>NULL,"headers"=>null,"historize"=>false) |
| 491 | 491 | */ |
| 492 | - public function postDeferred($url, $params="{}",$responseElement="", $parameters=[]) { |
|
| 492 | + public function postDeferred($url, $params="{}", $responseElement="", $parameters=[]) { |
|
| 493 | 493 | $parameters["immediatly"]=false; |
| 494 | 494 | return $this->_post($url, $params, $responseElement, $parameters); |
| 495 | 495 | } |
@@ -505,8 +505,8 @@ discard block |
||
| 505 | 505 | * @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,"historize"=>false) |
| 506 | 506 | */ |
| 507 | 507 | public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) { |
| 508 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 509 | - return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 508 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 509 | + return $this->_add_event($element, $this->postDeferred($url, $params, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 510 | 510 | } |
| 511 | 511 | |
| 512 | 512 | /** |
@@ -523,33 +523,33 @@ discard block |
||
| 523 | 523 | } |
| 524 | 524 | |
| 525 | 525 | private function _postForm($url, $form, $responseElement, $parameters=[]) { |
| 526 | - if(isset($this->params["ajax"])){ |
|
| 526 | + if (isset($this->params["ajax"])) { |
|
| 527 | 527 | extract($this->params["ajax"]); |
| 528 | 528 | } |
| 529 | - $params="{}";$validation=false; |
|
| 529 | + $params="{}"; $validation=false; |
|
| 530 | 530 | \extract($parameters); |
| 531 | - $async=($async)?"true":"false"; |
|
| 531 | + $async=($async) ? "true" : "false"; |
|
| 532 | 532 | $jsCallback=isset($jsCallback) ? $jsCallback : ""; |
| 533 | 533 | $retour=$this->_getAjaxUrl($url, $attr); |
| 534 | 534 | $retour.="\n$('#".$form."').trigger('ajaxSubmit');"; |
| 535 | 535 | $retour.="\nvar params=$('#".$form."').serialize();\n"; |
| 536 | - if(isset($params)){ |
|
| 536 | + if (isset($params)) { |
|
| 537 | 537 | $retour.="params+='&'+".self::_correctParams($params).";\n"; |
| 538 | 538 | } |
| 539 | 539 | $responseElement=$this->_getResponseElement($responseElement); |
| 540 | 540 | $retour.="var self=this;\n"; |
| 541 | - if($hasLoader===true){ |
|
| 542 | - $this->addLoading($retour, $responseElement,$ajaxLoader); |
|
| 543 | - }elseif($hasLoader==="internal"){ |
|
| 541 | + if ($hasLoader===true) { |
|
| 542 | + $this->addLoading($retour, $responseElement, $ajaxLoader); |
|
| 543 | + }elseif ($hasLoader==="internal") { |
|
| 544 | 544 | $retour.="\n$(this).addClass('loading');"; |
| 545 | 545 | } |
| 546 | - $ajaxParameters=["url"=>"url","method"=>"'POST'","data"=>"params","async"=>$async]; |
|
| 547 | - if(isset($headers)){ |
|
| 546 | + $ajaxParameters=["url"=>"url", "method"=>"'POST'", "data"=>"params", "async"=>$async]; |
|
| 547 | + if (isset($headers)) { |
|
| 548 | 548 | $ajaxParameters["headers"]=$headers; |
| 549 | 549 | } |
| 550 | 550 | $this->createAjaxParameters($ajaxParameters, $parameters); |
| 551 | 551 | $retour.="$.ajax({".$this->implodeAjaxParameters($ajaxParameters)."}).done(function( data ) {\n"; |
| 552 | - $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone,$ajaxTransition,$jsCallback,$hasLoader)."});\n"; |
|
| 552 | + $retour.=$this->_getOnAjaxDone($responseElement, $jqueryDone, $ajaxTransition, $jsCallback, $hasLoader)."});\n"; |
|
| 553 | 553 | |
| 554 | 554 | if ($validation) { |
| 555 | 555 | $retour="$('#".$form."').validate({submitHandler: function(form) { |
@@ -599,8 +599,8 @@ discard block |
||
| 599 | 599 | * @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,"historize"=>false) |
| 600 | 600 | */ |
| 601 | 601 | public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) { |
| 602 | - $this->setDefaultParameters($parameters, ["preventDefault"=>true,"stopPropagation"=>true,"immediatly"=>true]); |
|
| 603 | - return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement,$parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"],$parameters["immediatly"]); |
|
| 602 | + $this->setDefaultParameters($parameters, ["preventDefault"=>true, "stopPropagation"=>true, "immediatly"=>true]); |
|
| 603 | + return $this->_add_event($element, $this->postFormDeferred($url, $form, $responseElement, $parameters), $event, $parameters["preventDefault"], $parameters["stopPropagation"], $parameters["immediatly"]); |
|
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | /** |
@@ -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,29 +563,29 @@ 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 | |
| 576 | - public function interval($jsCode,$time,$globalName=null,$immediatly=true){ |
|
| 577 | - if(!Javascript::isFunction($jsCode)){ |
|
| 576 | + public function interval($jsCode, $time, $globalName=null, $immediatly=true) { |
|
| 577 | + if (!Javascript::isFunction($jsCode)) { |
|
| 578 | 578 | $jsCode="function(){\n".$jsCode."\n}"; |
| 579 | 579 | } |
| 580 | - if(isset($globalName)){ |
|
| 580 | + if (isset($globalName)) { |
|
| 581 | 581 | $script="if(window.{$globalName}){clearInterval(window.{$globalName});}\nwindow.{$globalName}=setInterval({$jsCode},{$time});"; |
| 582 | - }else{ |
|
| 582 | + } else { |
|
| 583 | 583 | $script="setInterval({$jsCode},{$time});"; |
| 584 | 584 | } |
| 585 | - return $this->exec($script,$immediatly); |
|
| 585 | + return $this->exec($script, $immediatly); |
|
| 586 | 586 | } |
| 587 | 587 | |
| 588 | - public function clearInterval($globalName,$immediatly=true){ |
|
| 589 | - return $this->exec("if(window.{$globalName}){clearInterval(window.{$globalName});}",$immediatly); |
|
| 588 | + public function clearInterval($globalName, $immediatly=true) { |
|
| 589 | + return $this->exec("if(window.{$globalName}){clearInterval(window.{$globalName});}", $immediatly); |
|
| 590 | 590 | } |
| 591 | 591 | } |
@@ -31,10 +31,10 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | public function __construct($identifier, $rowCount, $colCount) { |
| 33 | 33 | parent::__construct($identifier, "table", "ui table"); |
| 34 | - $this->content=array (); |
|
| 34 | + $this->content=array(); |
|
| 35 | 35 | $this->setRowCount($rowCount, $colCount); |
| 36 | - $this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ]; |
|
| 37 | - $this->_compileParts=["thead","tbody","tfoot"]; |
|
| 36 | + $this->_variations=[Variation::CELLED, Variation::PADDED, Variation::COMPACT]; |
|
| 37 | + $this->_compileParts=["thead", "tbody", "tfoot"]; |
|
| 38 | 38 | $this->_afterCompileEvents=[]; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -44,17 +44,17 @@ discard block |
||
| 44 | 44 | * @return HtmlTableContent |
| 45 | 45 | */ |
| 46 | 46 | public function getPart($key) { |
| 47 | - if (\array_key_exists($key, $this->content) === false) { |
|
| 47 | + if (\array_key_exists($key, $this->content)===false) { |
|
| 48 | 48 | $this->content[$key]=new HtmlTableContent("", $key); |
| 49 | - if ($key !== "tbody") { |
|
| 49 | + if ($key!=="tbody") { |
|
| 50 | 50 | $this->content[$key]->setRowCount(1, $this->_colCount); |
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | return $this->content[$key]; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - protected function _getFirstPart(){ |
|
| 57 | - if(isset($this->content["thead"])){ |
|
| 56 | + protected function _getFirstPart() { |
|
| 57 | + if (isset($this->content["thead"])) { |
|
| 58 | 58 | return $this->content["thead"]; |
| 59 | 59 | } |
| 60 | 60 | return $this->content["tbody"]; |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | * @return boolean |
| 100 | 100 | */ |
| 101 | 101 | public function hasPart($key) { |
| 102 | - return \array_key_exists($key, $this->content) === true; |
|
| 102 | + return \array_key_exists($key, $this->content)===true; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
@@ -259,8 +259,8 @@ discard block |
||
| 259 | 259 | return $this->colAlign($colIndex, "colLeftFromRight"); |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - public function setColAlignment($colIndex,$alignment){ |
|
| 263 | - switch ($alignment){ |
|
| 262 | + public function setColAlignment($colIndex, $alignment) { |
|
| 263 | + switch ($alignment) { |
|
| 264 | 264 | case TextAlignment::LEFT: |
| 265 | 265 | $function="colLeft"; |
| 266 | 266 | break; |
@@ -280,8 +280,8 @@ discard block |
||
| 280 | 280 | return $this; |
| 281 | 281 | } |
| 282 | 282 | |
| 283 | - public function setColAlignmentFromRight($colIndex,$alignment){ |
|
| 284 | - switch ($alignment){ |
|
| 283 | + public function setColAlignmentFromRight($colIndex, $alignment) { |
|
| 284 | + switch ($alignment) { |
|
| 285 | 285 | case TextAlignment::LEFT: |
| 286 | 286 | $function="colLeftFromRight"; |
| 287 | 287 | break; |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | |
| 304 | 304 | private function colAlign($colIndex, $function) { |
| 305 | 305 | if (\is_array($colIndex)) { |
| 306 | - foreach ( $colIndex as $cIndex ) { |
|
| 306 | + foreach ($colIndex as $cIndex) { |
|
| 307 | 307 | $this->colAlign($cIndex, $function); |
| 308 | 308 | } |
| 309 | 309 | } else { |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | * @see HtmlSemDoubleElement::compile() |
| 365 | 365 | */ |
| 366 | 366 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 367 | - if(\sizeof($this->_compileParts)<3){ |
|
| 367 | + if (\sizeof($this->_compileParts)<3) { |
|
| 368 | 368 | $this->_template="%content%"; |
| 369 | 369 | $this->refresh($js); |
| 370 | 370 | } |
@@ -373,9 +373,9 @@ discard block |
||
| 373 | 373 | } |
| 374 | 374 | |
| 375 | 375 | protected function compile_once(JsUtils $js=NULL, &$view=NULL) { |
| 376 | - parent::compile_once($js,$view); |
|
| 376 | + parent::compile_once($js, $view); |
|
| 377 | 377 | if ($this->propertyContains("class", "sortable")) { |
| 378 | - $this->addEvent("execute", "$('#" . $this->identifier . "').tablesort().data('tablesort').sort($('th.default-sort'));"); |
|
| 378 | + $this->addEvent("execute", "$('#".$this->identifier."').tablesort().data('tablesort').sort($('th.default-sort'));"); |
|
| 379 | 379 | } |
| 380 | 380 | } |
| 381 | 381 | |
@@ -388,13 +388,13 @@ discard block |
||
| 388 | 388 | public function fromDatabaseObject($object, $function) { |
| 389 | 389 | $result=$function($object); |
| 390 | 390 | if (\is_array($result)) { |
| 391 | - $result= $this->addRow($function($object)); |
|
| 391 | + $result=$this->addRow($function($object)); |
|
| 392 | 392 | } else { |
| 393 | - $result= $this->getBody()->_addRow($result); |
|
| 393 | + $result=$this->getBody()->_addRow($result); |
|
| 394 | 394 | } |
| 395 | - if(isset($this->_afterCompileEvents["onNewRow"])){ |
|
| 396 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
| 397 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
| 395 | + if (isset($this->_afterCompileEvents["onNewRow"])) { |
|
| 396 | + if (\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
| 397 | + $this->_afterCompileEvents["onNewRow"]($result, $object); |
|
| 398 | 398 | } |
| 399 | 399 | return $result; |
| 400 | 400 | } |
@@ -409,21 +409,21 @@ discard block |
||
| 409 | 409 | return $this; |
| 410 | 410 | } |
| 411 | 411 | |
| 412 | - public function refresh($js){ |
|
| 412 | + public function refresh($js) { |
|
| 413 | 413 | $this->_footer=$this->getFooter(); |
| 414 | - if(isset($js)){ |
|
| 415 | - $js->exec('$("#'.$this->identifier.' tfoot").replaceWith("'.\addslashes($this->_footer).'");',true); |
|
| 414 | + if (isset($js)) { |
|
| 415 | + $js->exec('$("#'.$this->identifier.' tfoot").replaceWith("'.\addslashes($this->_footer).'");', true); |
|
| 416 | 416 | } |
| 417 | 417 | } |
| 418 | 418 | |
| 419 | - public function run(JsUtils $js){ |
|
| 420 | - if(!$this->_runned){ |
|
| 421 | - if(isset($this->_activeRowSelector)){ |
|
| 419 | + public function run(JsUtils $js) { |
|
| 420 | + if (!$this->_runned) { |
|
| 421 | + if (isset($this->_activeRowSelector)) { |
|
| 422 | 422 | $this->_activeRowSelector->run(); |
| 423 | 423 | } |
| 424 | 424 | } |
| 425 | - $result= parent::run($js); |
|
| 426 | - if(isset($this->_footer)) |
|
| 425 | + $result=parent::run($js); |
|
| 426 | + if (isset($this->_footer)) |
|
| 427 | 427 | $this->_footer->run($js); |
| 428 | 428 | $this->_runned=true; |
| 429 | 429 | return $result; |
@@ -447,47 +447,47 @@ discard block |
||
| 447 | 447 | * @param boolean $multiple |
| 448 | 448 | * @return HtmlTable |
| 449 | 449 | */ |
| 450 | - public function setActiveRowSelector($class="active",$event="click",$multiple=false){ |
|
| 451 | - $this->_activeRowSelector=new ActiveRow($this,$class,$event,$multiple); |
|
| 450 | + public function setActiveRowSelector($class="active", $event="click", $multiple=false) { |
|
| 451 | + $this->_activeRowSelector=new ActiveRow($this, $class, $event, $multiple); |
|
| 452 | 452 | return $this; |
| 453 | 453 | } |
| 454 | 454 | |
| 455 | - public function hideColumn($colIndex){ |
|
| 456 | - if(isset($this->content["thead"])){ |
|
| 455 | + public function hideColumn($colIndex) { |
|
| 456 | + if (isset($this->content["thead"])) { |
|
| 457 | 457 | $this->content["thead"]->hideColumn($colIndex); |
| 458 | 458 | } |
| 459 | 459 | $this->content["tbody"]->hideColumn($colIndex); |
| 460 | - if(isset($this->content["tfoot"])){ |
|
| 460 | + if (isset($this->content["tfoot"])) { |
|
| 461 | 461 | $this->content["tfoot"]->hideColumn($colIndex); |
| 462 | 462 | } |
| 463 | 463 | return $this; |
| 464 | 464 | } |
| 465 | 465 | |
| 466 | - public function setColWidth($colIndex,$width){ |
|
| 466 | + public function setColWidth($colIndex, $width) { |
|
| 467 | 467 | $part=$this->_getFirstPart(); |
| 468 | - if($part!==null && $part->count()>0) |
|
| 468 | + if ($part!==null && $part->count()>0) |
|
| 469 | 469 | $part->getCell(0, $colIndex)->setWidth($width); |
| 470 | 470 | return $this; |
| 471 | 471 | } |
| 472 | 472 | |
| 473 | - public function setColWidths($widths){ |
|
| 473 | + public function setColWidths($widths) { |
|
| 474 | 474 | $part=$this->_getFirstPart(); |
| 475 | - if($part!==null && $part->count()>0){ |
|
| 475 | + if ($part!==null && $part->count()>0) { |
|
| 476 | 476 | $count=$part->getColCount(); |
| 477 | - if(!\is_array($widths)){ |
|
| 477 | + if (!\is_array($widths)) { |
|
| 478 | 478 | $widths=\array_fill(0, $count, $widths); |
| 479 | 479 | } |
| 480 | - $max=\min(\sizeof($widths),$count); |
|
| 481 | - for($i=0;$i<$max;$i++){ |
|
| 480 | + $max=\min(\sizeof($widths), $count); |
|
| 481 | + for ($i=0; $i<$max; $i++) { |
|
| 482 | 482 | $part->getCell(0, $i)->setWidth($widths[$i]); |
| 483 | 483 | } |
| 484 | 484 | } |
| 485 | 485 | return $this; |
| 486 | 486 | } |
| 487 | 487 | |
| 488 | - public function mergeIdentiqualValues($colIndex,$function="strip_tags"){ |
|
| 488 | + public function mergeIdentiqualValues($colIndex, $function="strip_tags") { |
|
| 489 | 489 | $body=$this->getBody(); |
| 490 | - $body->mergeIdentiqualValues($colIndex,$function); |
|
| 490 | + $body->mergeIdentiqualValues($colIndex, $function); |
|
| 491 | 491 | return $this; |
| 492 | 492 | } |
| 493 | 493 | /** |
@@ -501,16 +501,16 @@ discard block |
||
| 501 | 501 | * @param mixed $_innerScript |
| 502 | 502 | */ |
| 503 | 503 | public function setInnerScript($_innerScript) { |
| 504 | - $this->_innerScript = $_innerScript; |
|
| 504 | + $this->_innerScript=$_innerScript; |
|
| 505 | 505 | } |
| 506 | 506 | |
| 507 | - public function onActiveRowChange($jsCode){ |
|
| 508 | - $this->on("activeRowChange",$jsCode); |
|
| 507 | + public function onActiveRowChange($jsCode) { |
|
| 508 | + $this->on("activeRowChange", $jsCode); |
|
| 509 | 509 | return $this; |
| 510 | 510 | } |
| 511 | 511 | |
| 512 | - public function addMergeRow($colCount,$value=null){ |
|
| 513 | - return $this->getBody()->addMergeRow($colCount,$value); |
|
| 512 | + public function addMergeRow($colCount, $value=null) { |
|
| 513 | + return $this->getBody()->addMergeRow($colCount, $value); |
|
| 514 | 514 | } |
| 515 | 515 | |
| 516 | 516 | } |
@@ -22,25 +22,25 @@ discard block |
||
| 22 | 22 | $this->_rowClass="_json _element"; |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - protected function _generateContent($table){ |
|
| 25 | + protected function _generateContent($table) { |
|
| 26 | 26 | $this->_addRowModel($table); |
| 27 | 27 | parent::_generateContent($table); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - protected function _addRowModel($table){ |
|
| 30 | + protected function _addRowModel($table) { |
|
| 31 | 31 | $fields=$this->_instanceViewer->getSimpleProperties(); |
| 32 | - $row=$this->_createRow($table, $this->_modelClass,$fields); |
|
| 33 | - $row->setProperty("style","display:none;"); |
|
| 32 | + $row=$this->_createRow($table, $this->_modelClass, $fields); |
|
| 33 | + $row->setProperty("style", "display:none;"); |
|
| 34 | 34 | $table->getBody()->_addRow($row); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - protected function _createRow($table,$rowClass,$fields){ |
|
| 37 | + protected function _createRow($table, $rowClass, $fields) { |
|
| 38 | 38 | $object=JReflection::jsonObject($this->_model); |
| 39 | - if(isset($this->_rowModelCallback)){ |
|
| 39 | + if (isset($this->_rowModelCallback)) { |
|
| 40 | 40 | $callback=$this->_rowModelCallback; |
| 41 | 41 | $callback($object); |
| 42 | 42 | } |
| 43 | - $row=$this->_generateRow($object, $fields,$table,"_jsonArrayChecked"); |
|
| 43 | + $row=$this->_generateRow($object, $fields, $table, "_jsonArrayChecked"); |
|
| 44 | 44 | $row->setClass($rowClass." _element"); |
| 45 | 45 | return $row; |
| 46 | 46 | } |
@@ -49,24 +49,24 @@ discard block |
||
| 49 | 49 | * {@inheritDoc} |
| 50 | 50 | * @see DataTable::_associatePaginationBehavior() |
| 51 | 51 | */ |
| 52 | - protected function _associatePaginationBehavior(JsUtils $js=NULL,$offset=null){ |
|
| 52 | + protected function _associatePaginationBehavior(JsUtils $js=NULL, $offset=null) { |
|
| 53 | 53 | $callback=null; |
| 54 | 54 | $menu=$this->_pagination->getMenu(); |
| 55 | 55 | |
| 56 | - if(isset($js)){ |
|
| 56 | + if (isset($js)) { |
|
| 57 | 57 | $id=$this->identifier; |
| 58 | 58 | $callback=$js->getScript($offset).$this->getHtmlComponent()->getInnerScript(); |
| 59 | - $callback.=$js->trigger("#".$id." [name='selection[]']","change",false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js)); |
|
| 59 | + $callback.=$js->trigger("#".$id." [name='selection[]']", "change", false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js)); |
|
| 60 | 60 | $callback.=$this->_generatePaginationScript($id); |
| 61 | - if(isset($this->_urls["refresh"])){ |
|
| 62 | - if(isset($menu)) |
|
| 63 | - $js->jsonArrayOn("click", "#".$menu->getIdentifier()." a","#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"],"post",["params"=>"{'p':$(this).attr('data-page'),'_model':'".JString::doubleBackSlashes($this->_model)."'}","jsCallback"=>$callback]); |
|
| 61 | + if (isset($this->_urls["refresh"])) { |
|
| 62 | + if (isset($menu)) |
|
| 63 | + $js->jsonArrayOn("click", "#".$menu->getIdentifier()." a", "#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"], "post", ["params"=>"{'p':$(this).attr('data-page'),'_model':'".JString::doubleBackSlashes($this->_model)."'}", "jsCallback"=>$callback]); |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - protected function _generatePaginationScript($id){ |
|
| 69 | + protected function _generatePaginationScript($id) { |
|
| 70 | 70 | return ";var page=parseInt($(self).attr('data-page')) || 1;var pages_visibles=$('#pagination-{$id} .item').length-2; |
| 71 | 71 | var lastPage=$('#pagination-{$id} ._lastPage'); |
| 72 | 72 | var middle= Math.ceil((pages_visibles-1)/ 2); |
@@ -86,16 +86,16 @@ discard block |
||
| 86 | 86 | lastPage.attr('data-page',Math.min(lastPage.attr('data-max'),page+1)); |
| 87 | 87 | $('#{$id}').trigger('pageChange');$('#{$id}').trigger('activeRowChange');$('#pagination-{$id}').show();"; |
| 88 | 88 | } |
| 89 | - protected function _compileSearchFieldBehavior(JsUtils $js=NULL){ |
|
| 89 | + protected function _compileSearchFieldBehavior(JsUtils $js=NULL) { |
|
| 90 | 90 | |
| 91 | 91 | } |
| 92 | - protected function _associateSearchFieldBehavior(JsUtils $js=NULL,$offset=null){ |
|
| 93 | - if(isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])){ |
|
| 92 | + protected function _associateSearchFieldBehavior(JsUtils $js=NULL, $offset=null) { |
|
| 93 | + if (isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])) { |
|
| 94 | 94 | $id=$this->identifier; |
| 95 | 95 | $callback=$js->getScript($offset).$this->getHtmlComponent()->getInnerScript(); |
| 96 | - $callback.=$js->trigger("#".$id." [name='selection[]']","change",false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js)); |
|
| 96 | + $callback.=$js->trigger("#".$id." [name='selection[]']", "change", false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js)); |
|
| 97 | 97 | $callback.="$('#pagination-{$id}').hide();$('#".$this->identifier."').trigger('searchTerminate',[$(self).val()]);"; |
| 98 | - $js->jsonArrayOn("change", "#".$this->_searchField->getDataField()->getIdentifier(),"#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"],"post",["params"=>"{'s':$(self).val(),'_model':'".JString::doubleBackSlashes($this->_model)."'}","jsCallback"=>$callback]); |
|
| 98 | + $js->jsonArrayOn("change", "#".$this->_searchField->getDataField()->getIdentifier(), "#".$this->_identifier." tr.".$this->_modelClass, $this->_urls["refresh"], "post", ["params"=>"{'s':$(self).val(),'_model':'".JString::doubleBackSlashes($this->_model)."'}", "jsCallback"=>$callback]); |
|
| 99 | 99 | } |
| 100 | 100 | } |
| 101 | 101 | |
@@ -109,29 +109,29 @@ discard block |
||
| 109 | 109 | * @param string $jsCallback |
| 110 | 110 | * @return AjaxCall |
| 111 | 111 | */ |
| 112 | - public function jsJsonArray($url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){ |
|
| 113 | - $parameters=\array_merge($parameters,["modelSelector"=>"#".$this->_identifier." tr.".$this->_modelClass,"url"=>$url,"method"=>$method,"params"=>$params,"jsCallback"=>$jsCallback]); |
|
| 112 | + public function jsJsonArray($url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) { |
|
| 113 | + $parameters=\array_merge($parameters, ["modelSelector"=>"#".$this->_identifier." tr.".$this->_modelClass, "url"=>$url, "method"=>$method, "params"=>$params, "jsCallback"=>$jsCallback]); |
|
| 114 | 114 | return new AjaxCall("jsonArray", $parameters); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - public function jsClear(){ |
|
| 117 | + public function jsClear() { |
|
| 118 | 118 | return "$('#{$this->identifier} tbody').find('._json').remove();"; |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - public function clearOn(BaseHtml $element,$event, $stopPropagation=false, $preventDefault=false){ |
|
| 122 | - return $element->addEvent($event, $this->jsClear(),$stopPropagation,$preventDefault); |
|
| 121 | + public function clearOn(BaseHtml $element, $event, $stopPropagation=false, $preventDefault=false) { |
|
| 122 | + return $element->addEvent($event, $this->jsClear(), $stopPropagation, $preventDefault); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - public function clearOnClick(BaseHtml $element,$stopPropagation=false, $preventDefault=false){ |
|
| 126 | - return $this->clearOn($element, "click",$stopPropagation,$preventDefault); |
|
| 125 | + public function clearOnClick(BaseHtml $element, $stopPropagation=false, $preventDefault=false) { |
|
| 126 | + return $this->clearOn($element, "click", $stopPropagation, $preventDefault); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | - public function jsonArrayOn(BaseHtml $element,$event,$url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){ |
|
| 130 | - return $element->_addEvent($event, $this->jsJsonArray($url,$method,$params,$jsCallback,$parameters)); |
|
| 129 | + public function jsonArrayOn(BaseHtml $element, $event, $url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) { |
|
| 130 | + return $element->_addEvent($event, $this->jsJsonArray($url, $method, $params, $jsCallback, $parameters)); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - public function jsonArrayOnClick(BaseHtml $element,$url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){ |
|
| 134 | - return $this->jsonArrayOn($element, "click", $url,$method,$params,$jsCallback,$parameters); |
|
| 133 | + public function jsonArrayOnClick(BaseHtml $element, $url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) { |
|
| 134 | + return $this->jsonArrayOn($element, "click", $url, $method, $params, $jsCallback, $parameters); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -142,8 +142,8 @@ discard block |
||
| 142 | 142 | * @param number $pages_visibles The number of visible pages in the Pagination component |
| 143 | 143 | * @return DataTable |
| 144 | 144 | */ |
| 145 | - public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=null){ |
|
| 146 | - return parent::paginate($page, $total_rowcount,$items_per_page,$pages_visibles); |
|
| 145 | + public function paginate($page, $total_rowcount, $items_per_page=10, $pages_visibles=null) { |
|
| 146 | + return parent::paginate($page, $total_rowcount, $items_per_page, $pages_visibles); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | public function setRowModelCallback($_rowModelCallback) { |
@@ -27,15 +27,15 @@ discard block |
||
| 27 | 27 | return $this->content; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function addContent($content,$before=false) { |
|
| 30 | + public function addContent($content, $before=false) { |
|
| 31 | 31 | if (!\is_array($this->content)) { |
| 32 | - if(isset($this->content)) |
|
| 33 | - $this->content=array ($this->content); |
|
| 32 | + if (isset($this->content)) |
|
| 33 | + $this->content=array($this->content); |
|
| 34 | 34 | else |
| 35 | 35 | $this->content=array(); |
| 36 | 36 | } |
| 37 | - if($before) |
|
| 38 | - array_unshift($this->content,$content); |
|
| 37 | + if ($before) |
|
| 38 | + array_unshift($this->content, $content); |
|
| 39 | 39 | else |
| 40 | 40 | $this->content []=$content; |
| 41 | 41 | return $this; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | if ($this->content instanceof HtmlDoubleElement) { |
| 51 | 51 | $this->content->run($js); |
| 52 | 52 | } else if (\is_array($this->content)) { |
| 53 | - foreach ( $this->content as $itemContent ) { |
|
| 53 | + foreach ($this->content as $itemContent) { |
|
| 54 | 54 | if ($itemContent instanceof HtmlDoubleElement) { |
| 55 | 55 | $itemContent->run($js); |
| 56 | 56 | } |
@@ -67,19 +67,19 @@ discard block |
||
| 67 | 67 | return $this; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - public function getContentInstances($class){ |
|
| 71 | - return $this->_getContentInstances($class,$this->content); |
|
| 70 | + public function getContentInstances($class) { |
|
| 71 | + return $this->_getContentInstances($class, $this->content); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - protected function _getContentInstances($class,$content){ |
|
| 74 | + protected function _getContentInstances($class, $content) { |
|
| 75 | 75 | $instances=[]; |
| 76 | - if($content instanceof $class){ |
|
| 76 | + if ($content instanceof $class) { |
|
| 77 | 77 | $instances[]=$content; |
| 78 | - }elseif($content instanceof HtmlDoubleElement){ |
|
| 79 | - $instances=\array_merge($instances,$content->getContentInstances($class)); |
|
| 80 | - }elseif (\is_array($content)){ |
|
| 81 | - foreach ($content as $element){ |
|
| 82 | - $instances=\array_merge($instances,$this->_getContentInstances($class, $element)); |
|
| 78 | + }elseif ($content instanceof HtmlDoubleElement) { |
|
| 79 | + $instances=\array_merge($instances, $content->getContentInstances($class)); |
|
| 80 | + }elseif (\is_array($content)) { |
|
| 81 | + foreach ($content as $element) { |
|
| 82 | + $instances=\array_merge($instances, $this->_getContentInstances($class, $element)); |
|
| 83 | 83 | } |
| 84 | 84 | } |
| 85 | 85 | return $instances; |
@@ -89,16 +89,16 @@ discard block |
||
| 89 | 89 | * Transforms the element into a link |
| 90 | 90 | * @return HtmlDoubleElement |
| 91 | 91 | */ |
| 92 | - public function asLink($href=NULL,$target=NULL) { |
|
| 92 | + public function asLink($href=NULL, $target=NULL) { |
|
| 93 | 93 | if (isset($href)) |
| 94 | 94 | $this->setProperty("href", $href); |
| 95 | - if(isset($target)) |
|
| 95 | + if (isset($target)) |
|
| 96 | 96 | $this->setProperty("target", $target); |
| 97 | 97 | return $this->setTagName("a"); |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - public function getTextContent(){ |
|
| 101 | - if(is_array($this->content)){ |
|
| 100 | + public function getTextContent() { |
|
| 101 | + if (is_array($this->content)) { |
|
| 102 | 102 | return strip_tags(implode("", $this->content)); |
| 103 | 103 | } |
| 104 | 104 | return strip_tags($this->content); |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * |
| 26 | 26 | */ |
| 27 | 27 | class DataTable extends Widget { |
| 28 | - use TableTrait,DataTableFieldAsTrait,HasCheckboxesTrait,BaseTrait; |
|
| 28 | + use TableTrait, DataTableFieldAsTrait, HasCheckboxesTrait, BaseTrait; |
|
| 29 | 29 | protected $_searchField; |
| 30 | 30 | protected $_urls; |
| 31 | 31 | protected $_pagination; |
@@ -44,41 +44,41 @@ discard block |
||
| 44 | 44 | protected $_colWidths; |
| 45 | 45 | |
| 46 | 46 | |
| 47 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
| 48 | - parent::__construct($identifier, $model,$modelInstance); |
|
| 49 | - $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0,0), false); |
|
| 47 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
| 48 | + parent::__construct($identifier, $model, $modelInstance); |
|
| 49 | + $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0, 0), false); |
|
| 50 | 50 | $this->_urls=[]; |
| 51 | - $this->_emptyMessage=new HtmlMessage("","nothing to display"); |
|
| 51 | + $this->_emptyMessage=new HtmlMessage("", "nothing to display"); |
|
| 52 | 52 | $this->_emptyMessage->setIcon("info circle"); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - public function run(JsUtils $js){ |
|
| 55 | + public function run(JsUtils $js) { |
|
| 56 | 56 | $offset=$js->scriptCount(); |
| 57 | - if($this->_hasCheckboxes && isset($js)){ |
|
| 57 | + if ($this->_hasCheckboxes && isset($js)) { |
|
| 58 | 58 | $this->_runCheckboxes($js); |
| 59 | 59 | } |
| 60 | - if($this->_visibleHover){ |
|
| 61 | - $js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');",["preventDefault"=>false,"stopPropagation"=>true]); |
|
| 62 | - $js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');",["preventDefault"=>false,"stopPropagation"=>true]); |
|
| 60 | + if ($this->_visibleHover) { |
|
| 61 | + $js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');", ["preventDefault"=>false, "stopPropagation"=>true]); |
|
| 62 | + $js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');", ["preventDefault"=>false, "stopPropagation"=>true]); |
|
| 63 | 63 | } |
| 64 | - if(\is_array($this->_deleteBehavior)) |
|
| 65 | - $this->_generateBehavior("delete",$this->_deleteBehavior, $js); |
|
| 66 | - if(\is_array($this->_editBehavior)) |
|
| 67 | - $this->_generateBehavior("edit",$this->_editBehavior,$js); |
|
| 68 | - if(\is_array($this->_displayBehavior)){ |
|
| 69 | - $this->_generateBehavior("display",$this->_displayBehavior,$js); |
|
| 64 | + if (\is_array($this->_deleteBehavior)) |
|
| 65 | + $this->_generateBehavior("delete", $this->_deleteBehavior, $js); |
|
| 66 | + if (\is_array($this->_editBehavior)) |
|
| 67 | + $this->_generateBehavior("edit", $this->_editBehavior, $js); |
|
| 68 | + if (\is_array($this->_displayBehavior)) { |
|
| 69 | + $this->_generateBehavior("display", $this->_displayBehavior, $js); |
|
| 70 | 70 | } |
| 71 | 71 | parent::run($js); |
| 72 | - if(isset($this->_pagination)) |
|
| 73 | - $this->_associatePaginationBehavior($js,$offset); |
|
| 74 | - $this->_associateSearchFieldBehavior($js,$offset); |
|
| 72 | + if (isset($this->_pagination)) |
|
| 73 | + $this->_associatePaginationBehavior($js, $offset); |
|
| 74 | + $this->_associateSearchFieldBehavior($js, $offset); |
|
| 75 | 75 | |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - protected function _generateBehavior($op,$params,JsUtils $js){ |
|
| 79 | - if(isset($this->_urls[$op])){ |
|
| 80 | - $params=\array_merge($params,["attr"=>"data-ajax"]); |
|
| 81 | - $js->ajaxOnClick("#".$this->identifier." ._".$op, $this->_urls[$op],$this->getTargetSelector($op),$params); |
|
| 78 | + protected function _generateBehavior($op, $params, JsUtils $js) { |
|
| 79 | + if (isset($this->_urls[$op])) { |
|
| 80 | + $params=\array_merge($params, ["attr"=>"data-ajax"]); |
|
| 81 | + $js->ajaxOnClick("#".$this->identifier." ._".$op, $this->_urls[$op], $this->getTargetSelector($op), $params); |
|
| 82 | 82 | } |
| 83 | 83 | } |
| 84 | 84 | |
@@ -91,21 +91,21 @@ discard block |
||
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | |
| 94 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 95 | - if(!$this->_generated){ |
|
| 96 | - if(isset($this->_buttonsColumn)){ |
|
| 94 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 95 | + if (!$this->_generated) { |
|
| 96 | + if (isset($this->_buttonsColumn)) { |
|
| 97 | 97 | $this->_instanceViewer->sortColumnContent($this->_buttonsColumn, $this->_buttons); |
| 98 | 98 | } |
| 99 | 99 | $this->_instanceViewer->setInstance($this->_model); |
| 100 | 100 | $captions=$this->_instanceViewer->getCaptions(); |
| 101 | 101 | $table=$this->content["table"]; |
| 102 | - if($this->_hasCheckboxes){ |
|
| 102 | + if ($this->_hasCheckboxes) { |
|
| 103 | 103 | $this->_generateMainCheckbox($captions); |
| 104 | 104 | } |
| 105 | 105 | $table->setRowCount(0, \sizeof($captions)); |
| 106 | - $this->_generateHeader($table,$captions); |
|
| 106 | + $this->_generateHeader($table, $captions); |
|
| 107 | 107 | |
| 108 | - if(isset($this->_compileParts)) |
|
| 108 | + if (isset($this->_compileParts)) |
|
| 109 | 109 | $table->setCompileParts($this->_compileParts); |
| 110 | 110 | |
| 111 | 111 | $this->_generateContent($table); |
@@ -113,147 +113,147 @@ discard block |
||
| 113 | 113 | $this->compileExtraElements($table, $captions); |
| 114 | 114 | $this->_compileSearchFieldBehavior($js); |
| 115 | 115 | |
| 116 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"table",PositionInTable::AFTERTABLE]); |
|
| 116 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "table", PositionInTable::AFTERTABLE]); |
|
| 117 | 117 | $this->_compileForm(); |
| 118 | 118 | $this->_applyStyleAttributes($table); |
| 119 | 119 | $this->_generated=true; |
| 120 | 120 | } |
| 121 | - return parent::compile($js,$view); |
|
| 121 | + return parent::compile($js, $view); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - protected function compileExtraElements($table,$captions){ |
|
| 124 | + protected function compileExtraElements($table, $captions) { |
|
| 125 | 125 | |
| 126 | - if($this->_hasCheckboxes && $table->hasPart("thead")){ |
|
| 126 | + if ($this->_hasCheckboxes && $table->hasPart("thead")) { |
|
| 127 | 127 | $table->getHeader()->getCell(0, 0)->addClass("no-sort"); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - if(isset($this->_toolbar)){ |
|
| 130 | + if (isset($this->_toolbar)) { |
|
| 131 | 131 | $this->_setToolbarPosition($table, $captions); |
| 132 | 132 | } |
| 133 | - if(isset($this->_pagination) && $this->_pagination->getVisible()){ |
|
| 133 | + if (isset($this->_pagination) && $this->_pagination->getVisible()) { |
|
| 134 | 134 | $this->_generatePagination($table); |
| 135 | 135 | } |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - protected function _applyStyleAttributes($table){ |
|
| 139 | - if(isset($this->_hiddenColumns)) |
|
| 138 | + protected function _applyStyleAttributes($table) { |
|
| 139 | + if (isset($this->_hiddenColumns)) |
|
| 140 | 140 | $this->_hideColumns(); |
| 141 | - if(isset($this->_colWidths)){ |
|
| 142 | - foreach ($this->_colWidths as $colIndex=>$width){ |
|
| 143 | - $table->setColWidth($colIndex,$width); |
|
| 141 | + if (isset($this->_colWidths)) { |
|
| 142 | + foreach ($this->_colWidths as $colIndex=>$width) { |
|
| 143 | + $table->setColWidth($colIndex, $width); |
|
| 144 | 144 | } |
| 145 | 145 | } |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - protected function _hideColumns(){ |
|
| 149 | - foreach ($this->_hiddenColumns as $colIndex){ |
|
| 148 | + protected function _hideColumns() { |
|
| 149 | + foreach ($this->_hiddenColumns as $colIndex) { |
|
| 150 | 150 | $this->_self->hideColumn($colIndex); |
| 151 | 151 | } |
| 152 | 152 | return $this; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | - protected function _generateHeader(HtmlTable $table,$captions){ |
|
| 155 | + protected function _generateHeader(HtmlTable $table, $captions) { |
|
| 156 | 156 | $table->setHeaderValues($captions); |
| 157 | - if(isset($this->_sortable)){ |
|
| 157 | + if (isset($this->_sortable)) { |
|
| 158 | 158 | $table->setSortable($this->_sortable); |
| 159 | 159 | } |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | |
| 163 | 163 | |
| 164 | - protected function _generateContent($table){ |
|
| 164 | + protected function _generateContent($table) { |
|
| 165 | 165 | $objects=$this->_modelInstance; |
| 166 | - if(isset($this->_pagination)){ |
|
| 166 | + if (isset($this->_pagination)) { |
|
| 167 | 167 | $objects=$this->_pagination->getObjects($this->_modelInstance); |
| 168 | 168 | } |
| 169 | 169 | InstanceViewer::setIndex(0); |
| 170 | 170 | $fields=$this->_instanceViewer->getSimpleProperties(); |
| 171 | 171 | $groupByFields=$this->_instanceViewer->getGroupByFields(); |
| 172 | - if(!is_array($groupByFields)){ |
|
| 173 | - $table->fromDatabaseObjects($objects, function($instance) use($table,$fields){ |
|
| 174 | - return $this->_generateRow($instance, $fields,$table); |
|
| 172 | + if (!is_array($groupByFields)) { |
|
| 173 | + $table->fromDatabaseObjects($objects, function($instance) use($table, $fields){ |
|
| 174 | + return $this->_generateRow($instance, $fields, $table); |
|
| 175 | 175 | }); |
| 176 | - }else{ |
|
| 176 | + } else { |
|
| 177 | 177 | $activeValues=array_combine($groupByFields, array_fill(0, sizeof($groupByFields), null)); |
| 178 | 178 | $uuids=[]; |
| 179 | - $table->fromDatabaseObjects($objects, function($instance) use($table,$fields,&$activeValues,$groupByFields,&$uuids){ |
|
| 179 | + $table->fromDatabaseObjects($objects, function($instance) use($table, $fields, &$activeValues, $groupByFields, &$uuids){ |
|
| 180 | 180 | $this->_instanceViewer->setInstance($instance); |
| 181 | - foreach ($groupByFields as $index=>$gbField){ |
|
| 182 | - $this->_generateGroupByRow($index, $gbField, $table,$fields,$activeValues, $uuids); |
|
| 181 | + foreach ($groupByFields as $index=>$gbField) { |
|
| 182 | + $this->_generateGroupByRow($index, $gbField, $table, $fields, $activeValues, $uuids); |
|
| 183 | 183 | } |
| 184 | - return $this->_generateRow($instance, $fields,$table,null,$uuids); |
|
| 184 | + return $this->_generateRow($instance, $fields, $table, null, $uuids); |
|
| 185 | 185 | }); |
| 186 | 186 | } |
| 187 | - if($table->getRowCount()==0){ |
|
| 187 | + if ($table->getRowCount()==0) { |
|
| 188 | 188 | $result=$table->addRow(); |
| 189 | 189 | $result->mergeRow(); |
| 190 | 190 | $result->setValues([$this->_emptyMessage]); |
| 191 | 191 | } |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | - protected function _generateGroupByRow($index,$gbField,$table,$fields,&$activeValues,&$uuids){ |
|
| 194 | + protected function _generateGroupByRow($index, $gbField, $table, $fields, &$activeValues, &$uuids) { |
|
| 195 | 195 | $newValue=$this->_instanceViewer->getValue($gbField); |
| 196 | - if($this->getElementContent($activeValues[$gbField])!==$this->getElementContent($newValue)){ |
|
| 197 | - if($index==0){ |
|
| 196 | + if ($this->getElementContent($activeValues[$gbField])!==$this->getElementContent($newValue)) { |
|
| 197 | + if ($index==0) { |
|
| 198 | 198 | $uuids=[]; |
| 199 | 199 | } |
| 200 | 200 | $uuid=uniqid("grp"); |
| 201 | 201 | $uuids[$gbField]=$uuid; |
| 202 | 202 | $id=$this->_instanceViewer->getIdentifier(); |
| 203 | - $result=$table->addMergeRow(sizeof($fields)+1,$newValue); |
|
| 203 | + $result=$table->addMergeRow(sizeof($fields)+1, $newValue); |
|
| 204 | 204 | $result->setIdentifier($this->identifier."-tr-gb-".$id); |
| 205 | - $result->setProperty("data-ajax",$id); |
|
| 206 | - $result->setProperty("data-group",$uuid); |
|
| 207 | - $result->addToProperty("class",$this->_rowClass); |
|
| 205 | + $result->setProperty("data-ajax", $id); |
|
| 206 | + $result->setProperty("data-group", $uuid); |
|
| 207 | + $result->addToProperty("class", $this->_rowClass); |
|
| 208 | 208 | $activeValues[$gbField]=$newValue; |
| 209 | 209 | } |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | - private function getElementContent($elm){ |
|
| 213 | - if($elm instanceof HtmlDoubleElement){ |
|
| 212 | + private function getElementContent($elm) { |
|
| 213 | + if ($elm instanceof HtmlDoubleElement) { |
|
| 214 | 214 | return $elm->getTextContent(); |
| 215 | 215 | } |
| 216 | 216 | return $elm; |
| 217 | 217 | } |
| 218 | 218 | |
| 219 | - protected function _generateRow($instance,$fields,&$table,$checkedClass=null,$uuids=null){ |
|
| 219 | + protected function _generateRow($instance, $fields, &$table, $checkedClass=null, $uuids=null) { |
|
| 220 | 220 | $this->_instanceViewer->setInstance($instance); |
| 221 | 221 | InstanceViewer::$index++; |
| 222 | - $values= $this->_instanceViewer->getValues(); |
|
| 222 | + $values=$this->_instanceViewer->getValues(); |
|
| 223 | 223 | $id=$this->_instanceViewer->getIdentifier(); |
| 224 | 224 | $dataAjax=$id; |
| 225 | 225 | $id=$this->cleanIdentifier($id); |
| 226 | - if($this->_hasCheckboxes){ |
|
| 227 | - $ck=new HtmlCheckbox("ck-".$this->identifier."-".$id,""); |
|
| 226 | + if ($this->_hasCheckboxes) { |
|
| 227 | + $ck=new HtmlCheckbox("ck-".$this->identifier."-".$id, ""); |
|
| 228 | 228 | $checked=false; |
| 229 | - if(isset($this->_checkedCallback)){ |
|
| 229 | + if (isset($this->_checkedCallback)) { |
|
| 230 | 230 | $func=$this->_checkedCallback; |
| 231 | 231 | $checked=$func($instance); |
| 232 | 232 | } |
| 233 | 233 | $ck->setChecked($checked); |
| 234 | 234 | $ck->setOnChange("event.stopPropagation();"); |
| 235 | 235 | $field=$ck->getField(); |
| 236 | - $field->setProperty("value",$dataAjax); |
|
| 236 | + $field->setProperty("value", $dataAjax); |
|
| 237 | 237 | $field->setProperty("name", "selection[]"); |
| 238 | - if(isset($checkedClass)) |
|
| 238 | + if (isset($checkedClass)) |
|
| 239 | 239 | $field->setClass($checkedClass); |
| 240 | 240 | \array_unshift($values, $ck); |
| 241 | 241 | } |
| 242 | 242 | $result=$table->newRow(); |
| 243 | 243 | $result->setIdentifier($this->identifier."-tr-".$id); |
| 244 | - $result->setProperty("data-ajax",$dataAjax); |
|
| 244 | + $result->setProperty("data-ajax", $dataAjax); |
|
| 245 | 245 | $result->setValues($values); |
| 246 | - $result->addToProperty("class",$this->_rowClass); |
|
| 246 | + $result->addToProperty("class", $this->_rowClass); |
|
| 247 | 247 | $result->setPropertyValues("data-field", $fields); |
| 248 | - if(isset($uuids)){ |
|
| 249 | - $result->setProperty("data-child",implode(" ", $uuids)); |
|
| 248 | + if (isset($uuids)) { |
|
| 249 | + $result->setProperty("data-child", implode(" ", $uuids)); |
|
| 250 | 250 | } |
| 251 | 251 | return $result; |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - protected function _generatePagination($table){ |
|
| 255 | - if(isset($this->_toolbar)){ |
|
| 256 | - if($this->_toolbarPosition==PositionInTable::FOOTER) |
|
| 254 | + protected function _generatePagination($table) { |
|
| 255 | + if (isset($this->_toolbar)) { |
|
| 256 | + if ($this->_toolbarPosition==PositionInTable::FOOTER) |
|
| 257 | 257 | $this->_toolbar->setFloated("left"); |
| 258 | 258 | } |
| 259 | 259 | $footer=$table->getFooter(); |
@@ -261,13 +261,13 @@ discard block |
||
| 261 | 261 | $footer->addValues($this->_pagination->generateMenu($this->identifier)); |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - protected function _associatePaginationBehavior(JsUtils $js=NULL,$offset=null){ |
|
| 265 | - if(isset($this->_urls["refresh"])){ |
|
| 264 | + protected function _associatePaginationBehavior(JsUtils $js=NULL, $offset=null) { |
|
| 265 | + if (isset($this->_urls["refresh"])) { |
|
| 266 | 266 | $menu=$this->_pagination->getMenu(); |
| 267 | - if(isset($menu) && isset($js)){ |
|
| 268 | - $js->postOnClick("#".$menu->getIdentifier()." .item",$this->_urls["refresh"],"{'p':$(this).attr('data-page'),'_model':'".JString::doubleBackSlashes($this->_model)."'}",$this->getRefreshSelector(),["preventDefault"=>false,"jqueryDone"=>"replaceWith","hasLoader"=>false,"jsCallback"=>'$("#'.$this->identifier.'").trigger("pageChange");$("#'.$this->identifier.'").trigger("activeRowChange");']); |
|
| 267 | + if (isset($menu) && isset($js)) { |
|
| 268 | + $js->postOnClick("#".$menu->getIdentifier()." .item", $this->_urls["refresh"], "{'p':$(this).attr('data-page'),'_model':'".JString::doubleBackSlashes($this->_model)."'}", $this->getRefreshSelector(), ["preventDefault"=>false, "jqueryDone"=>"replaceWith", "hasLoader"=>false, "jsCallback"=>'$("#'.$this->identifier.'").trigger("pageChange");$("#'.$this->identifier.'").trigger("activeRowChange");']); |
|
| 269 | 269 | $page=URequest::post("p"); |
| 270 | - if(isset($page)){ |
|
| 270 | + if (isset($page)) { |
|
| 271 | 271 | $js->execAtLast('$("#'.$this->getIdentifier().' .pagination").children("a.item").removeClass("active");$("#'.$this->getIdentifier().' .pagination").children("a.item[data-page='.$page.']:not(.no-active)").addClass("active");'); |
| 272 | 272 | } |
| 273 | 273 | |
@@ -275,38 +275,38 @@ discard block |
||
| 275 | 275 | } |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - protected function _compileSearchFieldBehavior(JsUtils $js=NULL){ |
|
| 279 | - if(isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])){ |
|
| 280 | - $this->_searchField->postOn("change", $this->_urls["refresh"],"{'s':$(self).val(),'_model':'".JString::doubleBackSlashes($this->_model)."'}","#".$this->identifier." tbody",["preventDefault"=>false,"jqueryDone"=>"replaceWith","hasLoader"=>"internal","jsCallback"=>'$("#'.$this->identifier.'").trigger("searchTerminate",[$(self).val()]);']); |
|
| 278 | + protected function _compileSearchFieldBehavior(JsUtils $js=NULL) { |
|
| 279 | + if (isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])) { |
|
| 280 | + $this->_searchField->postOn("change", $this->_urls["refresh"], "{'s':$(self).val(),'_model':'".JString::doubleBackSlashes($this->_model)."'}", "#".$this->identifier." tbody", ["preventDefault"=>false, "jqueryDone"=>"replaceWith", "hasLoader"=>"internal", "jsCallback"=>'$("#'.$this->identifier.'").trigger("searchTerminate",[$(self).val()]);']); |
|
| 281 | 281 | } |
| 282 | 282 | } |
| 283 | - protected function _associateSearchFieldBehavior(JsUtils $js=NULL,$offset=null){ |
|
| 283 | + protected function _associateSearchFieldBehavior(JsUtils $js=NULL, $offset=null) { |
|
| 284 | 284 | |
| 285 | 285 | } |
| 286 | 286 | |
| 287 | - protected function _getFieldName($index){ |
|
| 287 | + protected function _getFieldName($index) { |
|
| 288 | 288 | $fieldName=parent::_getFieldName($index); |
| 289 | - if(\is_object($fieldName)) |
|
| 289 | + if (\is_object($fieldName)) |
|
| 290 | 290 | $fieldName="field-".$index; |
| 291 | 291 | return $fieldName."[]"; |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - protected function _getFieldCaption($index){ |
|
| 294 | + protected function _getFieldCaption($index) { |
|
| 295 | 295 | return null; |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | - protected function _setToolbarPosition($table,$captions=NULL){ |
|
| 299 | - switch ($this->_toolbarPosition){ |
|
| 298 | + protected function _setToolbarPosition($table, $captions=NULL) { |
|
| 299 | + switch ($this->_toolbarPosition) { |
|
| 300 | 300 | case PositionInTable::BEFORETABLE: |
| 301 | 301 | case PositionInTable::AFTERTABLE: |
| 302 | - if(isset($this->_compileParts)===false){ |
|
| 302 | + if (isset($this->_compileParts)===false) { |
|
| 303 | 303 | $this->content[$this->_toolbarPosition]=$this->_toolbar; |
| 304 | 304 | } |
| 305 | 305 | break; |
| 306 | 306 | case PositionInTable::HEADER: |
| 307 | 307 | case PositionInTable::FOOTER: |
| 308 | 308 | case PositionInTable::BODY: |
| 309 | - $this->addToolbarRow($this->_toolbarPosition,$table, $captions); |
|
| 309 | + $this->addToolbarRow($this->_toolbarPosition, $table, $captions); |
|
| 310 | 310 | break; |
| 311 | 311 | } |
| 312 | 312 | } |
@@ -318,16 +318,16 @@ discard block |
||
| 318 | 318 | * @param callable $callback function called after the field compilation |
| 319 | 319 | * @return DataTable |
| 320 | 320 | */ |
| 321 | - public function afterCompile($index,$callback){ |
|
| 322 | - $this->_instanceViewer->afterCompile($index,$callback); |
|
| 321 | + public function afterCompile($index, $callback) { |
|
| 322 | + $this->_instanceViewer->afterCompile($index, $callback); |
|
| 323 | 323 | return $this; |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - private function addToolbarRow($part,$table,$captions){ |
|
| 326 | + private function addToolbarRow($part, $table, $captions) { |
|
| 327 | 327 | $hasPart=$table->hasPart($part); |
| 328 | - if($hasPart){ |
|
| 328 | + if ($hasPart) { |
|
| 329 | 329 | $row=$table->getPart($part)->addRow(\sizeof($captions)); |
| 330 | - }else{ |
|
| 330 | + } else { |
|
| 331 | 331 | $row=$table->getPart($part)->getRow(0); |
| 332 | 332 | } |
| 333 | 333 | $row->mergeCol(); |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | * @see Widget::getHtmlComponent() |
| 340 | 340 | * @return HtmlTable |
| 341 | 341 | */ |
| 342 | - public function getHtmlComponent(){ |
|
| 342 | + public function getHtmlComponent() { |
|
| 343 | 343 | return $this->content["table"]; |
| 344 | 344 | } |
| 345 | 345 | |
@@ -354,13 +354,13 @@ discard block |
||
| 354 | 354 | * @return DataTable |
| 355 | 355 | */ |
| 356 | 356 | public function setUrls($urls) { |
| 357 | - if(\is_array($urls)){ |
|
| 358 | - $this->_urls["refresh"]=JArray::getValue($urls, "refresh",0); |
|
| 359 | - $this->_urls["edit"]=JArray::getValue($urls, "edit",1); |
|
| 360 | - $this->_urls["delete"]=JArray::getValue($urls, "delete",2); |
|
| 361 | - $this->_urls["display"]=JArray::getValue($urls, "display",3); |
|
| 362 | - }else{ |
|
| 363 | - $this->_urls=["refresh"=>$urls,"edit"=>$urls,"delete"=>$urls,"display"=>$urls]; |
|
| 357 | + if (\is_array($urls)) { |
|
| 358 | + $this->_urls["refresh"]=JArray::getValue($urls, "refresh", 0); |
|
| 359 | + $this->_urls["edit"]=JArray::getValue($urls, "edit", 1); |
|
| 360 | + $this->_urls["delete"]=JArray::getValue($urls, "delete", 2); |
|
| 361 | + $this->_urls["display"]=JArray::getValue($urls, "display", 3); |
|
| 362 | + } else { |
|
| 363 | + $this->_urls=["refresh"=>$urls, "edit"=>$urls, "delete"=>$urls, "display"=>$urls]; |
|
| 364 | 364 | } |
| 365 | 365 | return $this; |
| 366 | 366 | } |
@@ -373,8 +373,8 @@ discard block |
||
| 373 | 373 | * @param number $pages_visibles The number of visible pages in the Pagination component |
| 374 | 374 | * @return DataTable |
| 375 | 375 | */ |
| 376 | - public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=null){ |
|
| 377 | - $this->_pagination=new Pagination($items_per_page,$pages_visibles,$page,$total_rowcount); |
|
| 376 | + public function paginate($page, $total_rowcount, $items_per_page=10, $pages_visibles=null) { |
|
| 377 | + $this->_pagination=new Pagination($items_per_page, $pages_visibles, $page, $total_rowcount); |
|
| 378 | 378 | return $this; |
| 379 | 379 | } |
| 380 | 380 | |
@@ -385,8 +385,8 @@ discard block |
||
| 385 | 385 | * @param number $pages_visibles The number of visible pages in the Pagination component |
| 386 | 386 | * @return DataTable |
| 387 | 387 | */ |
| 388 | - public function autoPaginate($page=1,$items_per_page=10,$pages_visibles=4){ |
|
| 389 | - $this->_pagination=new Pagination($items_per_page,$pages_visibles,$page); |
|
| 388 | + public function autoPaginate($page=1, $items_per_page=10, $pages_visibles=4) { |
|
| 389 | + $this->_pagination=new Pagination($items_per_page, $pages_visibles, $page); |
|
| 390 | 390 | return $this; |
| 391 | 391 | } |
| 392 | 392 | |
@@ -396,7 +396,7 @@ discard block |
||
| 396 | 396 | * @param array $compileParts |
| 397 | 397 | * @return DataTable |
| 398 | 398 | */ |
| 399 | - public function refresh($compileParts=["tbody"]){ |
|
| 399 | + public function refresh($compileParts=["tbody"]) { |
|
| 400 | 400 | $this->_compileParts=$compileParts; |
| 401 | 401 | return $this; |
| 402 | 402 | } |
@@ -407,14 +407,14 @@ discard block |
||
| 407 | 407 | * @param string $position |
| 408 | 408 | * @return \Ajax\common\html\HtmlDoubleElement |
| 409 | 409 | */ |
| 410 | - public function addSearchInToolbar($position=Direction::RIGHT){ |
|
| 410 | + public function addSearchInToolbar($position=Direction::RIGHT) { |
|
| 411 | 411 | return $this->addInToolbar($this->getSearchField())->setPosition($position); |
| 412 | 412 | } |
| 413 | 413 | |
| 414 | - public function getSearchField(){ |
|
| 415 | - if(isset($this->_searchField)===false){ |
|
| 416 | - $this->_searchField=new HtmlInput("search-".$this->identifier,"search","","Search..."); |
|
| 417 | - $this->_searchField->addIcon("search",Direction::RIGHT); |
|
| 414 | + public function getSearchField() { |
|
| 415 | + if (isset($this->_searchField)===false) { |
|
| 416 | + $this->_searchField=new HtmlInput("search-".$this->identifier, "search", "", "Search..."); |
|
| 417 | + $this->_searchField->addIcon("search", Direction::RIGHT); |
|
| 418 | 418 | } |
| 419 | 419 | return $this->_searchField; |
| 420 | 420 | } |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | * Returns a form corresponding to the Datatable |
| 435 | 435 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
| 436 | 436 | */ |
| 437 | - public function asForm(){ |
|
| 437 | + public function asForm() { |
|
| 438 | 438 | return $this->getForm(); |
| 439 | 439 | } |
| 440 | 440 | |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | |
| 443 | 443 | protected function getTargetSelector($op) { |
| 444 | 444 | $result=$this->_targetSelector; |
| 445 | - if(!isset($result[$op])) |
|
| 445 | + if (!isset($result[$op])) |
|
| 446 | 446 | $result="#".$this->identifier; |
| 447 | 447 | return $result[$op]; |
| 448 | 448 | } |
@@ -453,15 +453,15 @@ discard block |
||
| 453 | 453 | * @return DataTable |
| 454 | 454 | */ |
| 455 | 455 | public function setTargetSelector($_targetSelector) { |
| 456 | - if(!\is_array($_targetSelector)){ |
|
| 457 | - $_targetSelector=["edit"=>$_targetSelector,"delete"=>$_targetSelector]; |
|
| 456 | + if (!\is_array($_targetSelector)) { |
|
| 457 | + $_targetSelector=["edit"=>$_targetSelector, "delete"=>$_targetSelector]; |
|
| 458 | 458 | } |
| 459 | 459 | $this->_targetSelector=$_targetSelector; |
| 460 | 460 | return $this; |
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | public function getRefreshSelector() { |
| 464 | - if(isset($this->_refreshSelector)) |
|
| 464 | + if (isset($this->_refreshSelector)) |
|
| 465 | 465 | return $this->_refreshSelector; |
| 466 | 466 | return "#".$this->identifier." tbody"; |
| 467 | 467 | } |
@@ -479,9 +479,9 @@ discard block |
||
| 479 | 479 | * {@inheritDoc} |
| 480 | 480 | * @see \Ajax\common\Widget::show() |
| 481 | 481 | */ |
| 482 | - public function show($modelInstance){ |
|
| 483 | - if(\is_array($modelInstance)){ |
|
| 484 | - if(isset($modelInstance[0]) && \is_array(array_values($modelInstance)[0])) |
|
| 482 | + public function show($modelInstance) { |
|
| 483 | + if (\is_array($modelInstance)) { |
|
| 484 | + if (isset($modelInstance[0]) && \is_array(array_values($modelInstance)[0])) |
|
| 485 | 485 | $modelInstance=\json_decode(\json_encode($modelInstance), FALSE); |
| 486 | 486 | } |
| 487 | 487 | $this->_modelInstance=$modelInstance; |
@@ -516,37 +516,37 @@ discard block |
||
| 516 | 516 | return $this; |
| 517 | 517 | } |
| 518 | 518 | |
| 519 | - public function setActiveRowSelector($class="active",$event="click",$multiple=false){ |
|
| 520 | - $this->_self->setActiveRowSelector($class,$event,$multiple); |
|
| 519 | + public function setActiveRowSelector($class="active", $event="click", $multiple=false) { |
|
| 520 | + $this->_self->setActiveRowSelector($class, $event, $multiple); |
|
| 521 | 521 | return $this; |
| 522 | 522 | } |
| 523 | 523 | |
| 524 | - public function hideColumn($colIndex){ |
|
| 525 | - if(!\is_array($this->_hiddenColumns)) |
|
| 524 | + public function hideColumn($colIndex) { |
|
| 525 | + if (!\is_array($this->_hiddenColumns)) |
|
| 526 | 526 | $this->_hiddenColumns=[]; |
| 527 | 527 | $this->_hiddenColumns[]=$colIndex; |
| 528 | 528 | return $this; |
| 529 | 529 | } |
| 530 | 530 | |
| 531 | - public function setColWidth($colIndex,$width){ |
|
| 531 | + public function setColWidth($colIndex, $width) { |
|
| 532 | 532 | $this->_colWidths[$colIndex]=$width; |
| 533 | 533 | return $this; |
| 534 | 534 | } |
| 535 | 535 | public function setColWidths($_colWidths) { |
| 536 | - $this->_colWidths = $_colWidths; |
|
| 536 | + $this->_colWidths=$_colWidths; |
|
| 537 | 537 | return $this; |
| 538 | 538 | } |
| 539 | 539 | |
| 540 | - public function setColAlignment($colIndex,$alignment){ |
|
| 541 | - $this->content["table"]->setColAlignment($colIndex,$alignment); |
|
| 540 | + public function setColAlignment($colIndex, $alignment) { |
|
| 541 | + $this->content["table"]->setColAlignment($colIndex, $alignment); |
|
| 542 | 542 | return $this; |
| 543 | 543 | } |
| 544 | 544 | |
| 545 | - public function trigger($event,$params="[]"){ |
|
| 546 | - return $this->getHtmlComponent()->trigger($event,$params); |
|
| 545 | + public function trigger($event, $params="[]") { |
|
| 546 | + return $this->getHtmlComponent()->trigger($event, $params); |
|
| 547 | 547 | } |
| 548 | 548 | |
| 549 | - public function onActiveRowChange($jsCode){ |
|
| 549 | + public function onActiveRowChange($jsCode) { |
|
| 550 | 550 | $this->getHtmlComponent()->onActiveRowChange($jsCode); |
| 551 | 551 | return $this; |
| 552 | 552 | } |
@@ -574,7 +574,7 @@ discard block |
||
| 574 | 574 | * @param mixed $_displayBehavior |
| 575 | 575 | */ |
| 576 | 576 | public function setDisplayBehavior($_displayBehavior) { |
| 577 | - $this->_displayBehavior = $_displayBehavior; |
|
| 577 | + $this->_displayBehavior=$_displayBehavior; |
|
| 578 | 578 | } |
| 579 | 579 | /** |
| 580 | 580 | * @return mixed |
@@ -28,8 +28,8 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | public function __construct($autoCompile=true) { |
| 30 | 30 | $this->autoCompile=$autoCompile; |
| 31 | - $this->components=array (); |
|
| 32 | - $this->htmlComponents=array (); |
|
| 31 | + $this->components=array(); |
|
| 32 | + $this->htmlComponents=array(); |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | public function isAutoCompile() { |
@@ -42,9 +42,9 @@ discard block |
||
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public function compile($internal=false) { |
| 45 | - if ($internal===false&&$this->autoCompile===true) |
|
| 45 | + if ($internal===false && $this->autoCompile===true) |
|
| 46 | 46 | throw new \Exception("Impossible to compile if autoCompile is set to 'true'"); |
| 47 | - foreach ( $this->components as $component ) { |
|
| 47 | + foreach ($this->components as $component) { |
|
| 48 | 48 | $component->compile(); |
| 49 | 49 | } |
| 50 | 50 | } |
@@ -70,12 +70,12 @@ discard block |
||
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | public function compileHtml(JsUtils $js=NULL, &$view=NULL) { |
| 73 | - foreach ( $this->htmlComponents as $htmlComponent ) { |
|
| 73 | + foreach ($this->htmlComponents as $htmlComponent) { |
|
| 74 | 74 | $htmlComponent->compile($js, $view); |
| 75 | 75 | } |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - public function matchHtmlComponents($callback){ |
|
| 79 | - return array_filter($this->htmlComponents,$callback); |
|
| 78 | + public function matchHtmlComponents($callback) { |
|
| 79 | + return array_filter($this->htmlComponents, $callback); |
|
| 80 | 80 | } |
| 81 | 81 | } |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | * |
| 15 | 15 | */ |
| 16 | 16 | class HtmlTableContent extends HtmlSemCollection { |
| 17 | - protected $_tdTagNames=[ "thead" => "th","tbody" => "td","tfoot" => "th" ]; |
|
| 17 | + protected $_tdTagNames=["thead" => "th", "tbody" => "td", "tfoot" => "th"]; |
|
| 18 | 18 | protected $_merged=false; |
| 19 | 19 | |
| 20 | 20 | /** |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | public function setRowCount($rowCount, $colCount) { |
| 40 | 40 | $count=$this->count(); |
| 41 | - for($i=$count; $i < $rowCount; $i++) { |
|
| 41 | + for ($i=$count; $i<$rowCount; $i++) { |
|
| 42 | 42 | $this->addItem($colCount); |
| 43 | 43 | } |
| 44 | 44 | return $this; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | $tr=new HtmlTR(""); |
| 61 | 61 | $tr->setContainer($this, $count); |
| 62 | 62 | $tr->setTdTagName($this->_tdTagNames[$this->tagName]); |
| 63 | - if (isset($value) === true) { |
|
| 63 | + if (isset($value)===true) { |
|
| 64 | 64 | $tr->setColCount($value); |
| 65 | 65 | } |
| 66 | 66 | return $tr; |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | return $this->addItem($row); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - public function addMergeRow($colCount,$value=null){ |
|
| 89 | + public function addMergeRow($colCount, $value=null) { |
|
| 90 | 90 | $row=$this->addRow($colCount); |
| 91 | 91 | $row->mergeCol(); |
| 92 | - if(isset($value)){ |
|
| 92 | + if (isset($value)) { |
|
| 93 | 93 | $row->setValues([$value]); |
| 94 | 94 | } |
| 95 | 95 | return $row; |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | /** |
| 99 | 99 | * @return HtmlTR |
| 100 | 100 | */ |
| 101 | - public function getItem($index){ |
|
| 101 | + public function getItem($index) { |
|
| 102 | 102 | return parent::getItem($index); |
| 103 | 103 | } |
| 104 | 104 | |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $row=$this->getItem($row); |
| 113 | 113 | if (isset($row) && $row instanceof HtmlCollection) { |
| 114 | 114 | $col=$row->getItem($col); |
| 115 | - }else{ |
|
| 115 | + } else { |
|
| 116 | 116 | $col=$row; |
| 117 | 117 | } |
| 118 | 118 | return $col; |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | public function setCellValue($row, $col, $value="") { |
| 138 | 138 | $cell=$this->getCell($row, $col); |
| 139 | - if (isset($cell) === true) { |
|
| 139 | + if (isset($cell)===true) { |
|
| 140 | 140 | $cell->setValue($value); |
| 141 | 141 | } |
| 142 | 142 | return $this; |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * @param mixed $values |
| 148 | 148 | */ |
| 149 | 149 | public function setValues($values=array()) { |
| 150 | - return $this->_addOrSetValues($values, function(HtmlTR $row,$_values){$row->setValues($_values);}); |
|
| 150 | + return $this->_addOrSetValues($values, function(HtmlTR $row, $_values) {$row->setValues($_values); }); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * @param mixed $values |
| 156 | 156 | */ |
| 157 | 157 | public function addValues($values=array()) { |
| 158 | - return $this->_addOrSetValues($values, function(HtmlTR $row,$_values){$row->addValues($_values);}); |
|
| 158 | + return $this->_addOrSetValues($values, function(HtmlTR $row, $_values) {$row->addValues($_values); }); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -163,21 +163,21 @@ discard block |
||
| 163 | 163 | * @param mixed $values |
| 164 | 164 | * @param callable $callback |
| 165 | 165 | */ |
| 166 | - protected function _addOrSetValues($values,$callback) { |
|
| 166 | + protected function _addOrSetValues($values, $callback) { |
|
| 167 | 167 | $count=$this->count(); |
| 168 | 168 | $isArray=true; |
| 169 | 169 | if (!\is_array($values)) { |
| 170 | 170 | $values=\array_fill(0, $count, $values); |
| 171 | 171 | $isArray=false; |
| 172 | 172 | } |
| 173 | - if (JArray::dimension($values) == 1 && $isArray) |
|
| 174 | - $values=[ $values ]; |
|
| 173 | + if (JArray::dimension($values)==1 && $isArray) |
|
| 174 | + $values=[$values]; |
|
| 175 | 175 | |
| 176 | 176 | $count=\min(\sizeof($values), $count); |
| 177 | 177 | |
| 178 | - for($i=0; $i < $count; $i++) { |
|
| 178 | + for ($i=0; $i<$count; $i++) { |
|
| 179 | 179 | $row=$this->content[$i]; |
| 180 | - $callback($row,$values[$i]); |
|
| 180 | + $callback($row, $values[$i]); |
|
| 181 | 181 | } |
| 182 | 182 | return $this; |
| 183 | 183 | } |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | $values=\array_fill(0, $count, $values); |
| 189 | 189 | } |
| 190 | 190 | $count=\min(\sizeof($values), $count); |
| 191 | - for($i=0; $i < $count; $i++) { |
|
| 191 | + for ($i=0; $i<$count; $i++) { |
|
| 192 | 192 | $this->getCell($i, $colIndex)->setValue($values[$i]); |
| 193 | 193 | } |
| 194 | 194 | return $this; |
@@ -196,20 +196,20 @@ discard block |
||
| 196 | 196 | |
| 197 | 197 | public function addColVariations($colIndex, $variations=array()) { |
| 198 | 198 | $count=$this->count(); |
| 199 | - for($i=0; $i < $count; $i++) { |
|
| 199 | + for ($i=0; $i<$count; $i++) { |
|
| 200 | 200 | $cell=$this->getCell($i, $colIndex); |
| 201 | - if($cell instanceof BaseTrait) |
|
| 201 | + if ($cell instanceof BaseTrait) |
|
| 202 | 202 | $cell->addVariations($variations); |
| 203 | 203 | } |
| 204 | 204 | return $this; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - public function addPropertyCol($colIndex, $name,$value) { |
|
| 207 | + public function addPropertyCol($colIndex, $name, $value) { |
|
| 208 | 208 | $count=$this->count(); |
| 209 | - for($i=0; $i < $count; $i++) { |
|
| 209 | + for ($i=0; $i<$count; $i++) { |
|
| 210 | 210 | $cell=$this->getCell($i, $colIndex); |
| 211 | - if(isset($cell)) |
|
| 212 | - $cell->addToProperty($name,$value); |
|
| 211 | + if (isset($cell)) |
|
| 212 | + $cell->addToProperty($name, $value); |
|
| 213 | 213 | } |
| 214 | 214 | return $this; |
| 215 | 215 | } |
@@ -225,9 +225,9 @@ discard block |
||
| 225 | 225 | |
| 226 | 226 | private function colAlign($colIndex, $function) { |
| 227 | 227 | $count=$this->count(); |
| 228 | - for($i=0; $i < $count; $i++) { |
|
| 228 | + for ($i=0; $i<$count; $i++) { |
|
| 229 | 229 | $index=$this->content[$i]->getColPosition($colIndex); |
| 230 | - if ($index !== NULL) |
|
| 230 | + if ($index!==NULL) |
|
| 231 | 231 | $this->getCell($i, $index)->$function(); |
| 232 | 232 | } |
| 233 | 233 | return $this; |
@@ -235,11 +235,11 @@ discard block |
||
| 235 | 235 | |
| 236 | 236 | private function colAlignFromRight($colIndex, $function) { |
| 237 | 237 | $count=$this->count(); |
| 238 | - for($i=0; $i < $count; $i++) { |
|
| 238 | + for ($i=0; $i<$count; $i++) { |
|
| 239 | 239 | $maxRow=$this->content[$i]->count(); |
| 240 | 240 | $index=$maxRow-$colIndex-1; |
| 241 | - if (($cell=$this->getCell($i, $index))!== NULL){ |
|
| 242 | - if($cell->getColspan()==1) |
|
| 241 | + if (($cell=$this->getCell($i, $index))!==NULL) { |
|
| 242 | + if ($cell->getColspan()==1) |
|
| 243 | 243 | $cell->$function(); |
| 244 | 244 | } |
| 245 | 245 | } |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | */ |
| 285 | 285 | public function getColCount() { |
| 286 | 286 | $result=0; |
| 287 | - if ($this->count() > 0) |
|
| 287 | + if ($this->count()>0) |
|
| 288 | 288 | $result=$this->getItem(0)->count(); |
| 289 | 289 | return $result; |
| 290 | 290 | } |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | public function delete($rowIndex, $colIndex=NULL) { |
| 299 | 299 | if (isset($colIndex)) { |
| 300 | 300 | $row=$this->getItem($rowIndex); |
| 301 | - if (isset($row) === true) { |
|
| 301 | + if (isset($row)===true) { |
|
| 302 | 302 | $row->delete($colIndex); |
| 303 | 303 | } |
| 304 | 304 | } else { |
@@ -307,9 +307,9 @@ discard block |
||
| 307 | 307 | return $this; |
| 308 | 308 | } |
| 309 | 309 | |
| 310 | - public function toDelete($rowIndex, $colIndex){ |
|
| 310 | + public function toDelete($rowIndex, $colIndex) { |
|
| 311 | 311 | $row=$this->getItem($rowIndex); |
| 312 | - if (isset($row) === true) |
|
| 312 | + if (isset($row)===true) |
|
| 313 | 313 | $row->toDelete($colIndex); |
| 314 | 314 | return $this; |
| 315 | 315 | } |
@@ -338,17 +338,17 @@ discard block |
||
| 338 | 338 | */ |
| 339 | 339 | public function conditionalCellFormat($callback, $format) { |
| 340 | 340 | $rows=$this->content; |
| 341 | - foreach ( $rows as $row ) { |
|
| 341 | + foreach ($rows as $row) { |
|
| 342 | 342 | $row->conditionalCellFormat($callback, $format); |
| 343 | 343 | } |
| 344 | 344 | return $this; |
| 345 | 345 | } |
| 346 | 346 | |
| 347 | - public function conditionalColFormat($colIndex,$callback,$format){ |
|
| 347 | + public function conditionalColFormat($colIndex, $callback, $format) { |
|
| 348 | 348 | $rows=$this->content; |
| 349 | - foreach ( $rows as $row ) { |
|
| 349 | + foreach ($rows as $row) { |
|
| 350 | 350 | $cell=$row->getItem($colIndex); |
| 351 | - $cell->conditionnalCellFormat($callback,$format); |
|
| 351 | + $cell->conditionnalCellFormat($callback, $format); |
|
| 352 | 352 | } |
| 353 | 353 | return $this; |
| 354 | 354 | } |
@@ -360,17 +360,17 @@ discard block |
||
| 360 | 360 | */ |
| 361 | 361 | public function conditionalRowFormat($callback, $format) { |
| 362 | 362 | $rows=$this->content; |
| 363 | - foreach ( $rows as $row ) { |
|
| 363 | + foreach ($rows as $row) { |
|
| 364 | 364 | $row->conditionalRowFormat($callback, $format); |
| 365 | 365 | } |
| 366 | 366 | return $this; |
| 367 | 367 | } |
| 368 | 368 | |
| 369 | - public function hideColumn($colIndex){ |
|
| 369 | + public function hideColumn($colIndex) { |
|
| 370 | 370 | $rows=$this->content; |
| 371 | - foreach ( $rows as $row ) { |
|
| 371 | + foreach ($rows as $row) { |
|
| 372 | 372 | $cell=$row->getItem($colIndex); |
| 373 | - $cell->addToProperty("style","display:none;"); |
|
| 373 | + $cell->addToProperty("style", "display:none;"); |
|
| 374 | 374 | } |
| 375 | 375 | return $this; |
| 376 | 376 | } |
@@ -381,7 +381,7 @@ discard block |
||
| 381 | 381 | */ |
| 382 | 382 | public function applyCells($callback) { |
| 383 | 383 | $rows=$this->content; |
| 384 | - foreach ( $rows as $row ) { |
|
| 384 | + foreach ($rows as $row) { |
|
| 385 | 385 | $row->applyCells($callback); |
| 386 | 386 | } |
| 387 | 387 | return $this; |
@@ -393,25 +393,25 @@ discard block |
||
| 393 | 393 | */ |
| 394 | 394 | public function applyRows($callback) { |
| 395 | 395 | $rows=$this->content; |
| 396 | - foreach ( $rows as $row ) { |
|
| 396 | + foreach ($rows as $row) { |
|
| 397 | 397 | $row->apply($callback); |
| 398 | 398 | } |
| 399 | 399 | return $this; |
| 400 | 400 | } |
| 401 | 401 | |
| 402 | - public function mergeIdentiqualValues($colIndex,$function="strip_tags"){ |
|
| 402 | + public function mergeIdentiqualValues($colIndex, $function="strip_tags") { |
|
| 403 | 403 | $rows=$this->content; |
| 404 | 404 | $identiqual=null; |
| 405 | 405 | $counter=0; |
| 406 | 406 | $cellToMerge=null; |
| 407 | 407 | $functionExists=\function_exists($function); |
| 408 | - foreach ( $rows as $row ) { |
|
| 408 | + foreach ($rows as $row) { |
|
| 409 | 409 | $cell=$row->getItem($colIndex); |
| 410 | 410 | $value=$cell->getContent(); |
| 411 | - if($functionExists) |
|
| 412 | - $value=\call_user_func($function,$value); |
|
| 413 | - if($value!==$identiqual){ |
|
| 414 | - if($counter>0 && isset($cellToMerge)){ |
|
| 411 | + if ($functionExists) |
|
| 412 | + $value=\call_user_func($function, $value); |
|
| 413 | + if ($value!==$identiqual) { |
|
| 414 | + if ($counter>0 && isset($cellToMerge)) { |
|
| 415 | 415 | $cellToMerge->setRowspan($counter); |
| 416 | 416 | } |
| 417 | 417 | $counter=0; |
@@ -420,17 +420,17 @@ discard block |
||
| 420 | 420 | } |
| 421 | 421 | $counter++; |
| 422 | 422 | } |
| 423 | - if($counter>0 && isset($cellToMerge)){ |
|
| 423 | + if ($counter>0 && isset($cellToMerge)) { |
|
| 424 | 424 | $cellToMerge->setRowspan($counter); |
| 425 | 425 | } |
| 426 | 426 | return $this; |
| 427 | 427 | } |
| 428 | 428 | |
| 429 | - public function _isMerged(){ |
|
| 429 | + public function _isMerged() { |
|
| 430 | 430 | return $this->_merged; |
| 431 | 431 | } |
| 432 | 432 | |
| 433 | - public function _setMerged($value){ |
|
| 433 | + public function _setMerged($value) { |
|
| 434 | 434 | $this->_merged=$value; |
| 435 | 435 | return $this; |
| 436 | 436 | } |
@@ -21,50 +21,50 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | public static $index=0; |
| 23 | 23 | |
| 24 | - public function __construct($identifier,$instance=NULL,$captions=NULL){ |
|
| 24 | + public function __construct($identifier, $instance=NULL, $captions=NULL) { |
|
| 25 | 25 | $this->widgetIdentifier=$identifier; |
| 26 | 26 | $this->values=[]; |
| 27 | 27 | $this->afterCompile=[]; |
| 28 | - if(isset($instance)) |
|
| 28 | + if (isset($instance)) |
|
| 29 | 29 | $this->setInstance($instance); |
| 30 | 30 | $this->setCaptions($captions); |
| 31 | 31 | $this->captionCallback=NULL; |
| 32 | - $this->defaultValueFunction=function($name,$value){return $value;}; |
|
| 32 | + $this->defaultValueFunction=function($name, $value) {return $value; }; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public function moveFieldTo($from,$to){ |
|
| 36 | - if(JArray::moveElementTo($this->visibleProperties, $from, $to)){ |
|
| 35 | + public function moveFieldTo($from, $to) { |
|
| 36 | + if (JArray::moveElementTo($this->visibleProperties, $from, $to)) { |
|
| 37 | 37 | return JArray::moveElementTo($this->values, $from, $to); |
| 38 | 38 | } |
| 39 | 39 | return false; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public function swapFields($index1,$index2){ |
|
| 43 | - if(JArray::swapElements($this->visibleProperties, $index1, $index2)){ |
|
| 42 | + public function swapFields($index1, $index2) { |
|
| 43 | + if (JArray::swapElements($this->visibleProperties, $index1, $index2)) { |
|
| 44 | 44 | return JArray::swapElements($this->values, $index1, $index2); |
| 45 | 45 | } |
| 46 | 46 | return false; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - public function removeField($index){ |
|
| 50 | - \array_splice($this->visibleProperties,$index,1); |
|
| 51 | - \array_splice($this->values,$index,1); |
|
| 52 | - \array_splice($this->captions,$index,1); |
|
| 49 | + public function removeField($index) { |
|
| 50 | + \array_splice($this->visibleProperties, $index, 1); |
|
| 51 | + \array_splice($this->values, $index, 1); |
|
| 52 | + \array_splice($this->captions, $index, 1); |
|
| 53 | 53 | return $this; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - public function getValues(){ |
|
| 56 | + public function getValues() { |
|
| 57 | 57 | $values=[]; |
| 58 | 58 | $index=0; |
| 59 | 59 | $count=$this->count(); |
| 60 | 60 | $hasGroupby=is_array($this->groupByFields); |
| 61 | - if(!$hasGroupby){ |
|
| 62 | - while($index<$count){ |
|
| 61 | + if (!$hasGroupby) { |
|
| 62 | + while ($index<$count) { |
|
| 63 | 63 | $values[]=$this->getValue($index++); |
| 64 | 64 | } |
| 65 | - }else{ |
|
| 66 | - while($index<$count){ |
|
| 67 | - if(array_search($index, $this->groupByFields)===false){ |
|
| 65 | + } else { |
|
| 66 | + while ($index<$count) { |
|
| 67 | + if (array_search($index, $this->groupByFields)===false) { |
|
| 68 | 68 | $values[]=$this->getValue($index); |
| 69 | 69 | } |
| 70 | 70 | $index++; |
@@ -73,203 +73,203 @@ discard block |
||
| 73 | 73 | return $values; |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - public function getIdentifier($index=NULL){ |
|
| 77 | - if(!isset($index)) |
|
| 76 | + public function getIdentifier($index=NULL) { |
|
| 77 | + if (!isset($index)) |
|
| 78 | 78 | $index=self::$index; |
| 79 | 79 | $value=$index; |
| 80 | - if(isset($this->values["identifier"])){ |
|
| 81 | - if(\is_string($this->values["identifier"])) |
|
| 80 | + if (isset($this->values["identifier"])) { |
|
| 81 | + if (\is_string($this->values["identifier"])) |
|
| 82 | 82 | $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
| 83 | 83 | else |
| 84 | - $value=$this->values["identifier"]($index,$this->instance); |
|
| 84 | + $value=$this->values["identifier"]($index, $this->instance); |
|
| 85 | 85 | } |
| 86 | 86 | return $value; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - public function getValue($index){ |
|
| 89 | + public function getValue($index) { |
|
| 90 | 90 | $property=$this->properties[$index]; |
| 91 | 91 | return $this->_getValue($property, $index); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - protected function _beforeAddProperty($index,&$field){ |
|
| 94 | + protected function _beforeAddProperty($index, &$field) { |
|
| 95 | 95 | |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - protected function _getDefaultValue($name,$value,$index){ |
|
| 98 | + protected function _getDefaultValue($name, $value, $index) { |
|
| 99 | 99 | $func=$this->defaultValueFunction; |
| 100 | - return $func($name,$value,$index,$this->instance); |
|
| 100 | + return $func($name, $value, $index, $this->instance); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - protected function _getPropertyValue(\ReflectionProperty $property){ |
|
| 103 | + protected function _getPropertyValue(\ReflectionProperty $property) { |
|
| 104 | 104 | $property->setAccessible(true); |
| 105 | 105 | return $property->getValue($this->instance); |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - protected function _getValue($property,$index){ |
|
| 108 | + protected function _getValue($property, $index) { |
|
| 109 | 109 | $value=null; |
| 110 | 110 | $propertyName=$property; |
| 111 | - if($property instanceof \ReflectionProperty){ |
|
| 111 | + if ($property instanceof \ReflectionProperty) { |
|
| 112 | 112 | $value=$this->_getPropertyValue($property); |
| 113 | 113 | $propertyName=$property->getName(); |
| 114 | - }elseif(\is_callable($property) && array_search($property, ["system"])===false) |
|
| 114 | + }elseif (\is_callable($property) && array_search($property, ["system"])===false) |
|
| 115 | 115 | $value=$property($this->instance); |
| 116 | - elseif(\is_array($property)){ |
|
| 117 | - $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property); |
|
| 116 | + elseif (\is_array($property)) { |
|
| 117 | + $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index); }, $property); |
|
| 118 | 118 | $value=\implode("", $values); |
| 119 | - }elseif(\is_string($property)){ |
|
| 119 | + }elseif (\is_string($property)) { |
|
| 120 | 120 | $value=$property; |
| 121 | - if(isset($this->instance->{$property})){ |
|
| 121 | + if (isset($this->instance->{$property})) { |
|
| 122 | 122 | $value=$this->instance->{$property}; |
| 123 | - }elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
| 123 | + }elseif (\method_exists($this->instance, $getter=JReflection::getterName($property))) { |
|
| 124 | 124 | $value=JReflection::callMethod($this->instance, $getter, []); |
| 125 | 125 | } |
| 126 | 126 | } |
| 127 | 127 | return $this->_postGetValue($index, $propertyName, $value); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - protected function _postGetValue($index,$propertyName,$value){ |
|
| 131 | - if(isset($this->values[$index])){ |
|
| 132 | - $value= $this->values[$index]($value,$this->instance,$index,self::$index); |
|
| 133 | - }else{ |
|
| 134 | - $value=$this->_getDefaultValue($propertyName,$value, $index); |
|
| 130 | + protected function _postGetValue($index, $propertyName, $value) { |
|
| 131 | + if (isset($this->values[$index])) { |
|
| 132 | + $value=$this->values[$index]($value, $this->instance, $index, self::$index); |
|
| 133 | + } else { |
|
| 134 | + $value=$this->_getDefaultValue($propertyName, $value, $index); |
|
| 135 | 135 | } |
| 136 | - if(isset($this->afterCompile[$index])){ |
|
| 137 | - if(\is_callable($this->afterCompile[$index])){ |
|
| 138 | - $this->afterCompile[$index]($value,$this->instance,self::$index); |
|
| 136 | + if (isset($this->afterCompile[$index])) { |
|
| 137 | + if (\is_callable($this->afterCompile[$index])) { |
|
| 138 | + $this->afterCompile[$index]($value, $this->instance, self::$index); |
|
| 139 | 139 | } |
| 140 | 140 | } |
| 141 | 141 | return $value; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - public function insertField($index,$field,$key=null){ |
|
| 145 | - if(isset($key)){ |
|
| 146 | - array_splice( $this->visibleProperties, $index, 0, [$key=>$field] ); |
|
| 147 | - }else{ |
|
| 148 | - array_splice( $this->visibleProperties, $index, 0, $field ); |
|
| 144 | + public function insertField($index, $field, $key=null) { |
|
| 145 | + if (isset($key)) { |
|
| 146 | + array_splice($this->visibleProperties, $index, 0, [$key=>$field]); |
|
| 147 | + } else { |
|
| 148 | + array_splice($this->visibleProperties, $index, 0, $field); |
|
| 149 | 149 | } |
| 150 | 150 | return $this; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - public function sortColumnContent($index,$array){ |
|
| 154 | - if(isset($this->visibleProperties[$index])){ |
|
| 155 | - if(is_array($this->visibleProperties[$index])){ |
|
| 156 | - $this->visibleProperties[$index]=JArray::sortAssociative($this->visibleProperties[$index],$array); |
|
| 153 | + public function sortColumnContent($index, $array) { |
|
| 154 | + if (isset($this->visibleProperties[$index])) { |
|
| 155 | + if (is_array($this->visibleProperties[$index])) { |
|
| 156 | + $this->visibleProperties[$index]=JArray::sortAssociative($this->visibleProperties[$index], $array); |
|
| 157 | 157 | } |
| 158 | 158 | } |
| 159 | 159 | return $this; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - public function insertInField($index,$field,$key=null){ |
|
| 162 | + public function insertInField($index, $field, $key=null) { |
|
| 163 | 163 | $vb=$this->visibleProperties; |
| 164 | - if(isset($vb[$index])){ |
|
| 165 | - if(isset($key)){ |
|
| 166 | - if(\is_array($vb[$index])){ |
|
| 164 | + if (isset($vb[$index])) { |
|
| 165 | + if (isset($key)) { |
|
| 166 | + if (\is_array($vb[$index])) { |
|
| 167 | 167 | $this->visibleProperties[$index][$key]=$field; |
| 168 | - }else{ |
|
| 169 | - $this->visibleProperties[$index]=[$vb[$index],$key=>$field]; |
|
| 168 | + } else { |
|
| 169 | + $this->visibleProperties[$index]=[$vb[$index], $key=>$field]; |
|
| 170 | 170 | } |
| 171 | - }else{ |
|
| 172 | - if(\is_array($vb[$index])){ |
|
| 171 | + } else { |
|
| 172 | + if (\is_array($vb[$index])) { |
|
| 173 | 173 | $this->visibleProperties[$index][]=$field; |
| 174 | - }else{ |
|
| 175 | - $this->visibleProperties[$index]=[$vb[$index],$field]; |
|
| 174 | + } else { |
|
| 175 | + $this->visibleProperties[$index]=[$vb[$index], $field]; |
|
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | - }else{ |
|
| 178 | + } else { |
|
| 179 | 179 | return $this->insertField($index, $field); |
| 180 | 180 | } |
| 181 | 181 | return $this; |
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - public function addField($field,$key=null){ |
|
| 185 | - if(isset($key)){ |
|
| 184 | + public function addField($field, $key=null) { |
|
| 185 | + if (isset($key)) { |
|
| 186 | 186 | $this->visibleProperties[]=[$key=>$field]; |
| 187 | - }else{ |
|
| 187 | + } else { |
|
| 188 | 188 | $this->visibleProperties[]=$field; |
| 189 | 189 | } |
| 190 | 190 | return $this; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - public function addFields($fields){ |
|
| 194 | - $this->visibleProperties=\array_merge($this->visibleProperties,$fields); |
|
| 193 | + public function addFields($fields) { |
|
| 194 | + $this->visibleProperties=\array_merge($this->visibleProperties, $fields); |
|
| 195 | 195 | return $this; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - public function count(){ |
|
| 198 | + public function count() { |
|
| 199 | 199 | return \sizeof($this->properties); |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - public function visiblePropertiesCount(){ |
|
| 202 | + public function visiblePropertiesCount() { |
|
| 203 | 203 | return \sizeof($this->visibleProperties); |
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - public function getProperty($index){ |
|
| 206 | + public function getProperty($index) { |
|
| 207 | 207 | return $this->properties[$index]; |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | - public function getFieldName($index){ |
|
| 210 | + public function getFieldName($index) { |
|
| 211 | 211 | $property=$this->getProperty($index); |
| 212 | - if($property instanceof \ReflectionProperty){ |
|
| 212 | + if ($property instanceof \ReflectionProperty) { |
|
| 213 | 213 | $result=$property->getName(); |
| 214 | - }elseif(\is_callable($property)){ |
|
| 214 | + }elseif (\is_callable($property)) { |
|
| 215 | 215 | $result=$this->visibleProperties[$index]; |
| 216 | - }else{ |
|
| 216 | + } else { |
|
| 217 | 217 | $result=$property; |
| 218 | 218 | } |
| 219 | 219 | return $result; |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | |
| 223 | - protected function showableProperty(\ReflectionProperty $rProperty){ |
|
| 224 | - return JString::startswith($rProperty->getName(),"_")===false; |
|
| 223 | + protected function showableProperty(\ReflectionProperty $rProperty) { |
|
| 224 | + return JString::startswith($rProperty->getName(), "_")===false; |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | public function setInstance($instance) { |
| 228 | - if(\is_string($instance)){ |
|
| 228 | + if (\is_string($instance)) { |
|
| 229 | 229 | $instance=new $instance(); |
| 230 | 230 | } |
| 231 | 231 | $this->instance=$instance; |
| 232 | 232 | $this->properties=[]; |
| 233 | 233 | $this->reflect=new \ReflectionClass($instance); |
| 234 | - if(JArray::count($this->visibleProperties)===0){ |
|
| 234 | + if (JArray::count($this->visibleProperties)===0) { |
|
| 235 | 235 | $this->properties=$this->getDefaultProperties(); |
| 236 | - }else{ |
|
| 237 | - foreach ($this->visibleProperties as $property){ |
|
| 236 | + } else { |
|
| 237 | + foreach ($this->visibleProperties as $property) { |
|
| 238 | 238 | $this->setInstanceProperty($property); |
| 239 | 239 | } |
| 240 | 240 | } |
| 241 | 241 | return $this; |
| 242 | 242 | } |
| 243 | 243 | |
| 244 | - private function setInstanceProperty($property){ |
|
| 245 | - if(\is_callable($property)){ |
|
| 244 | + private function setInstanceProperty($property) { |
|
| 245 | + if (\is_callable($property)) { |
|
| 246 | 246 | $this->properties[]=$property; |
| 247 | - }elseif(\is_string($property)){ |
|
| 248 | - try{ |
|
| 247 | + }elseif (\is_string($property)) { |
|
| 248 | + try { |
|
| 249 | 249 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 250 | 250 | $rProperty=$this->reflect->getProperty($property); |
| 251 | 251 | $this->properties[]=$rProperty; |
| 252 | - }catch(\Exception $e){ |
|
| 252 | + }catch (\Exception $e) { |
|
| 253 | 253 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 254 | 254 | $this->properties[]=$property; |
| 255 | 255 | } |
| 256 | - }elseif(\is_int($property)){ |
|
| 256 | + }elseif (\is_int($property)) { |
|
| 257 | 257 | $props=$this->getDefaultProperties(); |
| 258 | - if(isset($props[$property])) |
|
| 258 | + if (isset($props[$property])) |
|
| 259 | 259 | $this->properties[]=$props[$property]; |
| 260 | 260 | else |
| 261 | 261 | $this->properties[]=$property; |
| 262 | - }else{ |
|
| 262 | + } else { |
|
| 263 | 263 | $this->properties[]=$property; |
| 264 | 264 | } |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | - protected function getDefaultProperties(){ |
|
| 267 | + protected function getDefaultProperties() { |
|
| 268 | 268 | $result=[]; |
| 269 | 269 | $properties=$this->reflect->getProperties(); |
| 270 | - foreach ($properties as $property){ |
|
| 270 | + foreach ($properties as $property) { |
|
| 271 | 271 | $showable=$this->showableProperty($property); |
| 272 | - if($showable!==false){ |
|
| 272 | + if ($showable!==false) { |
|
| 273 | 273 | $result[]=$property; |
| 274 | 274 | } |
| 275 | 275 | } |
@@ -281,12 +281,12 @@ discard block |
||
| 281 | 281 | return $this; |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | - public function setValueFunction($index,$callback){ |
|
| 284 | + public function setValueFunction($index, $callback) { |
|
| 285 | 285 | $this->values[$index]=$callback; |
| 286 | 286 | return $this; |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | - public function setIdentifierFunction($callback){ |
|
| 289 | + public function setIdentifierFunction($callback) { |
|
| 290 | 290 | $this->values["identifier"]=$callback; |
| 291 | 291 | return $this; |
| 292 | 292 | } |
@@ -299,49 +299,49 @@ discard block |
||
| 299 | 299 | return $this->properties; |
| 300 | 300 | } |
| 301 | 301 | |
| 302 | - public function getCaption($index){ |
|
| 303 | - if(isset($this->captions[$index])){ |
|
| 302 | + public function getCaption($index) { |
|
| 303 | + if (isset($this->captions[$index])) { |
|
| 304 | 304 | return $this->captions[$index]; |
| 305 | 305 | } |
| 306 | - if($this->properties[$index] instanceof \ReflectionProperty) |
|
| 306 | + if ($this->properties[$index] instanceof \ReflectionProperty) |
|
| 307 | 307 | return $this->properties[$index]->getName(); |
| 308 | - elseif(\is_callable($this->properties[$index])) |
|
| 308 | + elseif (\is_callable($this->properties[$index])) |
|
| 309 | 309 | return ""; |
| 310 | 310 | else |
| 311 | 311 | return $this->properties[$index]; |
| 312 | 312 | } |
| 313 | 313 | |
| 314 | - public function getCaptions(){ |
|
| 314 | + public function getCaptions() { |
|
| 315 | 315 | $hasGroupby=is_array($this->groupByFields); |
| 316 | 316 | $count=$this->count(); |
| 317 | 317 | $moreAdded=false; |
| 318 | - if(isset($this->captions)){ |
|
| 319 | - $captions= \array_values($this->captions); |
|
| 320 | - $gbSize=$hasGroupby?sizeof($this->groupByFields):0; |
|
| 318 | + if (isset($this->captions)) { |
|
| 319 | + $captions=\array_values($this->captions); |
|
| 320 | + $gbSize=$hasGroupby ?sizeof($this->groupByFields) : 0; |
|
| 321 | 321 | $captionsSize=\sizeof($captions); |
| 322 | - for($i=$captionsSize;$i<$count-$gbSize;$i++){ |
|
| 322 | + for ($i=$captionsSize; $i<$count-$gbSize; $i++) { |
|
| 323 | 323 | $captions[]=""; |
| 324 | 324 | $moreAdded=true; |
| 325 | 325 | } |
| 326 | - }else{ |
|
| 326 | + } else { |
|
| 327 | 327 | $captions=[]; |
| 328 | 328 | $index=0; |
| 329 | - while($index<$count){ |
|
| 329 | + while ($index<$count) { |
|
| 330 | 330 | $captions[]=$this->getCaption($index++); |
| 331 | 331 | } |
| 332 | 332 | } |
| 333 | - if($hasGroupby && sizeof($captions)>=$count && !$moreAdded){ |
|
| 333 | + if ($hasGroupby && sizeof($captions)>=$count && !$moreAdded) { |
|
| 334 | 334 | $captions=UArray::removeByKeys($captions, $this->groupByFields); |
| 335 | 335 | } |
| 336 | - if(isset($this->captionCallback) && \is_callable($this->captionCallback)){ |
|
| 336 | + if (isset($this->captionCallback) && \is_callable($this->captionCallback)) { |
|
| 337 | 337 | $callback=$this->captionCallback; |
| 338 | - $callback($captions,$this->instance); |
|
| 338 | + $callback($captions, $this->instance); |
|
| 339 | 339 | } |
| 340 | 340 | return $captions; |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | - public function setCaption($index,$caption){ |
|
| 344 | - if(isset($this->captions)===false) |
|
| 343 | + public function setCaption($index, $caption) { |
|
| 344 | + if (isset($this->captions)===false) |
|
| 345 | 345 | $this->captions=[]; |
| 346 | 346 | $this->captions[$index]=$caption; |
| 347 | 347 | return $this; |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | * @param callable $callback function called after the field compilation |
| 360 | 360 | * @return InstanceViewer |
| 361 | 361 | */ |
| 362 | - public function afterCompile($index,$callback){ |
|
| 362 | + public function afterCompile($index, $callback) { |
|
| 363 | 363 | $this->afterCompile[$index]=$callback; |
| 364 | 364 | return $this; |
| 365 | 365 | } |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | public function getSimpleProperties() { |
| 393 | - return array_filter($this->visibleProperties,function($item){ |
|
| 393 | + return array_filter($this->visibleProperties, function($item) { |
|
| 394 | 394 | return !(is_array($item) || is_object($item)); |
| 395 | 395 | }); |
| 396 | 396 | } |
@@ -412,11 +412,11 @@ discard block |
||
| 412 | 412 | * @param mixed $groupByFields |
| 413 | 413 | */ |
| 414 | 414 | public function setGroupByFields($groupByFields) { |
| 415 | - $this->groupByFields = $groupByFields; |
|
| 415 | + $this->groupByFields=$groupByFields; |
|
| 416 | 416 | } |
| 417 | 417 | |
| 418 | - public function getGroupByFieldsCount(){ |
|
| 419 | - if(is_array($this->groupByFields)){ |
|
| 418 | + public function getGroupByFieldsCount() { |
|
| 419 | + if (is_array($this->groupByFields)) { |
|
| 420 | 420 | return sizeof($this->groupByFields); |
| 421 | 421 | } |
| 422 | 422 | return 0; |