@@ -42,6 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | /** |
44 | 44 | * @param string $identifier |
45 | + * @param integer $active |
|
45 | 46 | */ |
46 | 47 | public function __construct($identifier,$from=1,$to=1,$active=NULL,$countVisible=NULL){ |
47 | 48 | parent::__construct($identifier,"ul"); |
@@ -57,6 +58,9 @@ discard block |
||
57 | 58 | $this->createContent(); |
58 | 59 | } |
59 | 60 | |
61 | + /** |
|
62 | + * @param integer $num |
|
63 | + */ |
|
60 | 64 | private function createElement($num,$content,$disabled=false,$current=false){ |
61 | 65 | $count=sizeof($this->content)+1; |
62 | 66 | $elem=new HtmlBsDoubleElement("li-".$this->identifier."-".$count,"li"); |
@@ -168,6 +172,10 @@ discard block |
||
168 | 172 | public function getActive() { |
169 | 173 | return $this->active; |
170 | 174 | } |
175 | + |
|
176 | + /** |
|
177 | + * @param integer $active |
|
178 | + */ |
|
171 | 179 | public function setActive($active) { |
172 | 180 | $this->active = $active; |
173 | 181 | $this->createContent(); |
@@ -43,70 +43,70 @@ discard block |
||
43 | 43 | /** |
44 | 44 | * @param string $identifier |
45 | 45 | */ |
46 | - public function __construct($identifier,$from=1,$to=1,$active=NULL,$countVisible=NULL){ |
|
47 | - parent::__construct($identifier,"ul"); |
|
46 | + public function __construct($identifier, $from=1, $to=1, $active=NULL, $countVisible=NULL) { |
|
47 | + parent::__construct($identifier, "ul"); |
|
48 | 48 | $this->setProperty("class", "pagination"); |
49 | 49 | $this->active=$active; |
50 | 50 | $this->from=$from; |
51 | 51 | $this->to=$to; |
52 | 52 | $this->urlMask="%page%"; |
53 | - if(!isset($countVisible)) |
|
53 | + if (!isset($countVisible)) |
|
54 | 54 | $this->countVisible=$to-$from+1; |
55 | 55 | else |
56 | 56 | $this->countVisible=$countVisible; |
57 | 57 | $this->createContent(); |
58 | 58 | } |
59 | 59 | |
60 | - private function createElement($num,$content,$disabled=false,$current=false){ |
|
60 | + private function createElement($num, $content, $disabled=false, $current=false) { |
|
61 | 61 | $count=sizeof($this->content)+1; |
62 | - $elem=new HtmlBsDoubleElement("li-".$this->identifier."-".$count,"li"); |
|
63 | - if($disabled){ |
|
62 | + $elem=new HtmlBsDoubleElement("li-".$this->identifier."-".$count, "li"); |
|
63 | + if ($disabled) { |
|
64 | 64 | $elem->setProperty("class", "disabled"); |
65 | 65 | } |
66 | - if($current){ |
|
66 | + if ($current) { |
|
67 | 67 | $content.="<span class='sr-only'>(current)</span>"; |
68 | 68 | $elem->setProperty("class", "active"); |
69 | 69 | } |
70 | - if(!$disabled){ |
|
70 | + if (!$disabled) { |
|
71 | 71 | $url=$this->getUrl($num); |
72 | - $href=new HtmlLink("a-".$this->identifier."-".$count,$url,$content); |
|
72 | + $href=new HtmlLink("a-".$this->identifier."-".$count, $url, $content); |
|
73 | 73 | $href->setProperty($this->attr, $url); |
74 | 74 | $elem->setContent($href); |
75 | - }else{ |
|
75 | + }else { |
|
76 | 76 | $elem->setContent($content); |
77 | 77 | } |
78 | 78 | $this->content[]=$elem; |
79 | 79 | return $this; |
80 | 80 | } |
81 | 81 | |
82 | - protected function createContent(){ |
|
82 | + protected function createContent() { |
|
83 | 83 | $this->content=array(); |
84 | - $this->createElement($this->active-1,"<span aria-hidden='true'>«</span>",$this->active===1); |
|
84 | + $this->createElement($this->active-1, "<span aria-hidden='true'>«</span>", $this->active===1); |
|
85 | 85 | $start=$this->getStart(); |
86 | - $end=min($start+$this->countVisible-1,$this->to); |
|
87 | - for($index=$start;$index<=$end;$index++){ |
|
88 | - $this->createElement($index,$index,false,$index===$this->active); |
|
86 | + $end=min($start+$this->countVisible-1, $this->to); |
|
87 | + for ($index=$start; $index<=$end; $index++) { |
|
88 | + $this->createElement($index, $index, false, $index===$this->active); |
|
89 | 89 | } |
90 | - $this->createElement($this->active+1,"<span aria-hidden='true'>»</span>",$this->active===$this->to); |
|
90 | + $this->createElement($this->active+1, "<span aria-hidden='true'>»</span>", $this->active===$this->to); |
|
91 | 91 | } |
92 | 92 | |
93 | - protected function half(){ |
|
94 | - return (int)($this->countVisible/2); |
|
93 | + protected function half() { |
|
94 | + return (int) ($this->countVisible / 2); |
|
95 | 95 | } |
96 | 96 | |
97 | - protected function getStart(){ |
|
97 | + protected function getStart() { |
|
98 | 98 | $result=1; |
99 | - if($this->countVisible!==$this->to-$this->from+1){ |
|
100 | - $result=max($this->active-$this->half(),$result); |
|
99 | + if ($this->countVisible!==$this->to-$this->from+1) { |
|
100 | + $result=max($this->active-$this->half(), $result); |
|
101 | 101 | } |
102 | 102 | return $result; |
103 | 103 | } |
104 | 104 | |
105 | 105 | public function _addEvent($event, $jsCode) { |
106 | - foreach ($this->content as $li){ |
|
106 | + foreach ($this->content as $li) { |
|
107 | 107 | $content=$li->getContent(); |
108 | - if($content instanceof BaseHtml) |
|
109 | - $content->_addEvent($event,$jsCode); |
|
108 | + if ($content instanceof BaseHtml) |
|
109 | + $content->_addEvent($event, $jsCode); |
|
110 | 110 | } |
111 | 111 | } |
112 | 112 | /** |
@@ -114,15 +114,15 @@ discard block |
||
114 | 114 | * @param Dispatcher $dispatcher the request dispatcher |
115 | 115 | * @return \Ajax\bootstrap\html\HtmlPagination |
116 | 116 | */ |
117 | - public function fromDispatcher($dispatcher){ |
|
118 | - $items=array($dispatcher->getControllerName(),$dispatcher->getActionName()); |
|
119 | - $items=array_merge($items,$dispatcher->getParams()); |
|
117 | + public function fromDispatcher($dispatcher) { |
|
118 | + $items=array($dispatcher->getControllerName(), $dispatcher->getActionName()); |
|
119 | + $items=array_merge($items, $dispatcher->getParams()); |
|
120 | 120 | $url=implode("/", $items); |
121 | - if($this->urlMask==="%page%"){ |
|
121 | + if ($this->urlMask==="%page%") { |
|
122 | 122 | $this->urlMask=preg_replace("/[0-9]/", "%page%", $url); |
123 | 123 | } |
124 | - for($index=$this->from;$index<=$this->to;$index++){ |
|
125 | - if($this->getUrl($index)==$url){ |
|
124 | + for ($index=$this->from; $index<=$this->to; $index++) { |
|
125 | + if ($this->getUrl($index)==$url) { |
|
126 | 126 | $this->setActive($index); |
127 | 127 | break; |
128 | 128 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | return $this; |
131 | 131 | } |
132 | 132 | |
133 | - public function getUrl($index){ |
|
133 | + public function getUrl($index) { |
|
134 | 134 | return str_ireplace("%page%", $index, $this->urlMask); |
135 | 135 | } |
136 | 136 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | if (is_int($size)) { |
145 | 145 | return $this->addToPropertyUnique("class", CssRef::sizes("pagination")[$size], CssRef::sizes("pagination")); |
146 | 146 | } |
147 | - if(!PhalconUtils::startsWith($size, "pagination-") && $size!=="") |
|
147 | + if (!PhalconUtils::startsWith($size, "pagination-") && $size!=="") |
|
148 | 148 | $size="pagination-".$size; |
149 | 149 | return $this->addToPropertyCtrl("class", $size, CssRef::sizes("pagination")); |
150 | 150 | } |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | return $this->from; |
154 | 154 | } |
155 | 155 | public function setFrom($from) { |
156 | - $this->from = $from; |
|
156 | + $this->from=$from; |
|
157 | 157 | $this->createContent(); |
158 | 158 | return $this; |
159 | 159 | } |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | return $this->to; |
162 | 162 | } |
163 | 163 | public function setTo($to) { |
164 | - $this->to = $to; |
|
164 | + $this->to=$to; |
|
165 | 165 | $this->createContent(); |
166 | 166 | return $this; |
167 | 167 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | return $this->active; |
170 | 170 | } |
171 | 171 | public function setActive($active) { |
172 | - $this->active = $active; |
|
172 | + $this->active=$active; |
|
173 | 173 | $this->createContent(); |
174 | 174 | return $this; |
175 | 175 | } |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | return $this->urlMask; |
178 | 178 | } |
179 | 179 | public function setUrlMask($urlMask) { |
180 | - $this->urlMask = $urlMask; |
|
180 | + $this->urlMask=$urlMask; |
|
181 | 181 | $this->createContent(); |
182 | 182 | return $this; |
183 | 183 | } |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | return $this->countVisible; |
186 | 186 | } |
187 | 187 | public function setCountVisible($countVisible) { |
188 | - $this->countVisible = $countVisible; |
|
188 | + $this->countVisible=$countVisible; |
|
189 | 189 | $this->createContent(); |
190 | 190 | return $this; |
191 | 191 | } |
@@ -48,6 +48,9 @@ discard block |
||
48 | 48 | return $this; |
49 | 49 | } |
50 | 50 | |
51 | + /** |
|
52 | + * @param string $name |
|
53 | + */ |
|
51 | 54 | public function getProperty($name) { |
52 | 55 | if (array_key_exists($name, $this->properties)) |
53 | 56 | return $this->properties [$name]; |
@@ -128,6 +131,10 @@ discard block |
||
128 | 131 | return $this; |
129 | 132 | } |
130 | 133 | |
134 | + /** |
|
135 | + * @param string $name |
|
136 | + * @param string[] $typeCtrl |
|
137 | + */ |
|
131 | 138 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
132 | 139 | if ($this->ctrl($name, $value, $typeCtrl)===true) { |
133 | 140 | if (is_array($typeCtrl)) { |
@@ -152,6 +159,9 @@ discard block |
||
152 | 159 | return $this->addToProperty($name, $value); |
153 | 160 | } |
154 | 161 | |
162 | + /** |
|
163 | + * @param string $name |
|
164 | + */ |
|
155 | 165 | public function addToPropertyCtrl($name, $value, $typeCtrl) { |
156 | 166 | // if($this->ctrl($name, $value, $typeCtrl)===true){ |
157 | 167 | return $this->addToPropertyUnique($name, $value, $typeCtrl); |
@@ -219,6 +229,9 @@ discard block |
||
219 | 229 | |
220 | 230 | } |
221 | 231 | |
232 | + /** |
|
233 | + * @param string $before |
|
234 | + */ |
|
222 | 235 | public function wrap($before, $after="") { |
223 | 236 | if(isset($before)){ |
224 | 237 | $this->wrapBefore.=$before; |
@@ -287,6 +300,9 @@ discard block |
||
287 | 300 | } |
288 | 301 | } |
289 | 302 | |
303 | + /** |
|
304 | + * @param string $operation |
|
305 | + */ |
|
290 | 306 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
291 | 307 | $params=array ( |
292 | 308 | "url" => $url, |
@@ -297,14 +313,23 @@ discard block |
||
297 | 313 | return $this; |
298 | 314 | } |
299 | 315 | |
316 | + /** |
|
317 | + * @param string $event |
|
318 | + */ |
|
300 | 319 | public function getOn($event, $url, $responseElement="", $parameters=array()) { |
301 | 320 | return $this->_ajaxOn("get", $event, $url, $responseElement, $parameters); |
302 | 321 | } |
303 | 322 | |
323 | + /** |
|
324 | + * @param string $url |
|
325 | + */ |
|
304 | 326 | public function getOnClick($url, $responseElement="", $parameters=array()) { |
305 | 327 | return $this->getOn("click", $url, $responseElement, $parameters); |
306 | 328 | } |
307 | 329 | |
330 | + /** |
|
331 | + * @param string $event |
|
332 | + */ |
|
308 | 333 | public function postOn($event, $url, $params="{}", $responseElement="", $parameters=array()) { |
309 | 334 | $parameters ["params"]=$params; |
310 | 335 | return $this->_ajaxOn("post", $event, $url, $responseElement, $parameters); |
@@ -314,6 +339,9 @@ discard block |
||
314 | 339 | return $this->postOn("click", $url, $params, $responseElement, $parameters); |
315 | 340 | } |
316 | 341 | |
342 | + /** |
|
343 | + * @param string $event |
|
344 | + */ |
|
317 | 345 | public function postFormOn($event, $url, $form, $responseElement="", $parameters=array()) { |
318 | 346 | $parameters ["form"]=$form; |
319 | 347 | return $this->_ajaxOn("postForm", $event, $url, $responseElement, $parameters); |
@@ -363,6 +391,9 @@ discard block |
||
363 | 391 | return $value; |
364 | 392 | } |
365 | 393 | |
394 | + /** |
|
395 | + * @param string $jqueryCall |
|
396 | + */ |
|
366 | 397 | public function jsDoJquery($jqueryCall, $param=""){ |
367 | 398 | return "$('#".$this->identifier."').".$jqueryCall."(".$this->_prep_value($param).");"; |
368 | 399 | } |
@@ -40,6 +40,7 @@ |
||
40 | 40 | /** |
41 | 41 | * {@inheritDoc} |
42 | 42 | * @see \Ajax\common\html\HtmlSingleElement::setSize() |
43 | + * @param string $size |
|
43 | 44 | */ |
44 | 45 | public function setSize($size) { |
45 | 46 | $this->setMemberCtrl($this->size, $size,IconSize::getConstants()); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | protected $attributes; |
18 | 18 | protected $color; |
19 | 19 | |
20 | - public function __construct($identifier,$icon) { |
|
20 | + public function __construct($identifier, $icon) { |
|
21 | 21 | parent::__construct($identifier, "i"); |
22 | 22 | $this->icon=$icon; |
23 | 23 | $this->_template='<i class="%icon% icon %size% %attributes% %color%"></i>'; |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | * @see \Ajax\common\html\HtmlSingleElement::setSize() |
43 | 43 | */ |
44 | 44 | public function setSize($size) { |
45 | - $this->setMemberCtrl($this->size, $size,IconSize::getConstants()); |
|
45 | + $this->setMemberCtrl($this->size, $size, IconSize::getConstants()); |
|
46 | 46 | return $this; |
47 | 47 | } |
48 | 48 | |
49 | - public function setDisabled(){ |
|
49 | + public function setDisabled() { |
|
50 | 50 | return $this->addToMember($this->attributes, "disabled"); |
51 | 51 | } |
52 | 52 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * Icon used as a simple loader |
55 | 55 | * @return \Ajax\semantic\html\HtmlIcon |
56 | 56 | */ |
57 | - public function asLoader(){ |
|
57 | + public function asLoader() { |
|
58 | 58 | return $this->addToMember($this->attributes, "loading"); |
59 | 59 | } |
60 | 60 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * An icon can be fitted, without any space to the left or right of it. |
63 | 63 | * @return \Ajax\semantic\html\HtmlIcon |
64 | 64 | */ |
65 | - public function setFitted(){ |
|
65 | + public function setFitted() { |
|
66 | 66 | return $this->addToMember($this->attributes, "fitted"); |
67 | 67 | } |
68 | 68 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * @param string $sens horizontally or vertically |
71 | 71 | * @return \Ajax\semantic\html\HtmlIcon |
72 | 72 | */ |
73 | - public function setFlipped($sens="horizontally"){ |
|
73 | + public function setFlipped($sens="horizontally") { |
|
74 | 74 | return $this->addToMember($this->attributes, "flipped ".$sens); |
75 | 75 | } |
76 | 76 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @param string $sens clockwise or counterclockwise |
79 | 79 | * @return \Ajax\semantic\html\HtmlIcon |
80 | 80 | */ |
81 | - public function setRotated($sens="clockwise"){ |
|
81 | + public function setRotated($sens="clockwise") { |
|
82 | 82 | return $this->addToMember($this->attributes, "rotated ".$sens); |
83 | 83 | } |
84 | 84 | |
@@ -86,13 +86,13 @@ discard block |
||
86 | 86 | * icon formatted as a link |
87 | 87 | * @return \Ajax\semantic\html\HtmlIcon |
88 | 88 | */ |
89 | - public function asLink(){ |
|
89 | + public function asLink() { |
|
90 | 90 | return $this->addToMember($this->attributes, "link"); |
91 | 91 | } |
92 | 92 | |
93 | - public function setCircular($inverted=false){ |
|
93 | + public function setCircular($inverted=false) { |
|
94 | 94 | $invertedStr=""; |
95 | - if($inverted) |
|
95 | + if ($inverted) |
|
96 | 96 | $invertedStr=" inverted"; |
97 | 97 | return $this->addToMember($this->attributes, "circular".$invertedStr); |
98 | 98 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | /** |
101 | 101 | * @return \Ajax\semantic\html\HtmlIcon |
102 | 102 | */ |
103 | - public function setInverted(){ |
|
103 | + public function setInverted() { |
|
104 | 104 | return $this->addToMember($this->attributes, "inverted"); |
105 | 105 | } |
106 | 106 | |
@@ -108,9 +108,9 @@ discard block |
||
108 | 108 | * @param string $inverted |
109 | 109 | * @return \Ajax\semantic\html\HtmlIcon |
110 | 110 | */ |
111 | - public function setBordered($inverted=false){ |
|
111 | + public function setBordered($inverted=false) { |
|
112 | 112 | $invertedStr=""; |
113 | - if($inverted) |
|
113 | + if ($inverted) |
|
114 | 114 | $invertedStr=" inverted"; |
115 | 115 | return $this->addToMember($this->attributes, "bordered".$invertedStr); |
116 | 116 | } |
@@ -119,14 +119,14 @@ discard block |
||
119 | 119 | * @param string $color |
120 | 120 | * @return \Ajax\semantic\html\HtmlIcon |
121 | 121 | */ |
122 | - public function setColor($color){ |
|
122 | + public function setColor($color) { |
|
123 | 123 | return $this->setMemberCtrl($this->color, $color, Color::getConstants()); |
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
127 | 127 | * @return \Ajax\semantic\html\HtmlIcon |
128 | 128 | */ |
129 | - public function toCorner(){ |
|
129 | + public function toCorner() { |
|
130 | 130 | return $this->addToMember($this->attributes, "corner"); |
131 | 131 | } |
132 | 132 | } |
133 | 133 | \ No newline at end of file |
@@ -92,8 +92,9 @@ discard block |
||
92 | 92 | |
93 | 93 | public function setCircular($inverted=false){ |
94 | 94 | $invertedStr=""; |
95 | - if($inverted) |
|
96 | - $invertedStr=" inverted"; |
|
95 | + if($inverted) { |
|
96 | + $invertedStr=" inverted"; |
|
97 | + } |
|
97 | 98 | return $this->addToMember($this->attributes, "circular".$invertedStr); |
98 | 99 | } |
99 | 100 | |
@@ -110,8 +111,9 @@ discard block |
||
110 | 111 | */ |
111 | 112 | public function setBordered($inverted=false){ |
112 | 113 | $invertedStr=""; |
113 | - if($inverted) |
|
114 | - $invertedStr=" inverted"; |
|
114 | + if($inverted) { |
|
115 | + $invertedStr=" inverted"; |
|
116 | + } |
|
115 | 117 | return $this->addToMember($this->attributes, "bordered".$invertedStr); |
116 | 118 | } |
117 | 119 |
@@ -26,18 +26,18 @@ |
||
26 | 26 | return $this->addHtmlComponent(new HtmlButton($identifier, $value, $cssStyle, $onClick)); |
27 | 27 | } |
28 | 28 | |
29 | - public function htmlIcon($identifier,$icon){ |
|
29 | + public function htmlIcon($identifier, $icon) { |
|
30 | 30 | return $this->addHtmlComponent(new HtmlIcon($identifier, $icon)); |
31 | 31 | } |
32 | 32 | |
33 | - public function htmlGroupIcons($identifier,$size="",$icons=array()){ |
|
34 | - $group=new HtmlGroupIcons($identifier,$size); |
|
35 | - if(JArray::isAssociative($icons)){ |
|
36 | - foreach ($icons as $icon=>$size){ |
|
37 | - $group->addIcon($icon,$size); |
|
33 | + public function htmlGroupIcons($identifier, $size="", $icons=array()) { |
|
34 | + $group=new HtmlGroupIcons($identifier, $size); |
|
35 | + if (JArray::isAssociative($icons)) { |
|
36 | + foreach ($icons as $icon=>$size) { |
|
37 | + $group->addIcon($icon, $size); |
|
38 | 38 | } |
39 | - }else{ |
|
40 | - foreach ($icons as $icon){ |
|
39 | + }else { |
|
40 | + foreach ($icons as $icon) { |
|
41 | 41 | $group->addIcon($icon); |
42 | 42 | } |
43 | 43 | } |
@@ -36,7 +36,7 @@ |
||
36 | 36 | foreach ($icons as $icon=>$size){ |
37 | 37 | $group->addIcon($icon,$size); |
38 | 38 | } |
39 | - }else{ |
|
39 | + } else{ |
|
40 | 40 | foreach ($icons as $icon){ |
41 | 41 | $group->addIcon($icon); |
42 | 42 | } |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | public function setActive($value) { |
32 | - if(is_array($this->content)){ |
|
33 | - foreach ($this->content as $pb){ |
|
32 | + if (is_array($this->content)) { |
|
33 | + foreach ($this->content as $pb) { |
|
34 | 34 | $pb->setActive($value); |
35 | 35 | } |
36 | - }else{ |
|
36 | + }else { |
|
37 | 37 | if ($value===true) |
38 | 38 | $this->active="active"; |
39 | 39 | else |
@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | public function setStriped($value) { |
46 | - if(is_array($this->content)){ |
|
47 | - foreach ($this->content as $pb){ |
|
46 | + if (is_array($this->content)) { |
|
47 | + foreach ($this->content as $pb) { |
|
48 | 48 | $pb->setStriped($value); |
49 | 49 | } |
50 | - }else{ |
|
50 | + }else { |
|
51 | 51 | if ($value===true) |
52 | 52 | $this->striped="progress-bar-striped"; |
53 | 53 | else |
@@ -57,11 +57,11 @@ discard block |
||
57 | 57 | } |
58 | 58 | |
59 | 59 | public function showCaption($value) { |
60 | - if(is_array($this->content)){ |
|
61 | - foreach ($this->content as $pb){ |
|
60 | + if (is_array($this->content)) { |
|
61 | + foreach ($this->content as $pb) { |
|
62 | 62 | $pb->showCaption($value); |
63 | 63 | } |
64 | - }else{ |
|
64 | + }else { |
|
65 | 65 | if ($value===true) |
66 | 66 | $this->caption="%value%%"; |
67 | 67 | else |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $progressBar->setStriped($this->striped!=="" || $progressBar->isStriped()); |
82 | 82 | $progressBar->setActive($this->active==="active" || $progressBar->isActive()); |
83 | 83 | if (is_array($this->content)===false) { |
84 | - $this->content=array (); |
|
84 | + $this->content=array(); |
|
85 | 85 | } |
86 | 86 | $this->content []=$progressBar; |
87 | 87 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @return \Ajax\bootstrap\html\HtmlProgressbar default : "" |
126 | 126 | */ |
127 | 127 | public function setStyle($cssStyle) { |
128 | - return $this->setMemberCtrl($this->style,CssRef::getStyle($cssStyle, "progress-bar"), CssRef::Styles("progress-bar")); |
|
128 | + return $this->setMemberCtrl($this->style, CssRef::getStyle($cssStyle, "progress-bar"), CssRef::Styles("progress-bar")); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /* |
@@ -134,10 +134,10 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function compile(JsUtils $js=NULL, View $view=NULL) { |
136 | 136 | $actualStyle=$this->style; |
137 | - if(isset($this->styleLimits)&& JArray::isAssociative($this->styleLimits)){ |
|
138 | - foreach ($this->styleLimits as $k=>$v){ |
|
137 | + if (isset($this->styleLimits) && JArray::isAssociative($this->styleLimits)) { |
|
138 | + foreach ($this->styleLimits as $k=>$v) { |
|
139 | 139 | $actualStyle=$k; |
140 | - if($v>$this->value) |
|
140 | + if ($v>$this->value) |
|
141 | 141 | break; |
142 | 142 | } |
143 | 143 | } |
@@ -33,11 +33,12 @@ discard block |
||
33 | 33 | foreach ($this->content as $pb){ |
34 | 34 | $pb->setActive($value); |
35 | 35 | } |
36 | - }else{ |
|
37 | - if ($value===true) |
|
38 | - $this->active="active"; |
|
39 | - else |
|
40 | - $this->active=""; |
|
36 | + } else{ |
|
37 | + if ($value===true) { |
|
38 | + $this->active="active"; |
|
39 | + } else { |
|
40 | + $this->active=""; |
|
41 | + } |
|
41 | 42 | } |
42 | 43 | return $this; |
43 | 44 | } |
@@ -47,11 +48,12 @@ discard block |
||
47 | 48 | foreach ($this->content as $pb){ |
48 | 49 | $pb->setStriped($value); |
49 | 50 | } |
50 | - }else{ |
|
51 | - if ($value===true) |
|
52 | - $this->striped="progress-bar-striped"; |
|
53 | - else |
|
54 | - $this->striped=""; |
|
51 | + } else{ |
|
52 | + if ($value===true) { |
|
53 | + $this->striped="progress-bar-striped"; |
|
54 | + } else { |
|
55 | + $this->striped=""; |
|
56 | + } |
|
55 | 57 | } |
56 | 58 | return $this; |
57 | 59 | } |
@@ -61,11 +63,12 @@ discard block |
||
61 | 63 | foreach ($this->content as $pb){ |
62 | 64 | $pb->showCaption($value); |
63 | 65 | } |
64 | - }else{ |
|
65 | - if ($value===true) |
|
66 | - $this->caption="%value%%"; |
|
67 | - else |
|
68 | - $this->caption='<span class="sr-only">%value%% Complete (%style%)</span>'; |
|
66 | + } else{ |
|
67 | + if ($value===true) { |
|
68 | + $this->caption="%value%%"; |
|
69 | + } else { |
|
70 | + $this->caption='<span class="sr-only">%value%% Complete (%style%)</span>'; |
|
71 | + } |
|
69 | 72 | } |
70 | 73 | return $this; |
71 | 74 | } |
@@ -137,8 +140,9 @@ discard block |
||
137 | 140 | if(isset($this->styleLimits)&& JArray::isAssociative($this->styleLimits)){ |
138 | 141 | foreach ($this->styleLimits as $k=>$v){ |
139 | 142 | $actualStyle=$k; |
140 | - if($v>$this->value) |
|
141 | - break; |
|
143 | + if($v>$this->value) { |
|
144 | + break; |
|
145 | + } |
|
142 | 146 | } |
143 | 147 | } |
144 | 148 | $this->style=$actualStyle; |
@@ -23,19 +23,19 @@ |
||
23 | 23 | return $this; |
24 | 24 | } |
25 | 25 | |
26 | - public function addGlyph($glyphicon,$before=true){ |
|
26 | + public function addGlyph($glyphicon, $before=true) { |
|
27 | 27 | $glyph=new HtmlGlyphicon(""); |
28 | 28 | $glyph->setGlyphicon($glyphicon); |
29 | - $this->addContent($glyph,$before); |
|
29 | + $this->addContent($glyph, $before); |
|
30 | 30 | return $this; |
31 | 31 | } |
32 | 32 | |
33 | - public function wrapContentWithGlyph($glyphBefore,$glyphAfter=""){ |
|
33 | + public function wrapContentWithGlyph($glyphBefore, $glyphAfter="") { |
|
34 | 34 | $before=HtmlGlyphicon::getGlyphicon($glyphBefore)." "; |
35 | 35 | $after=""; |
36 | - if($glyphAfter!==""){ |
|
36 | + if ($glyphAfter!=="") { |
|
37 | 37 | $after=" ".HtmlGlyphicon::getGlyphicon($glyphAfter); |
38 | 38 | } |
39 | - return $this->wrapContent($before,$after); |
|
39 | + return $this->wrapContent($before, $after); |
|
40 | 40 | } |
41 | 41 | } |
42 | 42 | \ No newline at end of file |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | * @param boolean $autoActive sets the last element's class to <b>active</b> if true |
42 | 42 | * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()} |
43 | 43 | */ |
44 | - public function __construct($identifier,$elements=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){ |
|
45 | - parent::__construct($identifier,"ol"); |
|
44 | + public function __construct($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) { |
|
45 | + parent::__construct($identifier, "ol"); |
|
46 | 46 | $this->startIndex=$startIndex; |
47 | 47 | $this->setProperty("class", "breadcrumb"); |
48 | 48 | $this->content=array(); |
49 | 49 | $this->autoActive=$autoActive; |
50 | 50 | $this->absolutePaths; |
51 | - $this->_hrefFunction=function ($e){return $e->getContent();}; |
|
52 | - if(isset($hrefFunction)){ |
|
51 | + $this->_hrefFunction=function($e) {return $e->getContent(); }; |
|
52 | + if (isset($hrefFunction)) { |
|
53 | 53 | $this->_hrefFunction=$hrefFunction; |
54 | 54 | } |
55 | 55 | $this->addElements($elements); |
@@ -60,43 +60,43 @@ discard block |
||
60 | 60 | * @param string $href |
61 | 61 | * @return \Ajax\bootstrap\html\HtmlLink |
62 | 62 | */ |
63 | - public function addElement($element,$href="",$glyph=NULL){ |
|
63 | + public function addElement($element, $href="", $glyph=NULL) { |
|
64 | 64 | $size=sizeof($this->content); |
65 | - if(is_array($element)){ |
|
65 | + if (is_array($element)) { |
|
66 | 66 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size); |
67 | 67 | $elm->fromArray($element); |
68 | - }else if($element instanceof HtmlLink){ |
|
68 | + }else if ($element instanceof HtmlLink) { |
|
69 | 69 | $elm=$element; |
70 | - }else{ |
|
71 | - $elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element); |
|
72 | - if(isset($glyph)){ |
|
70 | + }else { |
|
71 | + $elm=new HtmlLink("lnk-".$this->identifier."-".$size, $href, $element); |
|
72 | + if (isset($glyph)) { |
|
73 | 73 | $elm->wrapContentWithGlyph($glyph); |
74 | 74 | } |
75 | 75 | } |
76 | - $elm->wrap("<li>","</li>"); |
|
76 | + $elm->wrap("<li>", "</li>"); |
|
77 | 77 | $this->content[]=$elm; |
78 | 78 | $elm->setProperty($this->attr, $this->getHref($size)); |
79 | 79 | return $elm; |
80 | 80 | } |
81 | 81 | |
82 | - public function setActive($index=null){ |
|
83 | - if(!isset($index)){ |
|
82 | + public function setActive($index=null) { |
|
83 | + if (!isset($index)) { |
|
84 | 84 | $index=sizeof($this->content)-1; |
85 | 85 | } |
86 | - $li=new HtmlBsDoubleElement("","li"); |
|
86 | + $li=new HtmlBsDoubleElement("", "li"); |
|
87 | 87 | $li->setClass("active"); |
88 | 88 | $li->setContent($this->content[$index]->getContent()); |
89 | 89 | $this->content[$index]=$li; |
90 | 90 | } |
91 | 91 | |
92 | - public function addElements($elements){ |
|
93 | - foreach ( $elements as $element ) { |
|
92 | + public function addElements($elements) { |
|
93 | + foreach ($elements as $element) { |
|
94 | 94 | $this->addElement($element); |
95 | 95 | } |
96 | 96 | return $this; |
97 | 97 | } |
98 | 98 | |
99 | - public function fromArray($array){ |
|
99 | + public function fromArray($array) { |
|
100 | 100 | $array=parent::fromArray($array); |
101 | 101 | $this->addElements($array); |
102 | 102 | return $array; |
@@ -108,14 +108,14 @@ discard block |
||
108 | 108 | * @param string $separator |
109 | 109 | * @return string |
110 | 110 | */ |
111 | - public function getHref($index=null,$separator="/"){ |
|
112 | - if(!isset($index)){ |
|
111 | + public function getHref($index=null, $separator="/") { |
|
112 | + if (!isset($index)) { |
|
113 | 113 | $index=sizeof($this->content); |
114 | 114 | } |
115 | - if($this->absolutePaths===true){ |
|
115 | + if ($this->absolutePaths===true) { |
|
116 | 116 | return $this->_hrefFunction($this->content[$index]); |
117 | - }else{ |
|
118 | - return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1)); |
|
117 | + }else { |
|
118 | + return $this->root.implode($separator, array_slice(array_map(function($e) {return $this->_hrefFunction($e); }, $this->content), $this->startIndex, $index+1)); |
|
119 | 119 | } |
120 | 120 | } |
121 | 121 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * @see \Ajax\bootstrap\html\BaseHtml::compile() |
125 | 125 | */ |
126 | 126 | public function compile(JsUtils $js=NULL, View $view=NULL) { |
127 | - if($this->autoActive){ |
|
127 | + if ($this->autoActive) { |
|
128 | 128 | $this->setActive(); |
129 | 129 | } |
130 | 130 | return parent::compile($js, $view); |
@@ -142,19 +142,19 @@ discard block |
||
142 | 142 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
143 | 143 | */ |
144 | 144 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
145 | - foreach ($this->content as $element){ |
|
146 | - $element->on($event,$jsCode,$stopPropagation,$preventDefault); |
|
145 | + foreach ($this->content as $element) { |
|
146 | + $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
147 | 147 | } |
148 | 148 | return $this; |
149 | 149 | } |
150 | 150 | |
151 | 151 | public function setAutoActive($autoActive) { |
152 | - $this->autoActive = $autoActive; |
|
152 | + $this->autoActive=$autoActive; |
|
153 | 153 | return $this; |
154 | 154 | } |
155 | 155 | |
156 | 156 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
157 | - foreach ($this->content as $element){ |
|
157 | + foreach ($this->content as $element) { |
|
158 | 158 | $element->_ajaxOn($operation, $event, $url, $responseElement, $parameters); |
159 | 159 | } |
160 | 160 | return $this; |
@@ -167,18 +167,18 @@ discard block |
||
167 | 167 | * @param string $attr the html attribute used to build the elements url |
168 | 168 | * @return HtmlBreadcrumbs |
169 | 169 | */ |
170 | - public function autoGetOnClick($targetSelector){ |
|
171 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
170 | + public function autoGetOnClick($targetSelector) { |
|
171 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
172 | 172 | } |
173 | 173 | |
174 | - public function contentAsString(){ |
|
175 | - if($this->autoActive){ |
|
174 | + public function contentAsString() { |
|
175 | + if ($this->autoActive) { |
|
176 | 176 | $this->setActive(); |
177 | 177 | } |
178 | 178 | return parent::contentAsString(); |
179 | 179 | } |
180 | 180 | |
181 | - public function getElement($index){ |
|
181 | + public function getElement($index) { |
|
182 | 182 | return $this->content[$index]; |
183 | 183 | } |
184 | 184 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | * @param mixed $glyph |
188 | 188 | * @param int $index |
189 | 189 | */ |
190 | - public function addGlyph($glyph,$index=0){ |
|
190 | + public function addGlyph($glyph, $index=0) { |
|
191 | 191 | $elm=$this->getElement($index); |
192 | 192 | return $elm->wrapContentWithGlyph($glyph); |
193 | 193 | } |
@@ -197,14 +197,14 @@ discard block |
||
197 | 197 | * @param Dispatcher $dispatcher the request dispatcher |
198 | 198 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
199 | 199 | */ |
200 | - public function fromDispatcher($dispatcher){ |
|
200 | + public function fromDispatcher($dispatcher) { |
|
201 | 201 | $params=$dispatcher->getParams(); |
202 | 202 | $action=$dispatcher->getActionName(); |
203 | 203 | $items=array($dispatcher->getControllerName()); |
204 | - if(\sizeof($params)>0 || \strtolower($action)!="index" ){ |
|
204 | + if (\sizeof($params)>0 || \strtolower($action)!="index") { |
|
205 | 205 | $items[]=$action; |
206 | - foreach ($params as $p){ |
|
207 | - if(\is_object($p)==false) |
|
206 | + foreach ($params as $p) { |
|
207 | + if (\is_object($p)==false) |
|
208 | 208 | $items[]=$p; |
209 | 209 | } |
210 | 210 | } |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
219 | 219 | */ |
220 | 220 | public function setHrefFunction($_hrefFunction) { |
221 | - $this->_hrefFunction = $_hrefFunction; |
|
221 | + $this->_hrefFunction=$_hrefFunction; |
|
222 | 222 | return $this; |
223 | 223 | } |
224 | 224 |
@@ -65,9 +65,9 @@ discard block |
||
65 | 65 | if(is_array($element)){ |
66 | 66 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size); |
67 | 67 | $elm->fromArray($element); |
68 | - }else if($element instanceof HtmlLink){ |
|
68 | + } else if($element instanceof HtmlLink){ |
|
69 | 69 | $elm=$element; |
70 | - }else{ |
|
70 | + } else{ |
|
71 | 71 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element); |
72 | 72 | if(isset($glyph)){ |
73 | 73 | $elm->wrapContentWithGlyph($glyph); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | } |
115 | 115 | if($this->absolutePaths===true){ |
116 | 116 | return $this->_hrefFunction($this->content[$index]); |
117 | - }else{ |
|
117 | + } else{ |
|
118 | 118 | return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1)); |
119 | 119 | } |
120 | 120 | } |
@@ -204,8 +204,9 @@ discard block |
||
204 | 204 | if(\sizeof($params)>0 || \strtolower($action)!="index" ){ |
205 | 205 | $items[]=$action; |
206 | 206 | foreach ($params as $p){ |
207 | - if(\is_object($p)==false) |
|
208 | - $items[]=$p; |
|
207 | + if(\is_object($p)==false) { |
|
208 | + $items[]=$p; |
|
209 | + } |
|
209 | 210 | } |
210 | 211 | } |
211 | 212 | return $this->addElements($items); |
@@ -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)===false) { |
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; |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | parent::run($js); |
50 | 50 | if ($this->content instanceof HtmlDoubleElement) { |
51 | 51 | $this->content->run($js); |
52 | - } else if (is_array($this->content)) { |
|
53 | - foreach ( $this->content as $itemContent ) { |
|
52 | + }else if (is_array($this->content)) { |
|
53 | + foreach ($this->content as $itemContent) { |
|
54 | 54 | if ($itemContent instanceof HtmlDoubleElement) { |
55 | 55 | $itemContent->run($js); |
56 | 56 | } |
@@ -29,15 +29,17 @@ |
||
29 | 29 | |
30 | 30 | public function addContent($content,$before=false) { |
31 | 31 | if (is_array($this->content)===false) { |
32 | - if(isset($this->content)) |
|
33 | - $this->content=array ($this->content); |
|
34 | - else |
|
35 | - $this->content=array(); |
|
32 | + if(isset($this->content)) { |
|
33 | + $this->content=array ($this->content); |
|
34 | + } else { |
|
35 | + $this->content=array(); |
|
36 | + } |
|
37 | + } |
|
38 | + if($before) { |
|
39 | + array_unshift($this->content,$content); |
|
40 | + } else { |
|
41 | + $this->content []=$content; |
|
36 | 42 | } |
37 | - if($before) |
|
38 | - array_unshift($this->content,$content); |
|
39 | - else |
|
40 | - $this->content []=$content; |
|
41 | 43 | return $this; |
42 | 44 | } |
43 | 45 |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | protected function _setDi($di) { |
52 | 52 | $this->_di=$di; |
53 | - if ($this->js!=null&&$di!=null) |
|
53 | + if ($this->js!=null && $di!=null) |
|
54 | 54 | $this->js->setDi($di); |
55 | 55 | } |
56 | 56 | |
@@ -145,18 +145,18 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | public function __construct($params=array()) { |
148 | - $defaults=array ( |
|
148 | + $defaults=array( |
|
149 | 149 | 'driver' => 'Jquery', |
150 | 150 | 'debug' => true |
151 | 151 | ); |
152 | - foreach ( $defaults as $key => $val ) { |
|
153 | - if (isset($params[$key])&&$params[$key]!=="") { |
|
152 | + foreach ($defaults as $key => $val) { |
|
153 | + if (isset($params[$key]) && $params[$key]!=="") { |
|
154 | 154 | $defaults[$key]=$params[$key]; |
155 | 155 | } |
156 | 156 | } |
157 | 157 | extract($defaults); |
158 | 158 | $this->js=new Jquery($defaults); |
159 | - $this->cdns=array (); |
|
159 | + $this->cdns=array(); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | public function addToCompile($jsScript) { |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | * @return string |
409 | 409 | */ |
410 | 410 | public function addClass($element='this', $class='', $immediatly=false) { |
411 | - return $this->js->_genericCallValue('addClass',$element, $class, $immediatly); |
|
411 | + return $this->js->_genericCallValue('addClass', $element, $class, $immediatly); |
|
412 | 412 | } |
413 | 413 | |
414 | 414 | /** |
@@ -418,8 +418,8 @@ discard block |
||
418 | 418 | * @param boolean $immediatly defers the execution if set to false |
419 | 419 | * @return string |
420 | 420 | */ |
421 | - public function after($to, $element, $immediatly=false){ |
|
422 | - return $this->js->_genericCallElement('after',$to, $element, $immediatly); |
|
421 | + public function after($to, $element, $immediatly=false) { |
|
422 | + return $this->js->_genericCallElement('after', $to, $element, $immediatly); |
|
423 | 423 | } |
424 | 424 | |
425 | 425 | /** |
@@ -429,8 +429,8 @@ discard block |
||
429 | 429 | * @param boolean $immediatly defers the execution if set to false |
430 | 430 | * @return string |
431 | 431 | */ |
432 | - public function before($to, $element, $immediatly=false){ |
|
433 | - return $this->js->_genericCallElement('before',$to, $element, $immediatly); |
|
432 | + public function before($to, $element, $immediatly=false) { |
|
433 | + return $this->js->_genericCallElement('before', $to, $element, $immediatly); |
|
434 | 434 | } |
435 | 435 | |
436 | 436 | /** |
@@ -450,8 +450,8 @@ discard block |
||
450 | 450 | * @param string $value |
451 | 451 | * @param boolean $immediatly defers the execution if set to false |
452 | 452 | */ |
453 | - public function val($element='this',$value='',$immediatly=false){ |
|
454 | - return $this->js->_genericCallValue('val',$element,$value,$immediatly); |
|
453 | + public function val($element='this', $value='', $immediatly=false) { |
|
454 | + return $this->js->_genericCallValue('val', $element, $value, $immediatly); |
|
455 | 455 | } |
456 | 456 | |
457 | 457 | /** |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | * @param boolean $immediatly defers the execution if set to false |
462 | 462 | */ |
463 | 463 | public function html($element='this', $value='', $immediatly=false) { |
464 | - return $this->js->_genericCallValue('html',$element, $value, $immediatly); |
|
464 | + return $this->js->_genericCallValue('html', $element, $value, $immediatly); |
|
465 | 465 | } |
466 | 466 | // -------------------------------------------------------------------- |
467 | 467 | /** |
@@ -486,7 +486,7 @@ discard block |
||
486 | 486 | * @return string |
487 | 487 | */ |
488 | 488 | public function append($to, $element, $immediatly=false) { |
489 | - return $this->js->_genericCallElement('append',$to, $element, $immediatly); |
|
489 | + return $this->js->_genericCallElement('append', $to, $element, $immediatly); |
|
490 | 490 | } |
491 | 491 | |
492 | 492 | /** |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | * @return string |
498 | 498 | */ |
499 | 499 | public function prepend($to, $element, $immediatly=false) { |
500 | - return $this->js->_genericCallElement('prepend',$to, $element, $immediatly); |
|
500 | + return $this->js->_genericCallElement('prepend', $to, $element, $immediatly); |
|
501 | 501 | } |
502 | 502 | // -------------------------------------------------------------------- |
503 | 503 | /** |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | * @return string |
549 | 549 | */ |
550 | 550 | public function removeClass($element='this', $class='', $immediatly=false) { |
551 | - return $this->js->_genericCall('removeClass',$element, $class, $immediatly); |
|
551 | + return $this->js->_genericCall('removeClass', $element, $class, $immediatly); |
|
552 | 552 | } |
553 | 553 | // -------------------------------------------------------------------- |
554 | 554 | /** |
@@ -609,7 +609,7 @@ discard block |
||
609 | 609 | * @return string |
610 | 610 | */ |
611 | 611 | public function toggleClass($element='this', $class='', $immediatly=false) { |
612 | - return $this->js->_genericCallValue('toggleClass',$element, $class, $immediatly); |
|
612 | + return $this->js->_genericCallValue('toggleClass', $element, $class, $immediatly); |
|
613 | 613 | } |
614 | 614 | |
615 | 615 | /** |
@@ -656,11 +656,11 @@ discard block |
||
656 | 656 | */ |
657 | 657 | public function compile($view=NULL, $view_var='script_foot', $script_tags=TRUE) { |
658 | 658 | $bs=$this->_bootstrap; |
659 | - if (isset($bs)&&isset($view)) { |
|
659 | + if (isset($bs) && isset($view)) { |
|
660 | 660 | $bs->compileHtml($this, $view); |
661 | 661 | } |
662 | 662 | $sem=$this->_semantic; |
663 | - if (isset($sem)&&isset($view)) { |
|
663 | + if (isset($sem) && isset($view)) { |
|
664 | 664 | $sem->compileHtml($this, $view); |
665 | 665 | } |
666 | 666 | return $this->js->_compile($view, $view_var, $script_tags); |
@@ -740,27 +740,27 @@ discard block |
||
740 | 740 | $json_result=$result->result_array(); |
741 | 741 | } elseif (is_array($result)) { |
742 | 742 | $json_result=$result; |
743 | - } else { |
|
743 | + }else { |
|
744 | 744 | return $this->_prep_args($result); |
745 | 745 | } |
746 | - } else { |
|
746 | + }else { |
|
747 | 747 | return 'null'; |
748 | 748 | } |
749 | 749 | return $this->_create_json($json_result, $match_array_type); |
750 | 750 | } |
751 | 751 | |
752 | 752 | private function _create_json($json_result, $match_array_type) { |
753 | - $json=array (); |
|
753 | + $json=array(); |
|
754 | 754 | $_is_assoc=TRUE; |
755 | - if (!is_array($json_result)&&empty($json_result)) { |
|
755 | + if (!is_array($json_result) && empty($json_result)) { |
|
756 | 756 | show_error("Generate JSON Failed - Illegal key, value pair."); |
757 | 757 | } elseif ($match_array_type) { |
758 | 758 | $_is_assoc=$this->_is_associative_array($json_result); |
759 | 759 | } |
760 | - foreach ( $json_result as $k => $v ) { |
|
760 | + foreach ($json_result as $k => $v) { |
|
761 | 761 | if ($_is_assoc) { |
762 | 762 | $json[]=$this->_prep_args($k, TRUE).':'.$this->generate_json($v, $match_array_type); |
763 | - } else { |
|
763 | + }else { |
|
764 | 764 | $json[]=$this->generate_json($v, $match_array_type); |
765 | 765 | } |
766 | 766 | } |
@@ -775,7 +775,7 @@ discard block |
||
775 | 775 | * @return type |
776 | 776 | */ |
777 | 777 | public function _is_associative_array($arr) { |
778 | - foreach ( array_keys($arr) as $key => $val ) { |
|
778 | + foreach (array_keys($arr) as $key => $val) { |
|
779 | 779 | if ($key!==$val) { |
780 | 780 | return TRUE; |
781 | 781 | } |
@@ -794,11 +794,11 @@ discard block |
||
794 | 794 | return 'null'; |
795 | 795 | } elseif (is_bool($result)) { |
796 | 796 | return ($result===TRUE) ? 'true' : 'false'; |
797 | - } elseif (is_string($result)||$is_key) { |
|
798 | - return '"'.str_replace(array ( |
|
799 | - '\\',"\t","\n","\r",'"','/' |
|
800 | - ), array ( |
|
801 | - '\\\\','\\t','\\n',"\\r",'\"','\/' |
|
797 | + } elseif (is_string($result) || $is_key) { |
|
798 | + return '"'.str_replace(array( |
|
799 | + '\\', "\t", "\n", "\r", '"', '/' |
|
800 | + ), array( |
|
801 | + '\\\\', '\\t', '\\n', "\\r", '\"', '\/' |
|
802 | 802 | ), $result).'"'; |
803 | 803 | } elseif (is_scalar($result)) { |
804 | 804 | return $result; |
@@ -813,8 +813,8 @@ discard block |
||
813 | 813 | * @param string $jsCallback javascript code to execute after the request |
814 | 814 | * @param boolean $hasLoader true for showing ajax loader. default : true |
815 | 815 | */ |
816 | - public function get($url, $responseElement="", $params="{}", $jsCallback=NULL,$hasLoader=true) { |
|
817 | - return $this->js->_get($url, $params, $responseElement, $jsCallback, NULL, $hasLoader,true); |
|
816 | + public function get($url, $responseElement="", $params="{}", $jsCallback=NULL, $hasLoader=true) { |
|
817 | + return $this->js->_get($url, $params, $responseElement, $jsCallback, NULL, $hasLoader, true); |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | /** |
@@ -825,8 +825,8 @@ discard block |
||
825 | 825 | * @param string $jsCallback javascript code to execute after the request |
826 | 826 | * @param boolean $immediatly |
827 | 827 | */ |
828 | - public function json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document",$immediatly=false) { |
|
829 | - return $this->js->_json($url, $method, $params, $jsCallback, $attr, $context,$immediatly); |
|
828 | + public function json($url, $method="get", $params="{}", $jsCallback=NULL, $attr="id", $context="document", $immediatly=false) { |
|
829 | + return $this->js->_json($url, $method, $params, $jsCallback, $attr, $context, $immediatly); |
|
830 | 830 | } |
831 | 831 | |
832 | 832 | /** |
@@ -836,8 +836,8 @@ discard block |
||
836 | 836 | * @param string $url the request address |
837 | 837 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true) |
838 | 838 | */ |
839 | - public function jsonOn($event,$element, $url,$parameters=array()) { |
|
840 | - return $this->js->_jsonOn($event, $element, $url,$parameters); |
|
839 | + public function jsonOn($event, $element, $url, $parameters=array()) { |
|
840 | + return $this->js->_jsonOn($event, $element, $url, $parameters); |
|
841 | 841 | } |
842 | 842 | |
843 | 843 | /** |
@@ -881,8 +881,8 @@ discard block |
||
881 | 881 | * @param string $url the request url |
882 | 882 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","params"=>"{}","method"=>"get","immediatly"=>true) |
883 | 883 | */ |
884 | - public function jsonArrayOn($event,$element,$maskSelector, $url,$parameters=array()) { |
|
885 | - return $this->js->_jsonArrayOn($event,$element,$maskSelector, $url, $parameters); |
|
884 | + public function jsonArrayOn($event, $element, $maskSelector, $url, $parameters=array()) { |
|
885 | + return $this->js->_jsonArrayOn($event, $element, $maskSelector, $url, $parameters); |
|
886 | 886 | } |
887 | 887 | |
888 | 888 | /** |
@@ -894,7 +894,7 @@ discard block |
||
894 | 894 | * @param string $jsCallback javascript code to execute after the request |
895 | 895 | * @param string $attr the html attribute added to the request |
896 | 896 | */ |
897 | - public function getDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL,$attr="id") { |
|
897 | + public function getDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id") { |
|
898 | 898 | return $this->js->_get($url, $params, $responseElement, $jsCallback, $attr, false); |
899 | 899 | } |
900 | 900 | |
@@ -932,8 +932,8 @@ discard block |
||
932 | 932 | * @param string $jsCallback javascript code to execute after the request |
933 | 933 | * @param boolean $hasLoader true for showing ajax loader. default : true |
934 | 934 | */ |
935 | - public function post($url, $responseElement="", $params="{}", $jsCallback=NULL,$hasLoader=true) { |
|
936 | - return $this->js->_post($url, $params, $responseElement, $jsCallback, NULL, $hasLoader,true); |
|
935 | + public function post($url, $responseElement="", $params="{}", $jsCallback=NULL, $hasLoader=true) { |
|
936 | + return $this->js->_post($url, $params, $responseElement, $jsCallback, NULL, $hasLoader, true); |
|
937 | 937 | } |
938 | 938 | |
939 | 939 | /** |
@@ -946,8 +946,8 @@ discard block |
||
946 | 946 | * @param string $jsCallback javascript code to execute after the request |
947 | 947 | * @param boolean $hasLoader true for showing ajax loader. default : true |
948 | 948 | */ |
949 | - public function postDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id",$hasLoader=true) { |
|
950 | - return $this->js->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader,false); |
|
949 | + public function postDeferred($url, $responseElement="", $params="{}", $jsCallback=NULL, $attr="id", $hasLoader=true) { |
|
950 | + return $this->js->_post($url, $params, $responseElement, $jsCallback, $attr, $hasLoader, false); |
|
951 | 951 | } |
952 | 952 | |
953 | 953 | /** |
@@ -961,7 +961,7 @@ discard block |
||
961 | 961 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true) |
962 | 962 | */ |
963 | 963 | public function postOn($event, $element, $url, $params="{}", $responseElement="", $parameters=array()) { |
964 | - return $this->js->_postOn($event, $element, $url, $params, $responseElement, $parameters); |
|
964 | + return $this->js->_postOn($event, $element, $url, $params, $responseElement, $parameters); |
|
965 | 965 | } |
966 | 966 | |
967 | 967 | /** |
@@ -985,8 +985,8 @@ discard block |
||
985 | 985 | * @param string $jsCallback javascript code to execute after the request |
986 | 986 | * @param boolean $hasLoader true for showing ajax loader. default : true |
987 | 987 | */ |
988 | - public function postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL,$hasLoader=true) { |
|
989 | - return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, NULL, $hasLoader,true); |
|
988 | + public function postForm($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $hasLoader=true) { |
|
989 | + return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, NULL, $hasLoader, true); |
|
990 | 990 | } |
991 | 991 | |
992 | 992 | /** |
@@ -999,8 +999,8 @@ discard block |
||
999 | 999 | * @param string $attr the html attribute added to the request |
1000 | 1000 | * @param boolean $hasLoader true for showing ajax loader. default : true |
1001 | 1001 | */ |
1002 | - public function postFormDeferred($url, $form, $responseElement, $validation=false, $jsCallback=NULL,$attr="id",$hasLoader=true) { |
|
1003 | - return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader,false); |
|
1002 | + public function postFormDeferred($url, $form, $responseElement, $validation=false, $jsCallback=NULL, $attr="id", $hasLoader=true) { |
|
1003 | + return $this->js->_postForm($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader, false); |
|
1004 | 1004 | } |
1005 | 1005 | |
1006 | 1006 | /** |
@@ -1014,7 +1014,7 @@ discard block |
||
1014 | 1014 | * @param array $parameters default : array("preventDefault"=>true,"stopPropagation"=>true,"validation"=>false,"jsCallback"=>NULL,"attr"=>"id","hasLoader"=>true,"immediatly"=>true) |
1015 | 1015 | */ |
1016 | 1016 | public function postFormOn($event, $element, $url, $form, $responseElement="", $parameters=array()) { |
1017 | - return $this->js->_postFormOn($event,$element, $url, $form, $responseElement, $parameters); |
|
1017 | + return $this->js->_postFormOn($event, $element, $url, $form, $responseElement, $parameters); |
|
1018 | 1018 | } |
1019 | 1019 | |
1020 | 1020 | /** |
@@ -1069,7 +1069,7 @@ discard block |
||
1069 | 1069 | $preventDefault=false; |
1070 | 1070 | $immediatly=true; |
1071 | 1071 | extract($parameters); |
1072 | - return $this->js->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback,$immediatly); |
|
1072 | + return $this->js->_doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param, $preventDefault, $stopPropagation, $jsCallback, $immediatly); |
|
1073 | 1073 | } |
1074 | 1074 | |
1075 | 1075 | /** |
@@ -1096,7 +1096,7 @@ discard block |
||
1096 | 1096 | $preventDefault=false; |
1097 | 1097 | $immediatly=true; |
1098 | 1098 | extract($parameters); |
1099 | - $script=$this->js->_execOn($element, $event, $js, $preventDefault, $stopPropagation,$immediatly); |
|
1099 | + $script=$this->js->_execOn($element, $event, $js, $preventDefault, $stopPropagation, $immediatly); |
|
1100 | 1100 | return $script; |
1101 | 1101 | } |
1102 | 1102 | |
@@ -1106,7 +1106,7 @@ discard block |
||
1106 | 1106 | |
1107 | 1107 | public function setCDNs($cdns) { |
1108 | 1108 | if (is_array($cdns)===false) { |
1109 | - $cdns=array ( |
|
1109 | + $cdns=array( |
|
1110 | 1110 | $cdns |
1111 | 1111 | ); |
1112 | 1112 | } |
@@ -1117,9 +1117,9 @@ discard block |
||
1117 | 1117 | $hasJQuery=false; |
1118 | 1118 | $hasJQueryUI=false; |
1119 | 1119 | $hasBootstrap=false; |
1120 | - $result=array (); |
|
1121 | - foreach ( $this->cdns as $cdn ) { |
|
1122 | - switch(get_class($cdn)) { |
|
1120 | + $result=array(); |
|
1121 | + foreach ($this->cdns as $cdn) { |
|
1122 | + switch (get_class($cdn)) { |
|
1123 | 1123 | case "Ajax\lib\CDNJQuery": |
1124 | 1124 | $hasJQuery=true; |
1125 | 1125 | $result[0]=$cdn; |
@@ -1137,10 +1137,10 @@ discard block |
||
1137 | 1137 | if ($hasJQuery===false) { |
1138 | 1138 | $result[0]=new CDNJQuery("x"); |
1139 | 1139 | } |
1140 | - if ($hasJQueryUI===false&&isset($this->_ui)) { |
|
1140 | + if ($hasJQueryUI===false && isset($this->_ui)) { |
|
1141 | 1141 | $result[1]=new CDNGuiGen("x", $template); |
1142 | 1142 | } |
1143 | - if ($hasBootstrap===false&&isset($this->_bootstrap)) { |
|
1143 | + if ($hasBootstrap===false && isset($this->_bootstrap)) { |
|
1144 | 1144 | $result[2]=new CDNBootstrap("x"); |
1145 | 1145 | } |
1146 | 1146 | ksort($result); |
@@ -1154,7 +1154,7 @@ discard block |
||
1154 | 1154 | $this->_setDi($di); |
1155 | 1155 | } |
1156 | 1156 | } |
1157 | -} else { |
|
1157 | +}else { |
|
1158 | 1158 | class JsUtils extends _JsUtils { |
1159 | 1159 | |
1160 | 1160 | public function setDi(DiInterface $di) { |