@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | * @param string $jqueryDone the jquery function call on ajax data. default:html |
| 26 | 26 | * @param string|callable $ajaxTransition |
| 27 | 27 | */ |
| 28 | - public function get($url, $responseElement="", $params="{}", $jsCallback=NULL,$hasLoader=true,$jqueryDone="html",$ajaxTransition=null) { |
|
| 29 | - return $this->js->_get($url, $params, $responseElement, $jsCallback, NULL, $hasLoader,$jqueryDone,$ajaxTransition,true); |
|
| 28 | + public function get($url, $responseElement="", $params="{}", $jsCallback=NULL, $hasLoader=true, $jqueryDone="html", $ajaxTransition=null) { |
|
| 29 | + return $this->js->_get($url, $params, $responseElement, $jsCallback, NULL, $hasLoader, $jqueryDone, $ajaxTransition, true); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -37,8 +37,8 @@ discard block |
||
| 37 | 37 | * @param string $jsCallback javascript code to execute after the request |
| 38 | 38 | * @param boolean $immediatly |
| 39 | 39 | */ |
| 40 | - public function json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document",$immediatly=false) { |
|
| 41 | - return $this->js->_json($url, $method, $params, $jsCallback, $attr, $context,$immediatly); |
|
| 40 | + public function json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document", $immediatly=false) { |
|
| 41 | + return $this->js->_json($url, $method, $params, $jsCallback, $attr, $context, $immediatly); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -48,8 +48,8 @@ discard block |
||
| 48 | 48 | * @param string $url the request address |
| 49 | 49 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true) |
| 50 | 50 | */ |
| 51 | - public function jsonOn($event,$element, $url,$parameters=array()) { |
|
| 52 | - return $this->js->_jsonOn($event, $element, $url,$parameters); |
|
| 51 | + public function jsonOn($event, $element, $url, $parameters=array()) { |
|
| 52 | + return $this->js->_jsonOn($event, $element, $url, $parameters); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | * @param string $jsCallback javascript code to execute after the request |
| 72 | 72 | */ |
| 73 | 73 | public function jsonArray($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL) { |
| 74 | - return $this->js->_jsonArray($maskSelector, $url, $method, $params, $jsCallback,"id", NULL,true); |
|
| 74 | + return $this->js->_jsonArray($maskSelector, $url, $method, $params, $jsCallback, "id", NULL, true); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * @param string $jsCallback javascript code to execute after the request |
| 84 | 84 | */ |
| 85 | 85 | public function jsonArrayDeferred($maskSelector, $url, $method="get", $params="{}", $jsCallback=NULL) { |
| 86 | - return $this->js->_jsonArray($maskSelector, $url, $method, $params, $jsCallback,"id", NULL, false); |
|
| 86 | + return $this->js->_jsonArray($maskSelector, $url, $method, $params, $jsCallback, "id", NULL, false); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | /** |
@@ -93,8 +93,8 @@ discard block |
||
| 93 | 93 | * @param string $url the request url |
| 94 | 94 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true) |
| 95 | 95 | */ |
| 96 | - public function jsonArrayOn($event,$element,$maskSelector, $url,$parameters=array()) { |
|
| 97 | - return $this->js->_jsonArrayOn($event,$element,$maskSelector, $url, $parameters); |
|
| 96 | + public function jsonArrayOn($event, $element, $maskSelector, $url, $parameters=array()) { |
|
| 97 | + return $this->js->_jsonArrayOn($event, $element, $maskSelector, $url, $parameters); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
@@ -108,8 +108,8 @@ discard block |
||
| 108 | 108 | * @param string $jqueryDone the jquery function call on ajax data. default:html |
| 109 | 109 | * @param string|callable $ajaxTransition |
| 110 | 110 | */ |
| 111 | - public function getDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL,$attr="id",$jqueryDone="html",$ajaxTransition=null) { |
|
| 112 | - return $this->js->_get($url, $params, $responseElement, $jsCallback, $attr, false,$jqueryDone,$ajaxTransition); |
|
| 111 | + public function getDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id", $jqueryDone="html", $ajaxTransition=null) { |
|
| 112 | + return $this->js->_get($url, $params, $responseElement, $jsCallback, $attr, false, $jqueryDone, $ajaxTransition); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | /** |
@@ -148,8 +148,8 @@ discard block |
||
| 148 | 148 | * @param string $jqueryDone the jquery function call on ajax data. default:html |
| 149 | 149 | * @param string|callable $ajaxTransition |
| 150 | 150 | */ |
| 151 | - public function post($url, $responseElement="", $params="{}", $jsCallback=NULL,$hasLoader=true,$jqueryDone="html",$ajaxTransition=null) { |
|
| 152 | - return $this->js->_post($url, $params, $responseElement, $jsCallback, NULL, $hasLoader,$jqueryDone,$ajaxTransition,true); |
|
| 151 | + public function post($url, $responseElement="", $params="{}", $jsCallback=NULL, $hasLoader=true, $jqueryDone="html", $ajaxTransition=null) { |
|
| 152 | + return $this->js->_post($url, $params, $responseElement, $jsCallback, NULL, $hasLoader, $jqueryDone, $ajaxTransition, true); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
@@ -164,8 +164,8 @@ discard block |
||
| 164 | 164 | * @param string $jqueryDone the jquery function call on ajax data. default:html |
| 165 | 165 | * @param string|callable $ajaxTransition |
| 166 | 166 | */ |
| 167 | - public function postDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id",$hasLoader=true,$jqueryDone="html",$ajaxTransition=null) { |
|
| 168 | - return $this->js->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader,$jqueryDone,$ajaxTransition,false); |
|
| 167 | + public function postDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id", $hasLoader=true, $jqueryDone="html", $ajaxTransition=null) { |
|
| 168 | + return $this->js->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader, $jqueryDone, $ajaxTransition, false); |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | /** |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null) |
| 180 | 180 | */ |
| 181 | 181 | public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) { |
| 182 | - return $this->js->_postOn($event, $element, $url, $params, $responseElement, $parameters); |
|
| 182 | + return $this->js->_postOn($event, $element, $url, $params, $responseElement, $parameters); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -205,8 +205,8 @@ discard block |
||
| 205 | 205 | * @param string $jqueryDone the jquery function call on ajax data. default:html |
| 206 | 206 | * @param string|callable $ajaxTransition |
| 207 | 207 | */ |
| 208 | - public function postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL,$hasLoader=true,$jqueryDone="html",$ajaxTransition=null) { |
|
| 209 | - return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, NULL, $hasLoader,$jqueryDone,$ajaxTransition,true); |
|
| 208 | + public function postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $hasLoader=true, $jqueryDone="html", $ajaxTransition=null) { |
|
| 209 | + return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, NULL, $hasLoader, $jqueryDone, $ajaxTransition, true); |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | /** |
@@ -221,8 +221,8 @@ discard block |
||
| 221 | 221 | * @param string $jqueryDone the jquery function call on ajax data. default:html |
| 222 | 222 | * @param string|callable $ajaxTransition |
| 223 | 223 | */ |
| 224 | - public function postFormDeferred($url, $form, $responseElement, $validation=false, $jsCallback=NULL,$attr="id",$hasLoader=true,$jqueryDone="html",$ajaxTransition=null) { |
|
| 225 | - return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader,$jqueryDone,$ajaxTransition,false); |
|
| 224 | + public function postFormDeferred($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true, $jqueryDone="html", $ajaxTransition=null) { |
|
| 225 | + return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader, $jqueryDone, $ajaxTransition, false); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | /** |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true,"jqueryDone"=>"html","ajaxTransition"=>null) |
| 237 | 237 | */ |
| 238 | 238 | public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) { |
| 239 | - return $this->js->_postFormOn($event,$element, $url, $form, $responseElement, $parameters); |
|
| 239 | + return $this->js->_postFormOn($event, $element, $url, $form, $responseElement, $parameters); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
@@ -15,16 +15,16 @@ discard block |
||
| 15 | 15 | * @license Apache 2 http://www.apache.org/licenses/ |
| 16 | 16 | **/ |
| 17 | 17 | class Jquery { |
| 18 | - use JqueryEventsTrait,JqueryAjaxTrait,JqueryActionsTrait; |
|
| 18 | + use JqueryEventsTrait, JqueryAjaxTrait, JqueryActionsTrait; |
|
| 19 | 19 | protected $_ui; |
| 20 | 20 | protected $_bootstrap; |
| 21 | 21 | protected $_semantic; |
| 22 | - protected $jquery_code_for_compile=array (); |
|
| 22 | + protected $jquery_code_for_compile=array(); |
|
| 23 | 23 | protected $jsUtils; |
| 24 | 24 | protected $params; |
| 25 | 25 | |
| 26 | - protected $jquery_events=array ( |
|
| 27 | - "bind","blur","change","click","dblclick","delegate","die","error","focus","focusin","focusout","hover","keydown","keypress","keyup","live","load","mousedown","mousseenter","mouseleave","mousemove","mouseout","mouseover","mouseup","off","on","one","ready","resize","scroll","select","submit","toggle","trigger","triggerHandler","undind","undelegate","unload" |
|
| 26 | + protected $jquery_events=array( |
|
| 27 | + "bind", "blur", "change", "click", "dblclick", "delegate", "die", "error", "focus", "focusin", "focusout", "hover", "keydown", "keypress", "keyup", "live", "load", "mousedown", "mousseenter", "mouseleave", "mousemove", "mouseout", "mouseover", "mouseup", "off", "on", "one", "ready", "resize", "scroll", "select", "submit", "toggle", "trigger", "triggerHandler", "undind", "undelegate", "unload" |
|
| 28 | 28 | ); |
| 29 | 29 | |
| 30 | 30 | public function ui($ui=NULL) { |
@@ -48,13 +48,13 @@ discard block |
||
| 48 | 48 | return $this->_semantic; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function __construct($params,$jsUtils) { |
|
| 51 | + public function __construct($params, $jsUtils) { |
|
| 52 | 52 | $this->params=array(); |
| 53 | - foreach ( $params as $key => $val ) { |
|
| 53 | + foreach ($params as $key => $val) { |
|
| 54 | 54 | $this->params[$key]=$params[$key]; |
| 55 | 55 | } |
| 56 | 56 | $this->jsUtils=$jsUtils; |
| 57 | - if(isset($params["ajaxTransition"])) |
|
| 57 | + if (isset($params["ajaxTransition"])) |
|
| 58 | 58 | $this->ajaxTransition=$this->setAjaxDataCall($params["ajaxTransition"]); |
| 59 | 59 | } |
| 60 | 60 | |
@@ -116,12 +116,12 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | public function _output($array_js='') { |
| 118 | 118 | if (!is_array($array_js)) { |
| 119 | - $array_js=array ( |
|
| 119 | + $array_js=array( |
|
| 120 | 120 | $array_js |
| 121 | 121 | ); |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - foreach ( $array_js as $js ) { |
|
| 124 | + foreach ($array_js as $js) { |
|
| 125 | 125 | $this->jquery_code_for_compile[]="\t$js\n"; |
| 126 | 126 | } |
| 127 | 127 | } |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * @param string $param |
| 134 | 134 | * @param boolean $immediatly delayed if false |
| 135 | 135 | */ |
| 136 | - public function _genericCallValue($jQueryCall,$element='this', $param="", $immediatly=false) { |
|
| 136 | + public function _genericCallValue($jQueryCall, $element='this', $param="", $immediatly=false) { |
|
| 137 | 137 | $element=Javascript::prep_element($element); |
| 138 | 138 | if (isset($param)) { |
| 139 | 139 | $param=Javascript::prep_value($param); |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | * @param boolean $immediatly delayed if false |
| 153 | 153 | * @return string |
| 154 | 154 | */ |
| 155 | - public function _genericCallElement($jQueryCall,$to='this', $element, $immediatly=false) { |
|
| 155 | + public function _genericCallElement($jQueryCall, $to='this', $element, $immediatly=false) { |
|
| 156 | 156 | $to=Javascript::prep_element($to); |
| 157 | 157 | $element=Javascript::prep_element($element); |
| 158 | 158 | $str="$({$to}).{$jQueryCall}({$element});"; |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | */ |
| 171 | 171 | public function sortable($element, $options=array()) { |
| 172 | 172 | if (count($options)>0) { |
| 173 | - $sort_options=array (); |
|
| 174 | - foreach ( $options as $k => $v ) { |
|
| 173 | + $sort_options=array(); |
|
| 174 | + foreach ($options as $k => $v) { |
|
| 175 | 175 | $sort_options[]="\n\t\t".$k.': '.$v.""; |
| 176 | 176 | } |
| 177 | 177 | $sort_options=implode(",", $sort_options); |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | * @param boolean $stopPropagation Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. |
| 204 | 204 | * @return string |
| 205 | 205 | */ |
| 206 | - public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true) { |
|
| 206 | + public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true) { |
|
| 207 | 207 | if (\is_array($js)) { |
| 208 | 208 | $js=implode("\n\t\t", $js); |
| 209 | 209 | } |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | $event="\n\t$(".Javascript::prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n"; |
| 218 | 218 | else |
| 219 | 219 | $event="\n\t$(".Javascript::prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n"; |
| 220 | - if($immediatly) |
|
| 220 | + if ($immediatly) |
|
| 221 | 221 | $this->jquery_code_for_compile[]=$event; |
| 222 | 222 | return $event; |
| 223 | 223 | } |
@@ -243,40 +243,40 @@ discard block |
||
| 243 | 243 | $script='$(document).ready(function() {'."\n"; |
| 244 | 244 | $script.=implode('', $this->jquery_code_for_compile); |
| 245 | 245 | $script.='})'; |
| 246 | - if($this->params["defer"]){ |
|
| 246 | + if ($this->params["defer"]) { |
|
| 247 | 247 | $script=$this->defer($script); |
| 248 | 248 | } |
| 249 | 249 | $script.=";"; |
| 250 | 250 | $this->jquery_code_for_compile=array(); |
| 251 | - if($this->params["debug"]===false){ |
|
| 251 | + if ($this->params["debug"]===false) { |
|
| 252 | 252 | $script=$this->minify($script); |
| 253 | 253 | } |
| 254 | 254 | $output=($script_tags===FALSE) ? $script : $this->inline($script); |
| 255 | 255 | |
| 256 | - if ($view!==NULL){ |
|
| 257 | - $this->jsUtils->createScriptVariable($view,$view_var, $output); |
|
| 256 | + if ($view!==NULL) { |
|
| 257 | + $this->jsUtils->createScriptVariable($view, $view_var, $output); |
|
| 258 | 258 | } |
| 259 | 259 | return $output; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - public function getScript($offset=0){ |
|
| 262 | + public function getScript($offset=0) { |
|
| 263 | 263 | $code=$this->jquery_code_for_compile; |
| 264 | - if($offset>0) |
|
| 264 | + if ($offset>0) |
|
| 265 | 265 | $code=\array_slice($code, $offset); |
| 266 | 266 | return implode('', $code); |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | - public function scriptCount(){ |
|
| 269 | + public function scriptCount() { |
|
| 270 | 270 | return \sizeof($this->jquery_code_for_compile); |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - private function defer($script){ |
|
| 273 | + private function defer($script) { |
|
| 274 | 274 | $result="window.defer=function (method) {if (window.jQuery) method(); else setTimeout(function() { defer(method) }, 50);};"; |
| 275 | 275 | $result.="window.defer(function(){".$script."})"; |
| 276 | 276 | return $result; |
| 277 | 277 | } |
| 278 | 278 | |
| 279 | - private function _compileLibrary($library){ |
|
| 279 | + private function _compileLibrary($library) { |
|
| 280 | 280 | if ($library!=NULL) { |
| 281 | 281 | if ($library->isAutoCompile()) { |
| 282 | 282 | $library->compile(true); |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | * @return void |
| 295 | 295 | */ |
| 296 | 296 | public function _clear_compile() { |
| 297 | - $this->jquery_code_for_compile=array (); |
|
| 297 | + $this->jquery_code_for_compile=array(); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | /** |
@@ -303,18 +303,18 @@ discard block |
||
| 303 | 303 | */ |
| 304 | 304 | public function _document_ready($js) { |
| 305 | 305 | if (!is_array($js)) { |
| 306 | - $js=array ( |
|
| 306 | + $js=array( |
|
| 307 | 307 | $js |
| 308 | 308 | ); |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | - foreach ( $js as $script ) { |
|
| 311 | + foreach ($js as $script) { |
|
| 312 | 312 | $this->jquery_code_for_compile[]=$script; |
| 313 | 313 | } |
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | private function minify($input) { |
| 317 | - if(trim($input) === "") return $input; |
|
| 317 | + if (trim($input)==="") return $input; |
|
| 318 | 318 | return preg_replace( |
| 319 | 319 | array( |
| 320 | 320 | // Remove comment(s) |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | use Ajax\semantic\html\elements\html5\HtmlLink; |
| 11 | 11 | |
| 12 | 12 | class HtmlTD extends HtmlSemDoubleElement { |
| 13 | - use TextAlignmentTrait,TableElementTrait; |
|
| 13 | + use TextAlignmentTrait, TableElementTrait; |
|
| 14 | 14 | private $_container; |
| 15 | 15 | private $_row; |
| 16 | 16 | private $_col; |
@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function __construct($identifier, $content=NULL, $tagName="td") { |
| 27 | 27 | parent::__construct($identifier, $tagName, "", $content); |
| 28 | - $this->_variations=[ Variation::COLLAPSING ]; |
|
| 29 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 28 | + $this->_variations=[Variation::COLLAPSING]; |
|
| 29 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | public function setContainer($container, $row, $col) { |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | public function setRowspan($rowspan) { |
| 49 | - $to=min($this->_container->count(), $this->_row + $rowspan - 1); |
|
| 50 | - for($i=$to; $i > $this->_row; $i--) { |
|
| 49 | + $to=min($this->_container->count(), $this->_row+$rowspan-1); |
|
| 50 | + for ($i=$to; $i>$this->_row; $i--) { |
|
| 51 | 51 | $this->_container->delete($i, $this->_col); |
| 52 | 52 | } |
| 53 | 53 | $this->setProperty("rowspan", $rowspan); |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | public function mergeRow() { |
| 58 | - if(!$this->_rowMerged){ |
|
| 58 | + if (!$this->_rowMerged) { |
|
| 59 | 59 | $this->_rowMerged=true; |
| 60 | 60 | return $this->setRowspan($this->_container->count()); |
| 61 | 61 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | public function mergeCol() { |
| 66 | - if(!$this->_colMerged){ |
|
| 66 | + if (!$this->_colMerged) { |
|
| 67 | 67 | $this->_colMerged=true; |
| 68 | 68 | return $this->setColspan($this->_container->getRow($this->_row)->count()); |
| 69 | 69 | } |
@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | public function setColspan($colspan) { |
| 74 | - $to=min($this->_container->getRow($this->_row)->count(), $this->_col + $colspan - 1); |
|
| 75 | - for($i=$to; $i > $this->_col; $i--) { |
|
| 76 | - $this->_container->delete($this->_row, $this->_col + 1); |
|
| 74 | + $to=min($this->_container->getRow($this->_row)->count(), $this->_col+$colspan-1); |
|
| 75 | + for ($i=$to; $i>$this->_col; $i--) { |
|
| 76 | + $this->_container->delete($this->_row, $this->_col+1); |
|
| 77 | 77 | } |
| 78 | 78 | $this->setProperty("colspan", $colspan); |
| 79 | 79 | return $this->_container; |
@@ -20,12 +20,12 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | public function __construct($identifier) { |
| 22 | 22 | parent::__construct($identifier, "tr", ""); |
| 23 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 23 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | public function setColCount($colCount) { |
| 27 | 27 | $count=$this->count(); |
| 28 | - for($i=$count; $i < $colCount; $i++) { |
|
| 28 | + for ($i=$count; $i<$colCount; $i++) { |
|
| 29 | 29 | $item=$this->addItem(NULL); |
| 30 | 30 | $item->setTagName($this->_tdTagName); |
| 31 | 31 | } |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | * @param mixed $values |
| 65 | 65 | */ |
| 66 | 66 | public function setValues($values=array()) { |
| 67 | - return $this->_addOrSetValues($values, function(&$cell,$value){$cell->setValue($value);}); |
|
| 67 | + return $this->_addOrSetValues($values, function(&$cell, $value) {$cell->setValue($value); }); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -72,27 +72,27 @@ discard block |
||
| 72 | 72 | * @param mixed $values |
| 73 | 73 | */ |
| 74 | 74 | public function addValues($values=array()) { |
| 75 | - return $this->_addOrSetValues($values, function(&$cell,$value){$cell->addValue($value);}); |
|
| 75 | + return $this->_addOrSetValues($values, function(&$cell, $value) {$cell->addValue($value); }); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | 79 | * Sets or adds values to the row cols |
| 80 | 80 | * @param mixed $values |
| 81 | 81 | */ |
| 82 | - protected function _addOrSetValues($values,$callback) { |
|
| 82 | + protected function _addOrSetValues($values, $callback) { |
|
| 83 | 83 | $count=$this->count(); |
| 84 | 84 | if (!\is_array($values)) { |
| 85 | 85 | $values=\array_fill(0, $count, $values); |
| 86 | 86 | } else { |
| 87 | - if (JArray::isAssociative($values) === true) { |
|
| 87 | + if (JArray::isAssociative($values)===true) { |
|
| 88 | 88 | $values=\array_values($values); |
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | $count=\min(\sizeof($values), $count); |
| 92 | 92 | |
| 93 | - for($i=0; $i < $count; $i++) { |
|
| 93 | + for ($i=0; $i<$count; $i++) { |
|
| 94 | 94 | $cell=$this->content[$i]; |
| 95 | - $callback($cell,$values[$i]); |
|
| 95 | + $callback($cell, $values[$i]); |
|
| 96 | 96 | } |
| 97 | 97 | return $this; |
| 98 | 98 | } |
@@ -118,20 +118,20 @@ discard block |
||
| 118 | 118 | public function getColPosition($colIndex) { |
| 119 | 119 | $pos=0; |
| 120 | 120 | $rows=$this->_container->getContent(); |
| 121 | - for($i=0; $i < $this->_row; $i++) { |
|
| 121 | + for ($i=0; $i<$this->_row; $i++) { |
|
| 122 | 122 | $max=\min($colIndex, $rows[$i]->count()); |
| 123 | - for($j=0; $j < $max; $j++) { |
|
| 123 | + for ($j=0; $j<$max; $j++) { |
|
| 124 | 124 | $rowspan=$rows[$i]->getItem($j)->getRowspan(); |
| 125 | - if ($rowspan + $i > $this->_row) |
|
| 125 | + if ($rowspan+$i>$this->_row) |
|
| 126 | 126 | $pos++; |
| 127 | 127 | } |
| 128 | 128 | } |
| 129 | - if ($pos > $colIndex) |
|
| 129 | + if ($pos>$colIndex) |
|
| 130 | 130 | return NULL; |
| 131 | 131 | $count=$this->count(); |
| 132 | - for($i=0; $i < $count; $i++) { |
|
| 132 | + for ($i=0; $i<$count; $i++) { |
|
| 133 | 133 | $pos+=$this->content[$i]->getColspan(); |
| 134 | - if ($pos >= $colIndex + 1) |
|
| 134 | + if ($pos>=$colIndex+1) |
|
| 135 | 135 | return $i; |
| 136 | 136 | } |
| 137 | 137 | return null; |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | public function conditionalCellFormat($callback, $format) { |
| 141 | 141 | $cells=$this->content; |
| 142 | - foreach ( $cells as $cell ) { |
|
| 142 | + foreach ($cells as $cell) { |
|
| 143 | 143 | $cell->conditionalCellFormat($callback, $format); |
| 144 | 144 | } |
| 145 | 145 | return $this; |
@@ -154,8 +154,8 @@ discard block |
||
| 154 | 154 | |
| 155 | 155 | public function containsStr($needle) { |
| 156 | 156 | $cells=$this->content; |
| 157 | - foreach ( $cells as $cell ) { |
|
| 158 | - if (\strpos($cell->getContent(), $needle) !== false) |
|
| 157 | + foreach ($cells as $cell) { |
|
| 158 | + if (\strpos($cell->getContent(), $needle)!==false) |
|
| 159 | 159 | return true; |
| 160 | 160 | } |
| 161 | 161 | return false; |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | |
| 169 | 169 | public function applyCells($callback) { |
| 170 | 170 | $cells=$this->content; |
| 171 | - foreach ( $cells as $cell ) { |
|
| 171 | + foreach ($cells as $cell) { |
|
| 172 | 172 | $cell->apply($callback); |
| 173 | 173 | } |
| 174 | 174 | return $this; |
@@ -7,21 +7,21 @@ |
||
| 7 | 7 | |
| 8 | 8 | use Ajax\semantic\html\elements\HtmlIcon; |
| 9 | 9 | |
| 10 | -class HtmlPaginationMenu extends HtmlMenu{ |
|
| 10 | +class HtmlPaginationMenu extends HtmlMenu { |
|
| 11 | 11 | private $_page; |
| 12 | - public function __construct( $identifier, $items=array() ){ |
|
| 13 | - parent::__construct( $identifier,$items); |
|
| 12 | + public function __construct($identifier, $items=array()) { |
|
| 13 | + parent::__construct($identifier, $items); |
|
| 14 | 14 | } |
| 15 | 15 | /** |
| 16 | 16 | * {@inheritDoc} |
| 17 | 17 | * @see \Ajax\common\html\BaseHtml::compile() |
| 18 | 18 | */ |
| 19 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 19 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 20 | 20 | $max=\sizeof($this->content); |
| 21 | - $this->insertItem(new HtmlIcon("", "left chevron"))->setProperty("data-page", \max([1,$this->_page-1]))->addToProperty("class","_firstPage no-active"); |
|
| 22 | - $this->addItem(new HtmlIcon("", "right chevron"))->setProperty("data-page", \min([$max,$this->_page+1]))->setProperty("data-max", $max)->addToProperty("class","_lastPage no-active"); |
|
| 21 | + $this->insertItem(new HtmlIcon("", "left chevron"))->setProperty("data-page", \max([1, $this->_page-1]))->addToProperty("class", "_firstPage no-active"); |
|
| 22 | + $this->addItem(new HtmlIcon("", "right chevron"))->setProperty("data-page", \min([$max, $this->_page+1]))->setProperty("data-max", $max)->addToProperty("class", "_lastPage no-active"); |
|
| 23 | 23 | $this->asPagination(); |
| 24 | - return parent::compile($js,$view); |
|
| 24 | + return parent::compile($js, $view); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | public function setActiveItem($index) { |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | * @param int $max |
| 14 | 14 | * @param string $icon star or heart |
| 15 | 15 | */ |
| 16 | - public function __construct($identifier, $value,$max=5,$icon="") { |
|
| 16 | + public function __construct($identifier, $value, $max=5, $icon="") { |
|
| 17 | 17 | parent::__construct($identifier, "div", "ui {$icon} rating"); |
| 18 | 18 | $this->setValue($value); |
| 19 | 19 | $this->setMax($max); |
@@ -23,11 +23,11 @@ discard block |
||
| 23 | 23 | * {@inheritDoc} |
| 24 | 24 | * @see \Ajax\common\html\HtmlDoubleElement::setValue() |
| 25 | 25 | */ |
| 26 | - public function setValue($value){ |
|
| 26 | + public function setValue($value) { |
|
| 27 | 27 | $this->setProperty("data-rating", $value); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function setMax($max){ |
|
| 30 | + public function setMax($max) { |
|
| 31 | 31 | $this->setProperty("data-max-rating", $max); |
| 32 | 32 | } |
| 33 | 33 | |
@@ -35,21 +35,21 @@ discard block |
||
| 35 | 35 | * {@inheritDoc} |
| 36 | 36 | * @see HtmlSemDoubleElement::run() |
| 37 | 37 | */ |
| 38 | - public function run(JsUtils $js){ |
|
| 38 | + public function run(JsUtils $js) { |
|
| 39 | 39 | parent::run($js); |
| 40 | - return $js->semantic()->rating("#".$this->identifier,$this->_params); |
|
| 40 | + return $js->semantic()->rating("#".$this->identifier, $this->_params); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function asStar(){ |
|
| 43 | + public function asStar() { |
|
| 44 | 44 | return $this->setIcon(); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - public function asHeart(){ |
|
| 47 | + public function asHeart() { |
|
| 48 | 48 | return $this->setIcon("heart"); |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function setIcon($icon="star"){ |
|
| 52 | - return $this->addToPropertyCtrl("class", $icon, ["star","heart",""]); |
|
| 51 | + public function setIcon($icon="star") { |
|
| 52 | + return $this->addToPropertyCtrl("class", $icon, ["star", "heart", ""]); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | } |
| 56 | 56 | \ No newline at end of file |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | private $pages_visibles; |
| 10 | 10 | private $row_count; |
| 11 | 11 | |
| 12 | - public function __construct($items_per_page=10,$pages_visibles=null,$page=1,$row_count=null){ |
|
| 12 | + public function __construct($items_per_page=10, $pages_visibles=null, $page=1, $row_count=null) { |
|
| 13 | 13 | $this->items_per_page=$items_per_page; |
| 14 | 14 | $this->row_count=$row_count; |
| 15 | 15 | $this->page=$page; |
@@ -17,29 +17,29 @@ discard block |
||
| 17 | 17 | $this->visible=true; |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - public function getObjects($objects){ |
|
| 20 | + public function getObjects($objects) { |
|
| 21 | 21 | $auto=(!isset($this->row_count)); |
| 22 | 22 | $os=$objects; |
| 23 | - if(!\is_array($os)){ |
|
| 23 | + if (!\is_array($os)) { |
|
| 24 | 24 | $os=[]; |
| 25 | - foreach ($objects as $o){ |
|
| 25 | + foreach ($objects as $o) { |
|
| 26 | 26 | $os[]=$o; |
| 27 | 27 | } |
| 28 | 28 | } |
| 29 | - $this->page_count = 0; |
|
| 30 | - $row_count=($auto)?\sizeof($os):$this->row_count; |
|
| 31 | - if (0 === $row_count) { |
|
| 29 | + $this->page_count=0; |
|
| 30 | + $row_count=($auto) ? \sizeof($os) : $this->row_count; |
|
| 31 | + if (0===$row_count) { |
|
| 32 | 32 | $this->visible=false; |
| 33 | 33 | } else { |
| 34 | 34 | $this->visible=true; |
| 35 | - $this->page_count = (int)ceil($row_count / $this->items_per_page); |
|
| 36 | - if($this->page > $this->page_count+1) { |
|
| 37 | - $this->page = 1; |
|
| 35 | + $this->page_count=(int)ceil($row_count/$this->items_per_page); |
|
| 36 | + if ($this->page>$this->page_count+1) { |
|
| 37 | + $this->page=1; |
|
| 38 | 38 | } |
| 39 | 39 | } |
| 40 | - if($auto){ |
|
| 41 | - $offset = ($this->page - 1) * $this->items_per_page; |
|
| 42 | - return array_slice($os, $offset,$this->items_per_page); |
|
| 40 | + if ($auto) { |
|
| 41 | + $offset=($this->page-1)*$this->items_per_page; |
|
| 42 | + return array_slice($os, $offset, $this->items_per_page); |
|
| 43 | 43 | } |
| 44 | 44 | return $os; |
| 45 | 45 | } |
@@ -75,22 +75,22 @@ discard block |
||
| 75 | 75 | return $this->page_count; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - public function getPagesNumbers(){ |
|
| 79 | - $middle= (int)ceil(($this->pages_visibles-1)/ 2); |
|
| 78 | + public function getPagesNumbers() { |
|
| 79 | + $middle=(int)ceil(($this->pages_visibles-1)/2); |
|
| 80 | 80 | $first=$this->page-$middle; |
| 81 | - if($first<1){ |
|
| 81 | + if ($first<1) { |
|
| 82 | 82 | $first=1; |
| 83 | 83 | } |
| 84 | 84 | $last=$first+$this->pages_visibles-1; |
| 85 | - if($last>$this->page_count){ |
|
| 85 | + if ($last>$this->page_count) { |
|
| 86 | 86 | $last=$this->page_count; |
| 87 | 87 | } |
| 88 | 88 | return \range($first, $last); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | public function setPagesVisibles($pages_visibles) { |
| 92 | - if(!isset($pages_visibles)) |
|
| 93 | - $pages_visibles=(int)ceil($this->row_count / $this->items_per_page)+1; |
|
| 92 | + if (!isset($pages_visibles)) |
|
| 93 | + $pages_visibles=(int)ceil($this->row_count/$this->items_per_page)+1; |
|
| 94 | 94 | $this->pages_visibles=$pages_visibles; |
| 95 | 95 | return $this; |
| 96 | 96 | } |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | * @param array $instances |
| 18 | 18 | * @return DataTable |
| 19 | 19 | */ |
| 20 | - public function dataTable($identifier,$model, $instances){ |
|
| 21 | - return $this->addHtmlComponent(new DataTable($identifier,$model,$instances)); |
|
| 20 | + public function dataTable($identifier, $model, $instances) { |
|
| 21 | + return $this->addHtmlComponent(new DataTable($identifier, $model, $instances)); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
@@ -27,8 +27,8 @@ discard block |
||
| 27 | 27 | * @param array $instances |
| 28 | 28 | * @return JsonDataTable |
| 29 | 29 | */ |
| 30 | - public function jsonDataTable($identifier,$model, $instances){ |
|
| 31 | - return $this->addHtmlComponent(new JsonDataTable($identifier,$model,$instances)); |
|
| 30 | + public function jsonDataTable($identifier, $model, $instances) { |
|
| 31 | + return $this->addHtmlComponent(new JsonDataTable($identifier, $model, $instances)); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -36,8 +36,8 @@ discard block |
||
| 36 | 36 | * @param object $instance |
| 37 | 37 | * @return DataElement |
| 38 | 38 | */ |
| 39 | - public function dataElement($identifier, $instance){ |
|
| 40 | - return $this->addHtmlComponent(new DataElement($identifier,$instance)); |
|
| 39 | + public function dataElement($identifier, $instance) { |
|
| 40 | + return $this->addHtmlComponent(new DataElement($identifier, $instance)); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
@@ -45,19 +45,19 @@ discard block |
||
| 45 | 45 | * @param object $instance |
| 46 | 46 | * @return DataForm |
| 47 | 47 | */ |
| 48 | - public function dataForm($identifier, $instance){ |
|
| 49 | - return $this->addHtmlComponent(new DataForm($identifier,$instance)); |
|
| 48 | + public function dataForm($identifier, $instance) { |
|
| 49 | + return $this->addHtmlComponent(new DataForm($identifier, $instance)); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - public function defaultLogin($identifier,$instance=null){ |
|
| 53 | - return $this->addHtmlComponent(FormLogin::regular($identifier,$instance)); |
|
| 52 | + public function defaultLogin($identifier, $instance=null) { |
|
| 53 | + return $this->addHtmlComponent(FormLogin::regular($identifier, $instance)); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - public function smallLogin($identifier,$instance=null){ |
|
| 57 | - return $this->addHtmlComponent(FormLogin::small($identifier,$instance)); |
|
| 56 | + public function smallLogin($identifier, $instance=null) { |
|
| 57 | + return $this->addHtmlComponent(FormLogin::small($identifier, $instance)); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - public function segmentedLogin($identifier,$instance=null){ |
|
| 61 | - return $this->addHtmlComponent(FormLogin::attachedSegment($identifier,$instance)); |
|
| 60 | + public function segmentedLogin($identifier, $instance=null) { |
|
| 61 | + return $this->addHtmlComponent(FormLogin::attachedSegment($identifier, $instance)); |
|
| 62 | 62 | } |
| 63 | 63 | } |
| 64 | 64 | \ No newline at end of file |
@@ -16,17 +16,17 @@ discard block |
||
| 16 | 16 | parent::__construct($identifier, $model, $modelInstance); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | - protected function _generateContent($table){ |
|
| 19 | + protected function _generateContent($table) { |
|
| 20 | 20 | $this->_addRowModel($table); |
| 21 | 21 | $this->_rowClass="_json"; |
| 22 | 22 | parent::_generateContent($table); |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - protected function _addRowModel($table){ |
|
| 25 | + protected function _addRowModel($table) { |
|
| 26 | 26 | $object=JReflection::jsonObject($this->_model); |
| 27 | - $row=$this->_generateRow($object, $table,"_jsonArrayChecked"); |
|
| 27 | + $row=$this->_generateRow($object, $table, "_jsonArrayChecked"); |
|
| 28 | 28 | $row->setClass($this->_modelClass); |
| 29 | - $row->addToProperty("style","display:none;"); |
|
| 29 | + $row->addToProperty("style", "display:none;"); |
|
| 30 | 30 | $table->getBody()->_addRow($row); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -34,22 +34,22 @@ discard block |
||
| 34 | 34 | * {@inheritDoc} |
| 35 | 35 | * @see DataTable::_associatePaginationBehavior() |
| 36 | 36 | */ |
| 37 | - protected function _associatePaginationBehavior(HtmlMenu $menu,JsUtils $js=NULL){ |
|
| 37 | + protected function _associatePaginationBehavior(HtmlMenu $menu, JsUtils $js=NULL) { |
|
| 38 | 38 | $callback=null; |
| 39 | - if(isset($js)){ |
|
| 39 | + if (isset($js)) { |
|
| 40 | 40 | $id=$this->identifier; |
| 41 | 41 | $offset=$js->scriptCount(); |
| 42 | 42 | $this->run($js); |
| 43 | 43 | $callback=$js->getScript($offset); |
| 44 | - $callback.=$js->trigger("#".$id." [name='selection[]']","change",false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js)); |
|
| 44 | + $callback.=$js->trigger("#".$id." [name='selection[]']", "change", false)."$('#".$id." tbody .ui.checkbox').checkbox();".$js->execOn("change", "#".$id." [name='selection[]']", $this->_getCheckedChange($js)); |
|
| 45 | 45 | $callback.=";var page=parseInt($(self).attr('data-page')); |
| 46 | 46 | $('#pagination-{$id} .item').removeClass('active'); |
| 47 | 47 | $('#pagination-{$id} [data-page='+page+']:not(.no-active)').addClass('active'); |
| 48 | 48 | $('#pagination-{$id} ._firstPage').attr('data-page',Math.max(1,page-1)); |
| 49 | 49 | var lastPage=$('#pagination-{$id} ._lastPage');lastPage.attr('data-page',Math.min(lastPage.attr('data-max'),page+1));"; |
| 50 | 50 | } |
| 51 | - if(isset($this->_urls["refresh"])) |
|
| 52 | - $this->jsonArrayOnClick($menu, $this->_urls["refresh"],"post","{'p':$(this).attr('data-page')}",$callback); |
|
| 51 | + if (isset($this->_urls["refresh"])) |
|
| 52 | + $this->jsonArrayOnClick($menu, $this->_urls["refresh"], "post", "{'p':$(this).attr('data-page')}", $callback); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -60,29 +60,29 @@ discard block |
||
| 60 | 60 | * @param callable $jsCallback |
| 61 | 61 | * @return AjaxCall |
| 62 | 62 | */ |
| 63 | - public function jsJsonArray($url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){ |
|
| 64 | - $parameters=\array_merge($parameters,["modelSelector"=>"#".$this->_identifier." tr.".$this->_modelClass,"url"=>$url,"method"=>$method,"params"=>$params,"jsCallback"=>$jsCallback]); |
|
| 63 | + public function jsJsonArray($url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) { |
|
| 64 | + $parameters=\array_merge($parameters, ["modelSelector"=>"#".$this->_identifier." tr.".$this->_modelClass, "url"=>$url, "method"=>$method, "params"=>$params, "jsCallback"=>$jsCallback]); |
|
| 65 | 65 | return new AjaxCall("jsonArray", $parameters); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - public function jsClear(){ |
|
| 68 | + public function jsClear() { |
|
| 69 | 69 | return "$('#{$this->identifier} tbody').find('._json').remove();"; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - public function clearOn(BaseHtml $element,$event, $stopPropagation=false, $preventDefault=false){ |
|
| 73 | - return $element->addEvent($event, $this->jsClear(),$stopPropagation,$preventDefault); |
|
| 72 | + public function clearOn(BaseHtml $element, $event, $stopPropagation=false, $preventDefault=false) { |
|
| 73 | + return $element->addEvent($event, $this->jsClear(), $stopPropagation, $preventDefault); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - public function clearOnClick(BaseHtml $element,$stopPropagation=false, $preventDefault=false){ |
|
| 77 | - return $this->clearOn($element, "click",$stopPropagation,$preventDefault); |
|
| 76 | + public function clearOnClick(BaseHtml $element, $stopPropagation=false, $preventDefault=false) { |
|
| 77 | + return $this->clearOn($element, "click", $stopPropagation, $preventDefault); |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - public function jsonArrayOn(BaseHtml $element,$event,$url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){ |
|
| 81 | - return $element->_addEvent($event, $this->jsJsonArray($url,$method,$params,$jsCallback,$parameters)); |
|
| 80 | + public function jsonArrayOn(BaseHtml $element, $event, $url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) { |
|
| 81 | + return $element->_addEvent($event, $this->jsJsonArray($url, $method, $params, $jsCallback, $parameters)); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - public function jsonArrayOnClick(BaseHtml $element,$url, $method="get", $params="{}", $jsCallback=NULL,$parameters=[]){ |
|
| 85 | - return $this->jsonArrayOn($element, "click", $url,$method,$params,$jsCallback,$parameters); |
|
| 84 | + public function jsonArrayOnClick(BaseHtml $element, $url, $method="get", $params="{}", $jsCallback=NULL, $parameters=[]) { |
|
| 85 | + return $this->jsonArrayOn($element, "click", $url, $method, $params, $jsCallback, $parameters); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * @param number $pages_visibles The number of visible pages in the Pagination component |
| 94 | 94 | * @return DataTable |
| 95 | 95 | */ |
| 96 | - public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=null){ |
|
| 97 | - return parent::paginate($page, $total_rowcount,$items_per_page,null); |
|
| 96 | + public function paginate($page, $total_rowcount, $items_per_page=10, $pages_visibles=null) { |
|
| 97 | + return parent::paginate($page, $total_rowcount, $items_per_page, null); |
|
| 98 | 98 | } |
| 99 | 99 | } |
| 100 | 100 | \ No newline at end of file |