@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | use BaseTrait; |
23 | 23 | protected $_popup=NULL; |
24 | 24 | protected $_dimmer=NULL; |
25 | - protected $_params=array (); |
|
25 | + protected $_params=array(); |
|
26 | 26 | |
27 | 27 | |
28 | 28 | public function __construct($identifier, $tagName="p", $baseClass="ui", $content=NULL) { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @return HtmlDimmer |
79 | 79 | */ |
80 | 80 | public function addDimmer($params=array(), $content=NULL) { |
81 | - $dimmer=new HtmlDimmer("dimmer-" . $this->identifier, $content); |
|
81 | + $dimmer=new HtmlDimmer("dimmer-".$this->identifier, $content); |
|
82 | 82 | $dimmer->setParams($params); |
83 | 83 | $dimmer->setContainer($this); |
84 | 84 | $this->addContent($dimmer); |
@@ -94,12 +94,12 @@ discard block |
||
94 | 94 | */ |
95 | 95 | public function addLabel($label, $before=false, $icon=NULL) { |
96 | 96 | $labelO=$label; |
97 | - if (\is_object($label) === false) { |
|
98 | - $labelO=new HtmlLabel("label-" . $this->identifier, $label); |
|
97 | + if (\is_object($label)===false) { |
|
98 | + $labelO=new HtmlLabel("label-".$this->identifier, $label); |
|
99 | 99 | if (isset($icon)) |
100 | 100 | $labelO->addIcon($icon); |
101 | 101 | } else { |
102 | - $labelO->addToPropertyCtrl("class", "label", array ("label" )); |
|
102 | + $labelO->addToPropertyCtrl("class", "label", array("label")); |
|
103 | 103 | } |
104 | 104 | $this->addContent($labelO, $before); |
105 | 105 | return $labelO; |
@@ -113,9 +113,9 @@ discard block |
||
113 | 113 | * @param string $icon |
114 | 114 | * @return HtmlSemDoubleElement |
115 | 115 | */ |
116 | - public function attachLabel($label,$side=Side::TOP,$direction=Direction::NONE,$icon=NULL){ |
|
117 | - $label=$this->addLabel($label,true,$icon); |
|
118 | - $label->setAttached($side,$direction); |
|
116 | + public function attachLabel($label, $side=Side::TOP, $direction=Direction::NONE, $icon=NULL) { |
|
117 | + $label=$this->addLabel($label, true, $icon); |
|
118 | + $label->setAttached($side, $direction); |
|
119 | 119 | return $this; |
120 | 120 | } |
121 | 121 | |
@@ -123,10 +123,10 @@ discard block |
||
123 | 123 | * Transforms the element into a link |
124 | 124 | * @return HtmlSemDoubleElement |
125 | 125 | */ |
126 | - public function asLink($href=NULL,$target=NULL) { |
|
126 | + public function asLink($href=NULL, $target=NULL) { |
|
127 | 127 | if (isset($href)) |
128 | 128 | $this->setProperty("href", $href); |
129 | - if(isset($target)) |
|
129 | + if (isset($target)) |
|
130 | 130 | $this->setProperty("target", $target); |
131 | 131 | return $this->setTagName("a"); |
132 | 132 | } |
@@ -138,9 +138,9 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function jsShowDimmer($show=true) { |
140 | 140 | $status="hide"; |
141 | - if ($show === true) |
|
141 | + if ($show===true) |
|
142 | 142 | $status="show"; |
143 | - return '$("#.' . $this->identifier . ').dimmer("' . $status . '");'; |
|
143 | + return '$("#.'.$this->identifier.').dimmer("'.$status.'");'; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @see HtmlDoubleElement::run() |
159 | 159 | */ |
160 | 160 | public function run(JsUtils $js) { |
161 | - $this->_bsComponent=$js->semantic()->generic("#" . $this->identifier); |
|
161 | + $this->_bsComponent=$js->semantic()->generic("#".$this->identifier); |
|
162 | 162 | parent::run($js); |
163 | 163 | $this->addEventsOnRun($js); |
164 | 164 | if (isset($this->_popup)) { |
@@ -40,8 +40,9 @@ discard block |
||
40 | 40 | * @param string $popupEvent |
41 | 41 | */ |
42 | 42 | public function setPopupAttributes($variation=NULL, $popupEvent=NULL) { |
43 | - if (isset($this->_popup)) |
|
44 | - $this->_popup->setAttributes($variation, $popupEvent); |
|
43 | + if (isset($this->_popup)) { |
|
44 | + $this->_popup->setAttributes($variation, $popupEvent); |
|
45 | + } |
|
45 | 46 | } |
46 | 47 | |
47 | 48 | /** |
@@ -96,8 +97,9 @@ discard block |
||
96 | 97 | $labelO=$label; |
97 | 98 | if (\is_object($label) === false) { |
98 | 99 | $labelO=new HtmlLabel("label-" . $this->identifier, $label); |
99 | - if (isset($icon)) |
|
100 | - $labelO->addIcon($icon); |
|
100 | + if (isset($icon)) { |
|
101 | + $labelO->addIcon($icon); |
|
102 | + } |
|
101 | 103 | } else { |
102 | 104 | $labelO->addToPropertyCtrl("class", "label", array ("label" )); |
103 | 105 | } |
@@ -124,10 +126,12 @@ discard block |
||
124 | 126 | * @return HtmlSemDoubleElement |
125 | 127 | */ |
126 | 128 | public function asLink($href=NULL,$target=NULL) { |
127 | - if (isset($href)) |
|
128 | - $this->setProperty("href", $href); |
|
129 | - if(isset($target)) |
|
130 | - $this->setProperty("target", $target); |
|
129 | + if (isset($href)) { |
|
130 | + $this->setProperty("href", $href); |
|
131 | + } |
|
132 | + if(isset($target)) { |
|
133 | + $this->setProperty("target", $target); |
|
134 | + } |
|
131 | 135 | return $this->setTagName("a"); |
132 | 136 | } |
133 | 137 | |
@@ -138,8 +142,9 @@ discard block |
||
138 | 142 | */ |
139 | 143 | public function jsShowDimmer($show=true) { |
140 | 144 | $status="hide"; |
141 | - if ($show === true) |
|
142 | - $status="show"; |
|
145 | + if ($show === true) { |
|
146 | + $status="show"; |
|
147 | + } |
|
143 | 148 | return '$("#.' . $this->identifier . ').dimmer("' . $status . '");'; |
144 | 149 | } |
145 | 150 | |
@@ -148,8 +153,9 @@ discard block |
||
148 | 153 | * @see BaseHtml::compile() |
149 | 154 | */ |
150 | 155 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
151 | - if (isset($this->_popup)) |
|
152 | - $this->_popup->compile($js); |
|
156 | + if (isset($this->_popup)) { |
|
157 | + $this->_popup->compile($js); |
|
158 | + } |
|
153 | 159 | return parent::compile($js, $view); |
154 | 160 | } |
155 | 161 |
@@ -17,19 +17,19 @@ discard block |
||
17 | 17 | class HtmlCard extends HtmlSemDoubleElement { |
18 | 18 | |
19 | 19 | public function __construct($identifier) { |
20 | - parent::__construct($identifier, "div", "ui card", array ()); |
|
20 | + parent::__construct($identifier, "div", "ui card", array()); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | private function createContent($content, $baseClass="content") { |
24 | 24 | $count=\sizeof($this->content); |
25 | - $result=new HtmlCardContent("content-" . $count . "-" . $this->identifier, $content); |
|
25 | + $result=new HtmlCardContent("content-".$count."-".$this->identifier, $content); |
|
26 | 26 | $result->setClass($baseClass); |
27 | 27 | return $result; |
28 | 28 | } |
29 | 29 | |
30 | 30 | private function addElementInContent($key, $element) { |
31 | - if (\array_key_exists($key, $this->content) === false) { |
|
32 | - $this->content[$key]=array (); |
|
31 | + if (\array_key_exists($key, $this->content)===false) { |
|
32 | + $this->content[$key]=array(); |
|
33 | 33 | } |
34 | 34 | $this->content[$key][]=$element; |
35 | 35 | return $element; |
@@ -46,14 +46,14 @@ discard block |
||
46 | 46 | |
47 | 47 | public function addHeader($header, $niveau=4, $type="page") { |
48 | 48 | if (!$header instanceof HtmlHeader) { |
49 | - $header=new HtmlHeader("header-" . $this->identifier, $niveau, $header, $type); |
|
49 | + $header=new HtmlHeader("header-".$this->identifier, $niveau, $header, $type); |
|
50 | 50 | } |
51 | 51 | $this->content["header"]=$this->createContent($header); |
52 | 52 | } |
53 | 53 | |
54 | 54 | public function addImage($image, $title="") { |
55 | 55 | if (!$image instanceof HtmlImage) { |
56 | - $image=new HtmlImage("image-" . $this->identifier, $image, $title); |
|
56 | + $image=new HtmlImage("image-".$this->identifier, $image, $title); |
|
57 | 57 | } |
58 | 58 | $image->setClass("image"); |
59 | 59 | return $this->addElementInContent("content", $image); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | public function addReveal($visibleContent, $hiddenContent=NULL, $type=RevealType::FADE, $attributeType=NULL) { |
63 | 63 | $reveal=$visibleContent; |
64 | 64 | if (!$visibleContent instanceof HtmlReveal) { |
65 | - $reveal=new HtmlReveal("reveral-" . $this->identifier, $visibleContent, $hiddenContent, $type, $attributeType); |
|
65 | + $reveal=new HtmlReveal("reveral-".$this->identifier, $visibleContent, $hiddenContent, $type, $attributeType); |
|
66 | 66 | } |
67 | 67 | return $this->addElementInContent("content", $reveal); |
68 | 68 | } |
@@ -91,8 +91,8 @@ discard block |
||
91 | 91 | * @param boolean $asIcons |
92 | 92 | * @return \Ajax\semantic\html\elements\HtmlButtonGroups |
93 | 93 | */ |
94 | - public function addButtons($elements=array(), $asIcons=false){ |
|
95 | - $buttons=new HtmlButtonGroups("buttons-".$this->identifier,$elements,$asIcons); |
|
94 | + public function addButtons($elements=array(), $asIcons=false) { |
|
95 | + $buttons=new HtmlButtonGroups("buttons-".$this->identifier, $elements, $asIcons); |
|
96 | 96 | $this->addElementInContent("content", $buttons); |
97 | 97 | return $buttons; |
98 | 98 | } |
@@ -101,12 +101,12 @@ discard block |
||
101 | 101 | |
102 | 102 | public function addCardHeaderContent($header, $metas=array(), $description=NULL) { |
103 | 103 | $count=\sizeof($this->content); |
104 | - return $this->addElementInContent("content", new HtmlCardHeaderContent("content-" . $count . "-" . $this->identifier, $header, $metas, $description)); |
|
104 | + return $this->addElementInContent("content", new HtmlCardHeaderContent("content-".$count."-".$this->identifier, $header, $metas, $description)); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | public function addCardContent($content=array()) { |
108 | 108 | $count=\sizeof($this->content); |
109 | - return $this->addElementInContent("content", new HtmlCardContent("content-" . $count . "-" . $this->identifier, $content)); |
|
109 | + return $this->addElementInContent("content", new HtmlCardContent("content-".$count."-".$this->identifier, $content)); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | public function getCardContent($index=NULL) { |
@@ -132,13 +132,13 @@ discard block |
||
132 | 132 | * @see HtmlSemDoubleElement::compile() |
133 | 133 | */ |
134 | 134 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
135 | - $this->content=JArray::sortAssociative($this->content, [ "header","image","content","extra-content" ]); |
|
135 | + $this->content=JArray::sortAssociative($this->content, ["header", "image", "content", "extra-content"]); |
|
136 | 136 | return parent::compile($js, $view); |
137 | 137 | } |
138 | 138 | |
139 | - public function asLink($href="",$target=NULL) { |
|
139 | + public function asLink($href="", $target=NULL) { |
|
140 | 140 | $this->addToProperty("class", "link"); |
141 | - if ($href !== "") { |
|
141 | + if ($href!=="") { |
|
142 | 142 | $this->setProperty("href", $href); |
143 | 143 | if (isset($target)) |
144 | 144 | $this->setProperty("target", $target); |
@@ -37,8 +37,9 @@ discard block |
||
37 | 37 | |
38 | 38 | private function getPart($part, $index=NULL) { |
39 | 39 | if (\array_key_exists($part, $this->content)) { |
40 | - if (isset($index)) |
|
41 | - return $this->content[$part][$index]; |
|
40 | + if (isset($index)) { |
|
41 | + return $this->content[$part][$index]; |
|
42 | + } |
|
42 | 43 | return $this->content[$part]; |
43 | 44 | } |
44 | 45 | return NULL; |
@@ -140,8 +141,9 @@ discard block |
||
140 | 141 | $this->addToProperty("class", "link"); |
141 | 142 | if ($href !== "") { |
142 | 143 | $this->setProperty("href", $href); |
143 | - if (isset($target)) |
|
144 | - $this->setProperty("target", $target); |
|
144 | + if (isset($target)) { |
|
145 | + $this->setProperty("target", $target); |
|
146 | + } |
|
145 | 147 | } |
146 | 148 | return $this; |
147 | 149 | } |
@@ -14,8 +14,9 @@ |
||
14 | 14 | } |
15 | 15 | |
16 | 16 | public function compile(JsUtils $js=null) { |
17 | - if ($js==null) |
|
18 | - return; |
|
17 | + if ($js==null) { |
|
18 | + return; |
|
19 | + } |
|
19 | 20 | $params="{}"; |
20 | 21 | $jsCallback=NULL; |
21 | 22 | $attr="id"; |
@@ -28,27 +28,27 @@ |
||
28 | 28 | $method="get"; |
29 | 29 | extract($this->parameters); |
30 | 30 | $result=$this->_eventPreparing($preventDefault, $stopPropagation); |
31 | - switch($this->method) { |
|
31 | + switch ($this->method) { |
|
32 | 32 | case "get": |
33 | - $result.=$js->getDeferred($url, $responseElement, $params, $jsCallback, $attr,$jqueryDone,$ajaxTransition); |
|
33 | + $result.=$js->getDeferred($url, $responseElement, $params, $jsCallback, $attr, $jqueryDone, $ajaxTransition); |
|
34 | 34 | break; |
35 | 35 | case "post": |
36 | - $result.=$js->postDeferred($url, $responseElement, $params, $jsCallback, $attr,$hasLoader,$jqueryDone,$ajaxTransition); |
|
36 | + $result.=$js->postDeferred($url, $responseElement, $params, $jsCallback, $attr, $hasLoader, $jqueryDone, $ajaxTransition); |
|
37 | 37 | break; |
38 | 38 | case "postForm": |
39 | - $result.=$js->postFormDeferred($url, $form, $responseElement, $validation, $jsCallback, $attr,$hasLoader,$jqueryDone,$ajaxTransition); |
|
39 | + $result.=$js->postFormDeferred($url, $form, $responseElement, $validation, $jsCallback, $attr, $hasLoader, $jqueryDone, $ajaxTransition); |
|
40 | 40 | break; |
41 | 41 | case "json": |
42 | - $result.=$js->jsonDeferred($url,$method,$params,$jsCallback); |
|
42 | + $result.=$js->jsonDeferred($url, $method, $params, $jsCallback); |
|
43 | 43 | break; |
44 | 44 | case "jsonArray": |
45 | - $result.=$js->jsonArrayDeferred($modelSelector, $url,$method,$params,$jsCallback); |
|
45 | + $result.=$js->jsonArrayDeferred($modelSelector, $url, $method, $params, $jsCallback); |
|
46 | 46 | break; |
47 | 47 | } |
48 | 48 | return $result; |
49 | 49 | } |
50 | 50 | |
51 | - protected function _eventPreparing($preventDefault,$stopPropagation){ |
|
51 | + protected function _eventPreparing($preventDefault, $stopPropagation) { |
|
52 | 52 | $result=""; |
53 | 53 | if ($preventDefault===true) { |
54 | 54 | $result.=Javascript::$preventDefault; |
@@ -33,42 +33,42 @@ discard block |
||
33 | 33 | * @param string|HtmlSemDoubleElement $header |
34 | 34 | * @return \Ajax\semantic\html\collections\HtmlMessage |
35 | 35 | */ |
36 | - public function addHeader($header){ |
|
36 | + public function addHeader($header) { |
|
37 | 37 | $headerO=$header; |
38 | - if(\is_string($header)){ |
|
39 | - $headerO=new HtmlSemDoubleElement("header-".$this->identifier,"div"); |
|
38 | + if (\is_string($header)) { |
|
39 | + $headerO=new HtmlSemDoubleElement("header-".$this->identifier, "div"); |
|
40 | 40 | $headerO->setClass("header"); |
41 | 41 | $headerO->setContent($header); |
42 | 42 | } |
43 | - return $this->addContent($headerO,true); |
|
43 | + return $this->addContent($headerO, true); |
|
44 | 44 | } |
45 | 45 | |
46 | - public function setHeader($header){ |
|
46 | + public function setHeader($header) { |
|
47 | 47 | return $this->addHeader($header); |
48 | 48 | } |
49 | 49 | |
50 | - public function addList($elements,$ordered=false){ |
|
51 | - $list=new HtmlList("list-".$this->identifier,$elements); |
|
50 | + public function addList($elements, $ordered=false) { |
|
51 | + $list=new HtmlList("list-".$this->identifier, $elements); |
|
52 | 52 | $list->setOrdered($ordered); |
53 | 53 | $list->setClass("ui list"); |
54 | 54 | $this->addContent($list); |
55 | 55 | } |
56 | 56 | |
57 | - public function setIcon($icon){ |
|
57 | + public function setIcon($icon) { |
|
58 | 58 | $this->addToProperty("class", "icon"); |
59 | - $this->wrapContent("<div class='content'>","</div>"); |
|
59 | + $this->wrapContent("<div class='content'>", "</div>"); |
|
60 | 60 | $this->icon=new HtmlIcon("icon-".$this->identifier, $icon); |
61 | 61 | return $this; |
62 | 62 | } |
63 | 63 | |
64 | - public function addLoader($loaderIcon="notched circle"){ |
|
64 | + public function addLoader($loaderIcon="notched circle") { |
|
65 | 65 | $this->setIcon($loaderIcon); |
66 | 66 | $this->icon->addToIcon("loading"); |
67 | 67 | return $this; |
68 | 68 | } |
69 | 69 | |
70 | - public function setDismissable($dismiss=true){ |
|
71 | - if($dismiss===true) |
|
70 | + public function setDismissable($dismiss=true) { |
|
71 | + if ($dismiss===true) |
|
72 | 72 | $this->close=new HtmlIcon("close-".$this->identifier, "close"); |
73 | 73 | else |
74 | 74 | $this->close=NULL; |
@@ -79,41 +79,41 @@ discard block |
||
79 | 79 | * {@inheritDoc} |
80 | 80 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
81 | 81 | */ |
82 | - public function run(JsUtils $js){ |
|
82 | + public function run(JsUtils $js) { |
|
83 | 83 | parent::run($js); |
84 | - if(isset($this->close)){ |
|
84 | + if (isset($this->close)) { |
|
85 | 85 | $js->execOn("click", "#".$this->identifier." .close", "$(this).closest('.message').transition({$this->_closeTransition})"); |
86 | 86 | } |
87 | - if(isset($this->_timeout)){ |
|
88 | - $js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});",true); |
|
87 | + if (isset($this->_timeout)) { |
|
88 | + $js->exec("setTimeout(function() { $('#{$this->identifier}').transition({$this->_closeTransition}); }, {$this->_timeout});", true); |
|
89 | 89 | } |
90 | 90 | } |
91 | 91 | |
92 | - public function setState($visible=true){ |
|
93 | - $visible=($visible===true)?"visible":"hidden"; |
|
94 | - return $this->addToPropertyCtrl("class", $visible, array("visible","hidden")); |
|
92 | + public function setState($visible=true) { |
|
93 | + $visible=($visible===true) ? "visible" : "hidden"; |
|
94 | + return $this->addToPropertyCtrl("class", $visible, array("visible", "hidden")); |
|
95 | 95 | } |
96 | 96 | |
97 | - public function setVariation($value="floating"){ |
|
98 | - return $this->addToPropertyCtrl("class", $value, array("floating","compact")); |
|
97 | + public function setVariation($value="floating") { |
|
98 | + return $this->addToPropertyCtrl("class", $value, array("floating", "compact")); |
|
99 | 99 | } |
100 | 100 | |
101 | - public function setStyle($style){ |
|
101 | + public function setStyle($style) { |
|
102 | 102 | return $this->addToPropertyCtrl("class", $style, Style::getConstants()); |
103 | 103 | } |
104 | 104 | |
105 | - public function setError(){ |
|
105 | + public function setError() { |
|
106 | 106 | return $this->setStyle("error"); |
107 | 107 | } |
108 | 108 | |
109 | - public function setWarning(){ |
|
109 | + public function setWarning() { |
|
110 | 110 | return $this->setStyle("warning"); |
111 | 111 | } |
112 | 112 | |
113 | - public function setMessage($message){ |
|
114 | - if(\is_array($this->content)){ |
|
113 | + public function setMessage($message) { |
|
114 | + if (\is_array($this->content)) { |
|
115 | 115 | $this->content[\sizeof($this->content)-1]=$message; |
116 | - }else |
|
116 | + } else |
|
117 | 117 | $this->setContent($message); |
118 | 118 | } |
119 | 119 |
@@ -68,10 +68,11 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | public function setDismissable($dismiss=true){ |
71 | - if($dismiss===true) |
|
72 | - $this->close=new HtmlIcon("close-".$this->identifier, "close"); |
|
73 | - else |
|
74 | - $this->close=NULL; |
|
71 | + if($dismiss===true) { |
|
72 | + $this->close=new HtmlIcon("close-".$this->identifier, "close"); |
|
73 | + } else { |
|
74 | + $this->close=NULL; |
|
75 | + } |
|
75 | 76 | return $this; |
76 | 77 | } |
77 | 78 | |
@@ -113,8 +114,9 @@ discard block |
||
113 | 114 | public function setMessage($message){ |
114 | 115 | if(\is_array($this->content)){ |
115 | 116 | $this->content[\sizeof($this->content)-1]=$message; |
116 | - }else |
|
117 | - $this->setContent($message); |
|
117 | + } else { |
|
118 | + $this->setContent($message); |
|
119 | + } |
|
118 | 120 | } |
119 | 121 | |
120 | 122 | public function setTimeout($_timeout) { |
@@ -20,7 +20,7 @@ |
||
20 | 20 | $this->params["onUnchecked"]="%function(){".$value."}%"; |
21 | 21 | } |
22 | 22 | |
23 | - public function setOnChange($value){ |
|
23 | + public function setOnChange($value) { |
|
24 | 24 | $this->params["onChange"]="%function(){".$value."}%"; |
25 | 25 | } |
26 | 26 | //TODO other events implementation |
@@ -271,8 +271,9 @@ discard block |
||
271 | 271 | $result= $this->getBody()->_addRow($result); |
272 | 272 | } |
273 | 273 | if(isset($this->_afterCompileEvents["onNewRow"])){ |
274 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
275 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
274 | + if(\is_callable($this->_afterCompileEvents["onNewRow"])) { |
|
275 | + $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
276 | + } |
|
276 | 277 | } |
277 | 278 | return $result; |
278 | 279 | } |
@@ -293,8 +294,9 @@ discard block |
||
293 | 294 | |
294 | 295 | public function run(JsUtils $js){ |
295 | 296 | $result= parent::run($js); |
296 | - if(isset($this->_footer)) |
|
297 | - $this->_footer->run($js); |
|
297 | + if(isset($this->_footer)) { |
|
298 | + $this->_footer->run($js); |
|
299 | + } |
|
298 | 300 | return $result; |
299 | 301 | } |
300 | 302 |
@@ -27,10 +27,10 @@ discard block |
||
27 | 27 | |
28 | 28 | public function __construct($identifier, $rowCount, $colCount) { |
29 | 29 | parent::__construct($identifier, "table", "ui table"); |
30 | - $this->content=array (); |
|
30 | + $this->content=array(); |
|
31 | 31 | $this->setRowCount($rowCount, $colCount); |
32 | - $this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ]; |
|
33 | - $this->_compileParts=["thead","tbody","tfoot"]; |
|
32 | + $this->_variations=[Variation::CELLED, Variation::PADDED, Variation::COMPACT]; |
|
33 | + $this->_compileParts=["thead", "tbody", "tfoot"]; |
|
34 | 34 | $this->_afterCompileEvents=[]; |
35 | 35 | } |
36 | 36 | |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | * @return HtmlTableContent |
49 | 49 | */ |
50 | 50 | public function getPart($key) { |
51 | - if (\array_key_exists($key, $this->content) === false) { |
|
51 | + if (\array_key_exists($key, $this->content)===false) { |
|
52 | 52 | $this->content[$key]=new HtmlTableContent("", $key); |
53 | - if ($key !== "tbody") { |
|
53 | + if ($key!=="tbody") { |
|
54 | 54 | $this->content[$key]->setRowCount(1, $this->_colCount); |
55 | 55 | } |
56 | 56 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @return boolean |
96 | 96 | */ |
97 | 97 | public function hasPart($key) { |
98 | - return \array_key_exists($key, $this->content) === true; |
|
98 | + return \array_key_exists($key, $this->content)===true; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | |
231 | 231 | private function colAlign($colIndex, $function) { |
232 | 232 | if (\is_array($colIndex)) { |
233 | - foreach ( $colIndex as $cIndex ) { |
|
233 | + foreach ($colIndex as $cIndex) { |
|
234 | 234 | $this->colAlign($cIndex, $function); |
235 | 235 | } |
236 | 236 | } else { |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | * @see HtmlSemDoubleElement::compile() |
292 | 292 | */ |
293 | 293 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
294 | - if(\sizeof($this->_compileParts)<3){ |
|
294 | + if (\sizeof($this->_compileParts)<3) { |
|
295 | 295 | $this->_template="%content%"; |
296 | 296 | $this->refresh(); |
297 | 297 | } |
@@ -301,9 +301,9 @@ discard block |
||
301 | 301 | |
302 | 302 | protected function compile_once(JsUtils $js=NULL, &$view=NULL) { |
303 | 303 | if ($this->propertyContains("class", "sortable")) { |
304 | - $this->addEvent("execute", "$('#" . $this->identifier . "').tablesort().data('tablesort').sort($('th.default-sort'));"); |
|
304 | + $this->addEvent("execute", "$('#".$this->identifier."').tablesort().data('tablesort').sort($('th.default-sort'));"); |
|
305 | 305 | } |
306 | - if(isset($this->_activeRowSelector)){ |
|
306 | + if (isset($this->_activeRowSelector)) { |
|
307 | 307 | $this->_activeRowSelector->compile(); |
308 | 308 | } |
309 | 309 | } |
@@ -317,13 +317,13 @@ discard block |
||
317 | 317 | public function fromDatabaseObject($object, $function) { |
318 | 318 | $result=$function($object); |
319 | 319 | if (\is_array($result)) { |
320 | - $result= $this->addRow($function($object)); |
|
320 | + $result=$this->addRow($function($object)); |
|
321 | 321 | } else { |
322 | - $result= $this->getBody()->_addRow($result); |
|
322 | + $result=$this->getBody()->_addRow($result); |
|
323 | 323 | } |
324 | - if(isset($this->_afterCompileEvents["onNewRow"])){ |
|
325 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
326 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
324 | + if (isset($this->_afterCompileEvents["onNewRow"])) { |
|
325 | + if (\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
326 | + $this->_afterCompileEvents["onNewRow"]($result, $object); |
|
327 | 327 | } |
328 | 328 | return $result; |
329 | 329 | } |
@@ -338,14 +338,14 @@ discard block |
||
338 | 338 | return $this; |
339 | 339 | } |
340 | 340 | |
341 | - public function refresh(){ |
|
341 | + public function refresh() { |
|
342 | 342 | $this->_footer=$this->getFooter(); |
343 | 343 | $this->addEvent("execute", '$("#'.$this->identifier.' tfoot").replaceWith("'.\addslashes($this->_footer).'");'); |
344 | 344 | } |
345 | 345 | |
346 | - public function run(JsUtils $js){ |
|
347 | - $result= parent::run($js); |
|
348 | - if(isset($this->_footer)) |
|
346 | + public function run(JsUtils $js) { |
|
347 | + $result=parent::run($js); |
|
348 | + if (isset($this->_footer)) |
|
349 | 349 | $this->_footer->run($js); |
350 | 350 | return $result; |
351 | 351 | } |
@@ -368,17 +368,17 @@ discard block |
||
368 | 368 | * @param boolean $multiple |
369 | 369 | * @return HtmlTable |
370 | 370 | */ |
371 | - public function setActiveRowSelector($class="active",$event="click",$multiple=false){ |
|
372 | - $this->_activeRowSelector=new ActiveRow($this,$class,$event,$multiple); |
|
371 | + public function setActiveRowSelector($class="active", $event="click", $multiple=false) { |
|
372 | + $this->_activeRowSelector=new ActiveRow($this, $class, $event, $multiple); |
|
373 | 373 | return $this; |
374 | 374 | } |
375 | 375 | |
376 | - public function hideColumn($colIndex){ |
|
377 | - if($this->hasPart("thead")){ |
|
376 | + public function hideColumn($colIndex) { |
|
377 | + if ($this->hasPart("thead")) { |
|
378 | 378 | $this->getHeader()->hideColumn($colIndex); |
379 | 379 | } |
380 | 380 | $this->getBody()->hideColumn($colIndex); |
381 | - if($this->hasPart("tfoot")){ |
|
381 | + if ($this->hasPart("tfoot")) { |
|
382 | 382 | $this->getFooter()->hideColumn($colIndex); |
383 | 383 | } |
384 | 384 | return $this; |
@@ -19,28 +19,28 @@ discard block |
||
19 | 19 | |
20 | 20 | public function __construct(JsUtils $js=NULL) { |
21 | 21 | parent::__construct($js); |
22 | - $this->events=array (); |
|
22 | + $this->events=array(); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | protected function compileEvents() { |
26 | - foreach ( $this->events as $event => $jsCode ) { |
|
26 | + foreach ($this->events as $event => $jsCode) { |
|
27 | 27 | $itemSelector=JString::getValueBetween($event); |
28 | 28 | //echo $itemSelector.":::".$jsCode."<br>"; |
29 | - if($event=="execute"){ |
|
29 | + if ($event=="execute") { |
|
30 | 30 | $this->jquery_code_for_compile []=$jsCode; |
31 | - }else if($event=="beforeExecute"){ |
|
31 | + } else if ($event=="beforeExecute") { |
|
32 | 32 | \array_unshift($this->jquery_code_for_compile, $jsCode); |
33 | - }else{ |
|
33 | + } else { |
|
34 | 34 | $selector=$this->_createSelector($itemSelector, $this->attachTo); |
35 | 35 | $this->jquery_code_for_compile []="$( \"".$selector."\" ).on(\"".$event."\" , function( event, data ) {".$jsCode."});"; |
36 | 36 | } |
37 | 37 | } |
38 | 38 | } |
39 | 39 | |
40 | - protected function _createSelector($itemSelector,$selector){ |
|
41 | - if(!isset($itemSelector)) |
|
40 | + protected function _createSelector($itemSelector, $selector) { |
|
41 | + if (!isset($itemSelector)) |
|
42 | 42 | $itemSelector=$this->itemSelector; |
43 | - if(isset($itemSelector) && $itemSelector!=="") |
|
43 | + if (isset($itemSelector) && $itemSelector!=="") |
|
44 | 44 | $selector.=" ".$itemSelector; |
45 | 45 | return $selector; |
46 | 46 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | $result=implode("\n", $this->jquery_code_for_compile); |
50 | 50 | $result=str_ireplace("\"%", "", $result); |
51 | 51 | $result=str_ireplace("%\"", "", $result); |
52 | - $result=str_replace(array ( |
|
52 | + $result=str_replace(array( |
|
53 | 53 | "\\n", |
54 | 54 | "\\r", |
55 | 55 | "\\t" |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | public function getScript() { |
61 | 61 | $allParams=$this->params; |
62 | - $this->jquery_code_for_compile=array (); |
|
62 | + $this->jquery_code_for_compile=array(); |
|
63 | 63 | $this->jquery_code_for_compile []="$( \"".$this->attachTo."\" ).{$this->uiName}(".$this->getParamsAsJSON($allParams).");"; |
64 | 64 | $this->compileEvents(); |
65 | 65 | return $this->compileJQueryCode(); |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | //echo $itemSelector.":::".$jsCode."<br>"; |
29 | 29 | if($event=="execute"){ |
30 | 30 | $this->jquery_code_for_compile []=$jsCode; |
31 | - }else if($event=="beforeExecute"){ |
|
31 | + } else if($event=="beforeExecute"){ |
|
32 | 32 | \array_unshift($this->jquery_code_for_compile, $jsCode); |
33 | - }else{ |
|
33 | + } else{ |
|
34 | 34 | $selector=$this->_createSelector($itemSelector, $this->attachTo); |
35 | 35 | $this->jquery_code_for_compile []="$( \"".$selector."\" ).on(\"".$event."\" , function( event, data ) {".$jsCode."});"; |
36 | 36 | } |
@@ -38,10 +38,12 @@ discard block |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | protected function _createSelector($itemSelector,$selector){ |
41 | - if(!isset($itemSelector)) |
|
42 | - $itemSelector=$this->itemSelector; |
|
43 | - if(isset($itemSelector) && $itemSelector!=="") |
|
44 | - $selector.=" ".$itemSelector; |
|
41 | + if(!isset($itemSelector)) { |
|
42 | + $itemSelector=$this->itemSelector; |
|
43 | + } |
|
44 | + if(isset($itemSelector) && $itemSelector!=="") { |
|
45 | + $selector.=" ".$itemSelector; |
|
46 | + } |
|
45 | 47 | return $selector; |
46 | 48 | } |
47 | 49 | |
@@ -84,8 +86,9 @@ discard block |
||
84 | 86 | |
85 | 87 | protected function setParamCtrl($key, $value, $typeCtrl) { |
86 | 88 | if (\is_array($typeCtrl)) { |
87 | - if (array_search($value, $typeCtrl)===false) |
|
88 | - throw new \Exception("La valeur passée a propriété `".$key."` pour le composant `".$this->uiName."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
89 | + if (array_search($value, $typeCtrl)===false) { |
|
90 | + throw new \Exception("La valeur passée a propriété `".$key."` pour le composant `".$this->uiName."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
91 | + } |
|
89 | 92 | } else { |
90 | 93 | if (!$typeCtrl($value)) { |
91 | 94 | throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$key." au composant ".$this->uiName); |
@@ -2,63 +2,63 @@ |
||
2 | 2 | namespace Ajax\service; |
3 | 3 | class JString { |
4 | 4 | |
5 | - public static function contains($hay,$needle){ |
|
6 | - return strpos($hay, $needle) !== false; |
|
5 | + public static function contains($hay, $needle) { |
|
6 | + return strpos($hay, $needle)!==false; |
|
7 | 7 | } |
8 | 8 | public static function startswith($hay, $needle) { |
9 | - return substr($hay, 0, strlen($needle)) === $needle; |
|
9 | + return substr($hay, 0, strlen($needle))===$needle; |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | public static function endswith($hay, $needle) { |
13 | - return substr($hay, -strlen($needle)) === $needle; |
|
13 | + return substr($hay, -strlen($needle))===$needle; |
|
14 | 14 | } |
15 | 15 | |
16 | - public static function isNull($s){ |
|
16 | + public static function isNull($s) { |
|
17 | 17 | return (!isset($s) || NULL===$s || ""===$s); |
18 | 18 | } |
19 | - public static function isNotNull($s){ |
|
19 | + public static function isNotNull($s) { |
|
20 | 20 | return (isset($s) && NULL!==$s && ""!==$s); |
21 | 21 | } |
22 | 22 | |
23 | - public static function isBoolean($value){ |
|
23 | + public static function isBoolean($value) { |
|
24 | 24 | return \is_bool($value) || $value==1 || $value==0; |
25 | 25 | } |
26 | 26 | |
27 | - public static function isBooleanTrue($value){ |
|
27 | + public static function isBooleanTrue($value) { |
|
28 | 28 | return $value==1 || $value; |
29 | 29 | } |
30 | 30 | |
31 | - public static function isBooleanFalse($value){ |
|
31 | + public static function isBooleanFalse($value) { |
|
32 | 32 | return $value==0 || !$value; |
33 | 33 | } |
34 | 34 | |
35 | - public static function camelCaseToSeparated($input,$separator=" "){ |
|
35 | + public static function camelCaseToSeparated($input, $separator=" ") { |
|
36 | 36 | return strtolower(preg_replace('/(?<!^)[A-Z]/', $separator.'$0', $input)); |
37 | 37 | } |
38 | 38 | |
39 | - public static function replaceAtFirst($subject,$from, $to){ |
|
40 | - $from = '/\A'.preg_quote($from, '/').'/'; |
|
39 | + public static function replaceAtFirst($subject, $from, $to) { |
|
40 | + $from='/\A'.preg_quote($from, '/').'/'; |
|
41 | 41 | return \preg_replace($from, $to, $subject, 1); |
42 | 42 | } |
43 | 43 | |
44 | - public static function replaceAtLast($subject,$from, $to){ |
|
45 | - $from = '/'.preg_quote($from, '/').'\z/'; |
|
44 | + public static function replaceAtLast($subject, $from, $to) { |
|
45 | + $from='/'.preg_quote($from, '/').'\z/'; |
|
46 | 46 | return \preg_replace($from, $to, $subject, 1); |
47 | 47 | } |
48 | 48 | |
49 | - public static function replaceAtFirstAndLast($subject,$fromFirst,$toFirst,$fromLast,$toLast){ |
|
49 | + public static function replaceAtFirstAndLast($subject, $fromFirst, $toFirst, $fromLast, $toLast) { |
|
50 | 50 | $s=self::replaceAtFirst($subject, $fromFirst, $toFirst); |
51 | 51 | return self::replaceAtLast($s, $fromLast, $toLast); |
52 | 52 | } |
53 | 53 | |
54 | - public static function getValueBetween(&$str,$before="{{",$after="}}"){ |
|
54 | + public static function getValueBetween(&$str, $before="{{", $after="}}") { |
|
55 | 55 | $matches=[]; |
56 | 56 | $result=null; |
57 | 57 | $_before=\preg_quote($before); |
58 | 58 | $_after=\preg_quote($after); |
59 | - if(\preg_match('/'.$_before.'(.*?)'.$_after.'/s', $str, $matches)===1){ |
|
59 | + if (\preg_match('/'.$_before.'(.*?)'.$_after.'/s', $str, $matches)===1) { |
|
60 | 60 | $result=$matches[1]; |
61 | - $str=\str_replace($before.$result.$after,"", $str); |
|
61 | + $str=\str_replace($before.$result.$after, "", $str); |
|
62 | 62 | } |
63 | 63 | return $result; |
64 | 64 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @param string $event |
22 | 22 | * @param boolean $multiple |
23 | 23 | */ |
24 | - public function __construct($table,$class="active",$event="click",$multiple=false){ |
|
24 | + public function __construct($table, $class="active", $event="click", $multiple=false) { |
|
25 | 25 | $this->table=$table; |
26 | 26 | $this->class=$class; |
27 | 27 | $this->event=$event; |
@@ -55,12 +55,12 @@ discard block |
||
55 | 55 | return $this; |
56 | 56 | } |
57 | 57 | |
58 | - public function compile(){ |
|
58 | + public function compile() { |
|
59 | 59 | $multiple=""; |
60 | - if(!$this->multiple){ |
|
60 | + if (!$this->multiple) { |
|
61 | 61 | $multiple="$(this).closest('tbody').children('tr').removeClass('".$this->class."');"; |
62 | 62 | } |
63 | - $this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');",false,false); |
|
63 | + $this->table->onRow($this->event, $multiple."$(this).toggleClass('".$this->class."');", false, false); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | } |
67 | 67 | \ No newline at end of file |