@@ -38,17 +38,17 @@ discard block |
||
38 | 38 | return $this->getHtmlCk()->attachEvents($events); |
39 | 39 | } |
40 | 40 | |
41 | - public function getField(){ |
|
41 | + public function getField() { |
|
42 | 42 | return $this->content["field"]; |
43 | 43 | } |
44 | 44 | |
45 | - public function getHtmlCk(){ |
|
45 | + public function getHtmlCk() { |
|
46 | 46 | return $this->content["field"]; |
47 | 47 | } |
48 | 48 | |
49 | - public function getDataField(){ |
|
50 | - $field= $this->getField(); |
|
51 | - if($field instanceof AbstractCheckbox) |
|
49 | + public function getDataField() { |
|
50 | + $field=$this->getField(); |
|
51 | + if ($field instanceof AbstractCheckbox) |
|
52 | 52 | $field=$field->getField(); |
53 | 53 | return $field; |
54 | 54 | } |
@@ -58,10 +58,10 @@ discard block |
||
58 | 58 | * @param boolean $value |
59 | 59 | * @return HtmlFormField |
60 | 60 | */ |
61 | - public function setChecked($value=true){ |
|
62 | - if($value===true){ |
|
61 | + public function setChecked($value=true) { |
|
62 | + if ($value===true) { |
|
63 | 63 | $this->getDataField()->setProperty("checked", "checked"); |
64 | - }else{ |
|
64 | + } else { |
|
65 | 65 | $this->getDataField()->removeProperty("checked"); |
66 | 66 | } |
67 | 67 | return $this; |
@@ -8,16 +8,16 @@ |
||
8 | 8 | class HtmlFormInput extends HtmlFormField { |
9 | 9 | use TextFieldsTrait; |
10 | 10 | |
11 | - public function __construct($identifier, $label=NULL,$type="text",$value=NULL,$placeholder=NULL) { |
|
12 | - if(!isset($placeholder) && $type==="text") |
|
11 | + public function __construct($identifier, $label=NULL, $type="text", $value=NULL, $placeholder=NULL) { |
|
12 | + if (!isset($placeholder) && $type==="text") |
|
13 | 13 | $placeholder=$label; |
14 | - parent::__construct("field-".$identifier, new HtmlInput($identifier,$type,$value,$placeholder), $label); |
|
14 | + parent::__construct("field-".$identifier, new HtmlInput($identifier, $type, $value, $placeholder), $label); |
|
15 | 15 | $this->_identifier=$identifier; |
16 | 16 | } |
17 | 17 | |
18 | - public function getDataField(){ |
|
19 | - $field= $this->getField(); |
|
20 | - if($field instanceof HtmlInput) |
|
18 | + public function getDataField() { |
|
19 | + $field=$this->getField(); |
|
20 | + if ($field instanceof HtmlInput) |
|
21 | 21 | $field=$field->getDataField(); |
22 | 22 | return $field; |
23 | 23 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | public function setFocusable($value=true) { |
59 | - if ($value === true) |
|
59 | + if ($value===true) |
|
60 | 60 | $this->setProperty("tabindex", "0"); |
61 | 61 | else { |
62 | 62 | $this->removeProperty("tabindex"); |
@@ -66,14 +66,14 @@ discard block |
||
66 | 66 | |
67 | 67 | public function setAnimated($content, $animation="") { |
68 | 68 | $this->setTagName("div"); |
69 | - $this->addToProperty("class", "animated " . $animation); |
|
70 | - $visible=new HtmlSemDoubleElement("visible-" . $this->identifier, "div"); |
|
69 | + $this->addToProperty("class", "animated ".$animation); |
|
70 | + $visible=new HtmlSemDoubleElement("visible-".$this->identifier, "div"); |
|
71 | 71 | $visible->setClass("visible content"); |
72 | 72 | $visible->setContent($this->content); |
73 | - $hidden=new HtmlSemDoubleElement("hidden-" . $this->identifier, "div"); |
|
73 | + $hidden=new HtmlSemDoubleElement("hidden-".$this->identifier, "div"); |
|
74 | 74 | $hidden->setClass("hidden content"); |
75 | 75 | $hidden->setContent($content); |
76 | - $this->content=array ($visible,$hidden ); |
|
76 | + $this->content=array($visible, $hidden); |
|
77 | 77 | return $hidden; |
78 | 78 | } |
79 | 79 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | public function asIcon($icon) { |
86 | 86 | $iconO=$icon; |
87 | 87 | if (\is_string($icon)) { |
88 | - $iconO=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
88 | + $iconO=new HtmlIcon("icon-".$this->identifier, $icon); |
|
89 | 89 | } |
90 | 90 | $this->addToProperty("class", "icon"); |
91 | 91 | $this->content=$iconO; |
@@ -105,13 +105,13 @@ discard block |
||
105 | 105 | * @return HtmlLabel |
106 | 106 | */ |
107 | 107 | public function addLabel($label, $before=false, $icon=NULL) { |
108 | - $this->tagName="div";$prefix=""; |
|
109 | - if($before) |
|
108 | + $this->tagName="div"; $prefix=""; |
|
109 | + if ($before) |
|
110 | 110 | $prefix="left "; |
111 | 111 | $this->addToProperty("class", $prefix."labeled"); |
112 | - $this->content=new HtmlButton("button-" . $this->identifier, $this->content); |
|
112 | + $this->content=new HtmlButton("button-".$this->identifier, $this->content); |
|
113 | 113 | $this->content->setTagName("div"); |
114 | - $label=new HtmlLabel("label-" . $this->identifier, $label, $icon,"a"); |
|
114 | + $label=new HtmlLabel("label-".$this->identifier, $label, $icon, "a"); |
|
115 | 115 | $label->setBasic(); |
116 | 116 | $this->addContent($label, $before); |
117 | 117 | return $label; |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | */ |
124 | 124 | public function fromArray($array) { |
125 | 125 | $array=parent::fromArray($array); |
126 | - foreach ( $array as $key => $value ) { |
|
126 | + foreach ($array as $key => $value) { |
|
127 | 127 | $this->setProperty($key, $value); |
128 | 128 | } |
129 | 129 | return $array; |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | return $this->addToProperty("class", "positive"); |
138 | 138 | } |
139 | 139 | |
140 | - public function setColor($color){ |
|
141 | - if(\is_array($this->content)){ |
|
142 | - foreach ($this->content as $content){ |
|
143 | - if($content instanceof HtmlButton) |
|
140 | + public function setColor($color) { |
|
141 | + if (\is_array($this->content)) { |
|
142 | + foreach ($this->content as $content) { |
|
143 | + if ($content instanceof HtmlButton) |
|
144 | 144 | $content->setColor($color); |
145 | 145 | } |
146 | 146 | } |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @return HtmlButton |
199 | 199 | */ |
200 | 200 | public static function social($identifier, $social, $value=NULL) { |
201 | - if ($value === NULL) |
|
201 | + if ($value===NULL) |
|
202 | 202 | $value=\ucfirst($social); |
203 | 203 | $return=new HtmlButton($identifier, $value); |
204 | 204 | $return->addIcon($social); |
@@ -235,8 +235,8 @@ discard block |
||
235 | 235 | * {@inheritDoc} |
236 | 236 | * @see HtmlSemDoubleElement::asLink() |
237 | 237 | */ |
238 | - public function asLink($href=NULL,$target=NULL) { |
|
239 | - $lnk=new HtmlLink("lnk-".$this->identifier,$href,$this->content,$target); |
|
238 | + public function asLink($href=NULL, $target=NULL) { |
|
239 | + $lnk=new HtmlLink("lnk-".$this->identifier, $href, $this->content, $target); |
|
240 | 240 | $this->content=$lnk; |
241 | 241 | return $this; |
242 | 242 | } |
@@ -15,113 +15,113 @@ discard block |
||
15 | 15 | protected $_paramParts=array(); |
16 | 16 | |
17 | 17 | public function __construct($identifier, $header="", $content="", $actions=null) { |
18 | - parent::__construct($identifier, "div","ui modal"); |
|
19 | - if(isset($header)){ |
|
18 | + parent::__construct($identifier, "div", "ui modal"); |
|
19 | + if (isset($header)) { |
|
20 | 20 | $this->setHeader($header); |
21 | 21 | } |
22 | - if(isset($content)){ |
|
22 | + if (isset($content)) { |
|
23 | 23 | $this->setContent($content); |
24 | 24 | } |
25 | - if(isset($actions)){ |
|
25 | + if (isset($actions)) { |
|
26 | 26 | $this->setActions($actions); |
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | 30 | public function setHeader($value) { |
31 | - $this->content["header"]=new HtmlSemDoubleElement("header-" . $this->identifier, "a", "header", $value); |
|
31 | + $this->content["header"]=new HtmlSemDoubleElement("header-".$this->identifier, "a", "header", $value); |
|
32 | 32 | return $this; |
33 | 33 | } |
34 | 34 | |
35 | 35 | public function setContent($value) { |
36 | - $this->content["content"]=new HtmlSemDoubleElement("content-" . $this->identifier, "div", "content", $value); |
|
36 | + $this->content["content"]=new HtmlSemDoubleElement("content-".$this->identifier, "div", "content", $value); |
|
37 | 37 | return $this; |
38 | 38 | } |
39 | 39 | |
40 | 40 | public function setActions($actions) { |
41 | - $this->content["actions"]=new HtmlSemDoubleElement("content-" . $this->identifier, "div", "actions"); |
|
42 | - if(\is_array($actions)){ |
|
43 | - foreach ($actions as $action){ |
|
41 | + $this->content["actions"]=new HtmlSemDoubleElement("content-".$this->identifier, "div", "actions"); |
|
42 | + if (\is_array($actions)) { |
|
43 | + foreach ($actions as $action) { |
|
44 | 44 | $this->addAction($action); |
45 | 45 | } |
46 | 46 | } |
47 | - else{ |
|
47 | + else { |
|
48 | 48 | $this->addAction($actions); |
49 | 49 | } |
50 | 50 | return $this; |
51 | 51 | } |
52 | 52 | |
53 | - public function addAction($action){ |
|
54 | - if(!$action instanceof BaseHtml){ |
|
53 | + public function addAction($action) { |
|
54 | + if (!$action instanceof BaseHtml) { |
|
55 | 55 | $class=""; |
56 | - if(\array_search($action, ["Okay","Yes"])!==false){ |
|
56 | + if (\array_search($action, ["Okay", "Yes"])!==false) { |
|
57 | 57 | $class="approve"; |
58 | 58 | } |
59 | - if(\array_search($action, ["Close","Cancel","No"])!==false){ |
|
59 | + if (\array_search($action, ["Close", "Cancel", "No"])!==false) { |
|
60 | 60 | $class="cancel"; |
61 | 61 | } |
62 | - $action=new HtmlButton("action-".$this->identifier,$action); |
|
63 | - if($class!=="") |
|
62 | + $action=new HtmlButton("action-".$this->identifier, $action); |
|
63 | + if ($class!=="") |
|
64 | 64 | $action->addToProperty("class", $class); |
65 | 65 | } |
66 | 66 | return $this->addElementInPart($action, "actions"); |
67 | 67 | } |
68 | 68 | |
69 | - public function addContent($content,$before=false){ |
|
70 | - $this->content["content"]->addContent($content,$before); |
|
69 | + public function addContent($content, $before=false) { |
|
70 | + $this->content["content"]->addContent($content, $before); |
|
71 | 71 | return $this; |
72 | 72 | } |
73 | 73 | |
74 | - public function addImageContent($image,$description=NULL){ |
|
74 | + public function addImageContent($image, $description=NULL) { |
|
75 | 75 | $content=$this->content["content"]; |
76 | - if(isset($description)){ |
|
77 | - $description=new HtmlSemDoubleElement("description-".$this->identifier,"div","description",$description); |
|
78 | - $content->addContent($description,true); |
|
76 | + if (isset($description)) { |
|
77 | + $description=new HtmlSemDoubleElement("description-".$this->identifier, "div", "description", $description); |
|
78 | + $content->addContent($description, true); |
|
79 | 79 | } |
80 | - if($image!==""){ |
|
81 | - $img=new HtmlImage("image-".$this->identifier,$image,"","medium"); |
|
82 | - $content->addContent($img,true); |
|
83 | - $content->addToProperty("class","image"); |
|
80 | + if ($image!=="") { |
|
81 | + $img=new HtmlImage("image-".$this->identifier, $image, "", "medium"); |
|
82 | + $content->addContent($img, true); |
|
83 | + $content->addToProperty("class", "image"); |
|
84 | 84 | } |
85 | 85 | return $this; |
86 | 86 | } |
87 | 87 | |
88 | - public function addIconContent($icon,$description=NULL){ |
|
88 | + public function addIconContent($icon, $description=NULL) { |
|
89 | 89 | $content=$this->content["content"]; |
90 | - if(isset($description)){ |
|
91 | - $description=new HtmlSemDoubleElement("description-".$this->identifier,"div","description",$description); |
|
92 | - $content->addContent($description,true); |
|
90 | + if (isset($description)) { |
|
91 | + $description=new HtmlSemDoubleElement("description-".$this->identifier, "div", "description", $description); |
|
92 | + $content->addContent($description, true); |
|
93 | 93 | } |
94 | - if($icon!==""){ |
|
95 | - $img=new HtmlIcon("image-".$this->identifier,$icon); |
|
96 | - $content->addContent($img,true); |
|
97 | - $content->addToProperty("class","image"); |
|
94 | + if ($icon!=="") { |
|
95 | + $img=new HtmlIcon("image-".$this->identifier, $icon); |
|
96 | + $content->addContent($img, true); |
|
97 | + $content->addToProperty("class", "image"); |
|
98 | 98 | } |
99 | 99 | return $this; |
100 | 100 | } |
101 | 101 | |
102 | - private function addElementInPart($element,$part) { |
|
102 | + private function addElementInPart($element, $part) { |
|
103 | 103 | $this->content[$part]->addContent($element); |
104 | 104 | return $element; |
105 | 105 | } |
106 | 106 | |
107 | - public function showDimmer($value){ |
|
108 | - $value=$value?"show":"hide"; |
|
107 | + public function showDimmer($value) { |
|
108 | + $value=$value ? "show" : "hide"; |
|
109 | 109 | $this->_paramParts[]=["'".$value." dimmer'"]; |
110 | 110 | return $this; |
111 | 111 | } |
112 | 112 | |
113 | - public function setInverted($recursive=true){ |
|
113 | + public function setInverted($recursive=true) { |
|
114 | 114 | $this->_params["inverted"]=true; |
115 | 115 | return $this; |
116 | 116 | } |
117 | 117 | |
118 | - public function setBasic(){ |
|
118 | + public function setBasic() { |
|
119 | 119 | return $this->addToProperty("class", "basic"); |
120 | 120 | } |
121 | 121 | |
122 | 122 | |
123 | - public function setTransition($value){ |
|
124 | - $this->_paramParts[]=["'setting'","'transition'","'".$value."'"]; |
|
123 | + public function setTransition($value) { |
|
124 | + $this->_paramParts[]=["'setting'", "'transition'", "'".$value."'"]; |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | * @param string $viewName |
132 | 132 | * @param $params The parameters to pass to the view |
133 | 133 | */ |
134 | - public function renderView(JsUtils $js,$initialController,$viewName, $params=array()) { |
|
135 | - return $this->setContent($js->renderContent($initialController, $viewName,$params)); |
|
134 | + public function renderView(JsUtils $js, $initialController, $viewName, $params=array()) { |
|
135 | + return $this->setContent($js->renderContent($initialController, $viewName, $params)); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -143,8 +143,8 @@ discard block |
||
143 | 143 | * @param string $actionName the action name |
144 | 144 | * @param array $params |
145 | 145 | */ |
146 | - public function forward(JsUtils $js,$initialControllerInstance,$controllerName,$actionName,$params=NULL){ |
|
147 | - return $this->setContent($js->forward($initialControllerInstance, $controllerName, $actionName,$params)); |
|
146 | + public function forward(JsUtils $js, $initialControllerInstance, $controllerName, $actionName, $params=NULL) { |
|
147 | + return $this->setContent($js->forward($initialControllerInstance, $controllerName, $actionName, $params)); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
155 | 155 | */ |
156 | 156 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
157 | - $this->content=JArray::sortAssociative($this->content, ["header","content","actions" ]); |
|
157 | + $this->content=JArray::sortAssociative($this->content, ["header", "content", "actions"]); |
|
158 | 158 | return parent::compile($js, $view); |
159 | 159 | } |
160 | 160 | /* |
@@ -162,8 +162,8 @@ discard block |
||
162 | 162 | * @see BaseHtml::run() |
163 | 163 | */ |
164 | 164 | public function run(JsUtils $js) { |
165 | - if(isset($this->_bsComponent)===false) |
|
166 | - $this->_bsComponent=$js->semantic()->modal("#".$this->identifier,$this->_params,$this->_paramParts); |
|
165 | + if (isset($this->_bsComponent)===false) |
|
166 | + $this->_bsComponent=$js->semantic()->modal("#".$this->identifier, $this->_params, $this->_paramParts); |
|
167 | 167 | $this->addEventsOnRun($js); |
168 | 168 | return $this->_bsComponent; |
169 | 169 | } |
@@ -42,15 +42,15 @@ discard block |
||
42 | 42 | * @param boolean $autoActive sets the last element's class to <b>active</b> if true |
43 | 43 | * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()} |
44 | 44 | */ |
45 | - public function __construct($identifier,$elements=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){ |
|
46 | - parent::__construct($identifier,"ol"); |
|
45 | + public function __construct($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) { |
|
46 | + parent::__construct($identifier, "ol"); |
|
47 | 47 | $this->startIndex=$startIndex; |
48 | 48 | $this->setProperty("class", "breadcrumb"); |
49 | 49 | $this->content=array(); |
50 | 50 | $this->autoActive=$autoActive; |
51 | 51 | $this->absolutePaths; |
52 | - $this->_hrefFunction=function (HtmlDoubleElement $e){return $e->getContent();}; |
|
53 | - if(isset($hrefFunction)){ |
|
52 | + $this->_hrefFunction=function(HtmlDoubleElement $e) {return $e->getContent(); }; |
|
53 | + if (isset($hrefFunction)) { |
|
54 | 54 | $this->_hrefFunction=$hrefFunction; |
55 | 55 | } |
56 | 56 | $this->addElements($elements); |
@@ -61,43 +61,43 @@ discard block |
||
61 | 61 | * @param string $href |
62 | 62 | * @return \Ajax\bootstrap\html\HtmlLink |
63 | 63 | */ |
64 | - public function addElement($element,$href="",$glyph=NULL){ |
|
64 | + public function addElement($element, $href="", $glyph=NULL) { |
|
65 | 65 | $size=sizeof($this->content); |
66 | - if(\is_array($element)){ |
|
66 | + if (\is_array($element)) { |
|
67 | 67 | $elm=new HtmlLink("lnk-".$this->identifier."-".$size); |
68 | 68 | $elm->fromArray($element); |
69 | - }else if($element instanceof HtmlLink){ |
|
69 | + } else if ($element instanceof HtmlLink) { |
|
70 | 70 | $elm=$element; |
71 | - }else{ |
|
72 | - $elm=new HtmlLink("lnk-".$this->identifier."-".$size,$href,$element); |
|
73 | - if(isset($glyph)){ |
|
71 | + } else { |
|
72 | + $elm=new HtmlLink("lnk-".$this->identifier."-".$size, $href, $element); |
|
73 | + if (isset($glyph)) { |
|
74 | 74 | $elm->wrapContentWithGlyph($glyph); |
75 | 75 | } |
76 | 76 | } |
77 | - $elm->wrap("<li>","</li>"); |
|
77 | + $elm->wrap("<li>", "</li>"); |
|
78 | 78 | $this->content[]=$elm; |
79 | 79 | $elm->setProperty($this->attr, $this->getHref($size)); |
80 | 80 | return $elm; |
81 | 81 | } |
82 | 82 | |
83 | - public function setActive($index=null){ |
|
84 | - if(!isset($index)){ |
|
83 | + public function setActive($index=null) { |
|
84 | + if (!isset($index)) { |
|
85 | 85 | $index=sizeof($this->content)-1; |
86 | 86 | } |
87 | - $li=new HtmlBsDoubleElement("","li"); |
|
87 | + $li=new HtmlBsDoubleElement("", "li"); |
|
88 | 88 | $li->setClass("active"); |
89 | 89 | $li->setContent($this->content[$index]->getContent()); |
90 | 90 | $this->content[$index]=$li; |
91 | 91 | } |
92 | 92 | |
93 | - public function addElements($elements){ |
|
94 | - foreach ( $elements as $element ) { |
|
93 | + public function addElements($elements) { |
|
94 | + foreach ($elements as $element) { |
|
95 | 95 | $this->addElement($element); |
96 | 96 | } |
97 | 97 | return $this; |
98 | 98 | } |
99 | 99 | |
100 | - public function fromArray($array){ |
|
100 | + public function fromArray($array) { |
|
101 | 101 | $array=parent::fromArray($array); |
102 | 102 | $this->addElements($array); |
103 | 103 | return $array; |
@@ -109,14 +109,14 @@ discard block |
||
109 | 109 | * @param string $separator |
110 | 110 | * @return string |
111 | 111 | */ |
112 | - public function getHref($index=null,$separator="/"){ |
|
113 | - if(!isset($index)){ |
|
112 | + public function getHref($index=null, $separator="/") { |
|
113 | + if (!isset($index)) { |
|
114 | 114 | $index=sizeof($this->content); |
115 | 115 | } |
116 | - if($this->absolutePaths===true){ |
|
116 | + if ($this->absolutePaths===true) { |
|
117 | 117 | return $this->_hrefFunction($this->content[$index]); |
118 | - }else{ |
|
119 | - return $this->root.implode($separator, array_slice(array_map(function($e){return $this->_hrefFunction($e);}, $this->content),$this->startIndex,$index+1)); |
|
118 | + } else { |
|
119 | + return $this->root.implode($separator, array_slice(array_map(function($e) {return $this->_hrefFunction($e); }, $this->content), $this->startIndex, $index+1)); |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @see \Ajax\bootstrap\html\BaseHtml::compile() |
126 | 126 | */ |
127 | 127 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
128 | - if($this->autoActive){ |
|
128 | + if ($this->autoActive) { |
|
129 | 129 | $this->setActive(); |
130 | 130 | } |
131 | 131 | return parent::compile($js, $view); |
@@ -143,19 +143,19 @@ discard block |
||
143 | 143 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
144 | 144 | */ |
145 | 145 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
146 | - foreach ($this->content as $element){ |
|
147 | - $element->on($event,$jsCode,$stopPropagation,$preventDefault); |
|
146 | + foreach ($this->content as $element) { |
|
147 | + $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
148 | 148 | } |
149 | 149 | return $this; |
150 | 150 | } |
151 | 151 | |
152 | 152 | public function setAutoActive($autoActive) { |
153 | - $this->autoActive = $autoActive; |
|
153 | + $this->autoActive=$autoActive; |
|
154 | 154 | return $this; |
155 | 155 | } |
156 | 156 | |
157 | 157 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
158 | - foreach ($this->content as $element){ |
|
158 | + foreach ($this->content as $element) { |
|
159 | 159 | $element->_ajaxOn($operation, $event, $url, $responseElement, $parameters); |
160 | 160 | } |
161 | 161 | return $this; |
@@ -167,18 +167,18 @@ discard block |
||
167 | 167 | * @param string $targetSelector the target of the get |
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 | } |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @param Dispatcher $dispatcher the request dispatcher |
199 | 199 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
200 | 200 | */ |
201 | - public function fromDispatcher(JsUtils $js,$dispatcher,$startIndex=0){ |
|
201 | + public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0) { |
|
202 | 202 | $this->startIndex=$startIndex; |
203 | 203 | return $this->addElements($js->fromDispatcher($dispatcher)); |
204 | 204 | } |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
211 | 211 | */ |
212 | 212 | public function setHrefFunction($_hrefFunction) { |
213 | - $this->_hrefFunction = $_hrefFunction; |
|
213 | + $this->_hrefFunction=$_hrefFunction; |
|
214 | 214 | return $this; |
215 | 215 | } |
216 | 216 |
@@ -50,7 +50,7 @@ |
||
50 | 50 | * @return $this |
51 | 51 | */ |
52 | 52 | public function setSource($source) { |
53 | - $source=str_ireplace(array ( |
|
53 | + $source=str_ireplace(array( |
|
54 | 54 | "\"", |
55 | 55 | "'" |
56 | 56 | ), "%quote%", $source); |
@@ -16,11 +16,11 @@ |
||
16 | 16 | return $this; |
17 | 17 | } |
18 | 18 | |
19 | - public function showDimmer(){ |
|
19 | + public function showDimmer() { |
|
20 | 20 | return $this->setBehavior("hide dimmer"); |
21 | 21 | } |
22 | 22 | |
23 | - public function setInverted(){ |
|
23 | + public function setInverted() { |
|
24 | 24 | $this->params["inverted"]=true; |
25 | 25 | } |
26 | 26 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | */ |
26 | 26 | class DataTable extends Widget { |
27 | - use TableTrait,DataTableFieldAsTrait,HasCheckboxesTrait,BaseTrait; |
|
27 | + use TableTrait, DataTableFieldAsTrait, HasCheckboxesTrait, BaseTrait; |
|
28 | 28 | protected $_searchField; |
29 | 29 | protected $_urls; |
30 | 30 | protected $_pagination; |
@@ -42,35 +42,35 @@ discard block |
||
42 | 42 | protected $_colWidths; |
43 | 43 | |
44 | 44 | |
45 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
46 | - parent::__construct($identifier, $model,$modelInstance); |
|
47 | - $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0,0), false); |
|
45 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
46 | + parent::__construct($identifier, $model, $modelInstance); |
|
47 | + $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0, 0), false); |
|
48 | 48 | $this->_urls=[]; |
49 | - $this->_emptyMessage=new HtmlMessage("","nothing to display"); |
|
49 | + $this->_emptyMessage=new HtmlMessage("", "nothing to display"); |
|
50 | 50 | $this->_emptyMessage->setIcon("info circle"); |
51 | 51 | } |
52 | 52 | |
53 | - public function run(JsUtils $js){ |
|
54 | - if($this->_hasCheckboxes && isset($js)){ |
|
53 | + public function run(JsUtils $js) { |
|
54 | + if ($this->_hasCheckboxes && isset($js)) { |
|
55 | 55 | $this->_runCheckboxes($js); |
56 | 56 | } |
57 | - if($this->_visibleHover){ |
|
58 | - $js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');",["preventDefault"=>false,"stopPropagation"=>true]); |
|
59 | - $js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');",["preventDefault"=>false,"stopPropagation"=>true]); |
|
57 | + if ($this->_visibleHover) { |
|
58 | + $js->execOn("mouseover", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'visible');", ["preventDefault"=>false, "stopPropagation"=>true]); |
|
59 | + $js->execOn("mouseout", "#".$this->identifier." tr", "$(event.target).closest('tr').find('.visibleover').css('visibility', 'hidden');", ["preventDefault"=>false, "stopPropagation"=>true]); |
|
60 | 60 | } |
61 | - if(\is_array($this->_deleteBehavior)) |
|
62 | - $this->_generateBehavior("delete",$this->_deleteBehavior, $js); |
|
63 | - if(\is_array($this->_editBehavior)) |
|
64 | - $this->_generateBehavior("edit",$this->_editBehavior,$js); |
|
61 | + if (\is_array($this->_deleteBehavior)) |
|
62 | + $this->_generateBehavior("delete", $this->_deleteBehavior, $js); |
|
63 | + if (\is_array($this->_editBehavior)) |
|
64 | + $this->_generateBehavior("edit", $this->_editBehavior, $js); |
|
65 | 65 | return parent::run($js); |
66 | 66 | } |
67 | 67 | |
68 | 68 | |
69 | 69 | |
70 | - protected function _generateBehavior($op,$params,JsUtils $js){ |
|
71 | - if(isset($this->_urls[$op])){ |
|
72 | - $params=\array_merge($params,["attr"=>"data-ajax"]); |
|
73 | - $js->getOnClick("#".$this->identifier." ._".$op, $this->_urls[$op],$this->getTargetSelector(),$params); |
|
70 | + protected function _generateBehavior($op, $params, JsUtils $js) { |
|
71 | + if (isset($this->_urls[$op])) { |
|
72 | + $params=\array_merge($params, ["attr"=>"data-ajax"]); |
|
73 | + $js->getOnClick("#".$this->identifier." ._".$op, $this->_urls[$op], $this->getTargetSelector(), $params); |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
@@ -83,156 +83,156 @@ discard block |
||
83 | 83 | } |
84 | 84 | |
85 | 85 | |
86 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
87 | - if(!$this->_generated){ |
|
86 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
87 | + if (!$this->_generated) { |
|
88 | 88 | $this->_instanceViewer->setInstance($this->_model); |
89 | 89 | $captions=$this->_instanceViewer->getCaptions(); |
90 | 90 | $table=$this->content["table"]; |
91 | - if($this->_hasCheckboxes){ |
|
91 | + if ($this->_hasCheckboxes) { |
|
92 | 92 | $this->_generateMainCheckbox($captions); |
93 | 93 | } |
94 | 94 | $table->setRowCount(0, \sizeof($captions)); |
95 | - $this->_generateHeader($table,$captions); |
|
95 | + $this->_generateHeader($table, $captions); |
|
96 | 96 | |
97 | - if(isset($this->_compileParts)) |
|
97 | + if (isset($this->_compileParts)) |
|
98 | 98 | $table->setCompileParts($this->_compileParts); |
99 | 99 | |
100 | 100 | $this->_generateContent($table); |
101 | 101 | |
102 | - $this->compileExtraElements($table, $captions,$js); |
|
102 | + $this->compileExtraElements($table, $captions, $js); |
|
103 | 103 | |
104 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"table",PositionInTable::AFTERTABLE]); |
|
104 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "table", PositionInTable::AFTERTABLE]); |
|
105 | 105 | $this->_compileForm(); |
106 | 106 | $this->_applyStyleAttributes($table); |
107 | 107 | $this->_generated=true; |
108 | 108 | } |
109 | - return parent::compile($js,$view); |
|
109 | + return parent::compile($js, $view); |
|
110 | 110 | } |
111 | 111 | |
112 | - protected function compileExtraElements($table,$captions,JsUtils $js=NULL){ |
|
113 | - if(isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])){ |
|
114 | - $this->_searchField->postOn("change", $this->_urls["refresh"],"{'s':$(this).val()}","#".$this->identifier." tbody",["preventDefault"=>false,"jqueryDone"=>"replaceWith"]); |
|
112 | + protected function compileExtraElements($table, $captions, JsUtils $js=NULL) { |
|
113 | + if (isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])) { |
|
114 | + $this->_searchField->postOn("change", $this->_urls["refresh"], "{'s':$(this).val()}", "#".$this->identifier." tbody", ["preventDefault"=>false, "jqueryDone"=>"replaceWith"]); |
|
115 | 115 | } |
116 | - if($this->_hasCheckboxes && $table->hasPart("thead")){ |
|
116 | + if ($this->_hasCheckboxes && $table->hasPart("thead")) { |
|
117 | 117 | $table->getHeader()->getCell(0, 0)->addClass("no-sort"); |
118 | 118 | } |
119 | 119 | |
120 | - if(isset($this->_toolbar)){ |
|
120 | + if (isset($this->_toolbar)) { |
|
121 | 121 | $this->_setToolbarPosition($table, $captions); |
122 | 122 | } |
123 | - if(isset($this->_pagination) && $this->_pagination->getVisible()){ |
|
124 | - $this->_generatePagination($table,$js); |
|
123 | + if (isset($this->_pagination) && $this->_pagination->getVisible()) { |
|
124 | + $this->_generatePagination($table, $js); |
|
125 | 125 | } |
126 | 126 | } |
127 | 127 | |
128 | - protected function _applyStyleAttributes($table){ |
|
129 | - if(isset($this->_hiddenColumns)) |
|
128 | + protected function _applyStyleAttributes($table) { |
|
129 | + if (isset($this->_hiddenColumns)) |
|
130 | 130 | $this->_hideColumns(); |
131 | - if(isset($this->_colWidths)){ |
|
132 | - foreach ($this->_colWidths as $colIndex=>$width){ |
|
133 | - $table->setColWidth($colIndex,$width); |
|
131 | + if (isset($this->_colWidths)) { |
|
132 | + foreach ($this->_colWidths as $colIndex=>$width) { |
|
133 | + $table->setColWidth($colIndex, $width); |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
138 | - protected function _hideColumns(){ |
|
139 | - foreach ($this->_hiddenColumns as $colIndex){ |
|
138 | + protected function _hideColumns() { |
|
139 | + foreach ($this->_hiddenColumns as $colIndex) { |
|
140 | 140 | $this->_self->hideColumn($colIndex); |
141 | 141 | } |
142 | 142 | return $this; |
143 | 143 | } |
144 | 144 | |
145 | - protected function _generateHeader(HtmlTable $table,$captions){ |
|
145 | + protected function _generateHeader(HtmlTable $table, $captions) { |
|
146 | 146 | $table->setHeaderValues($captions); |
147 | - if(isset($this->_sortable)){ |
|
147 | + if (isset($this->_sortable)) { |
|
148 | 148 | $table->setSortable($this->_sortable); |
149 | 149 | } |
150 | 150 | } |
151 | 151 | |
152 | 152 | |
153 | 153 | |
154 | - protected function _generateContent($table){ |
|
154 | + protected function _generateContent($table) { |
|
155 | 155 | $objects=$this->_modelInstance; |
156 | - if(isset($this->_pagination)){ |
|
156 | + if (isset($this->_pagination)) { |
|
157 | 157 | $objects=$this->_pagination->getObjects($this->_modelInstance); |
158 | 158 | } |
159 | 159 | InstanceViewer::setIndex(0); |
160 | 160 | $table->fromDatabaseObjects($objects, function($instance) use($table){ |
161 | 161 | return $this->_generateRow($instance, $table); |
162 | 162 | }); |
163 | - if($table->getRowCount()==0){ |
|
163 | + if ($table->getRowCount()==0) { |
|
164 | 164 | $result=$table->addRow(); |
165 | 165 | $result->mergeRow(); |
166 | 166 | $result->setValues([$this->_emptyMessage]); |
167 | 167 | } |
168 | 168 | } |
169 | 169 | |
170 | - protected function _generateRow($instance,&$table,$checkedClass=null){ |
|
170 | + protected function _generateRow($instance, &$table, $checkedClass=null) { |
|
171 | 171 | $this->_instanceViewer->setInstance($instance); |
172 | 172 | InstanceViewer::$index++; |
173 | - $values= $this->_instanceViewer->getValues(); |
|
173 | + $values=$this->_instanceViewer->getValues(); |
|
174 | 174 | $id=$this->_instanceViewer->getIdentifier(); |
175 | - if($this->_hasCheckboxes){ |
|
176 | - $ck=new HtmlCheckbox("ck-".$this->identifier."-".$id,""); |
|
175 | + if ($this->_hasCheckboxes) { |
|
176 | + $ck=new HtmlCheckbox("ck-".$this->identifier."-".$id, ""); |
|
177 | 177 | $ck->setOnChange("event.stopPropagation();"); |
178 | 178 | $field=$ck->getField(); |
179 | - $field->setProperty("value",$id); |
|
179 | + $field->setProperty("value", $id); |
|
180 | 180 | $field->setProperty("name", "selection[]"); |
181 | - if(isset($checkedClass)) |
|
181 | + if (isset($checkedClass)) |
|
182 | 182 | $field->setClass($checkedClass); |
183 | 183 | \array_unshift($values, $ck); |
184 | 184 | } |
185 | 185 | $result=$table->newRow(); |
186 | 186 | $result->setIdentifier($this->identifier."-tr-".$id); |
187 | - $result->setProperty("data-ajax",$id); |
|
187 | + $result->setProperty("data-ajax", $id); |
|
188 | 188 | $result->setValues($values); |
189 | - $result->addToProperty("class",$this->_rowClass); |
|
189 | + $result->addToProperty("class", $this->_rowClass); |
|
190 | 190 | return $result; |
191 | 191 | } |
192 | 192 | |
193 | - protected function _generatePagination($table,$js=NULL){ |
|
194 | - if(isset($this->_toolbar)){ |
|
195 | - if($this->_toolbarPosition==PositionInTable::FOOTER) |
|
193 | + protected function _generatePagination($table, $js=NULL) { |
|
194 | + if (isset($this->_toolbar)) { |
|
195 | + if ($this->_toolbarPosition==PositionInTable::FOOTER) |
|
196 | 196 | $this->_toolbar->setFloated("left"); |
197 | 197 | } |
198 | 198 | $footer=$table->getFooter(); |
199 | 199 | $footer->mergeCol(); |
200 | - $menu=new HtmlPaginationMenu("pagination-".$this->identifier,$this->_pagination->getPagesNumbers()); |
|
200 | + $menu=new HtmlPaginationMenu("pagination-".$this->identifier, $this->_pagination->getPagesNumbers()); |
|
201 | 201 | $menu->floatRight(); |
202 | 202 | $menu->setActiveItem($this->_pagination->getPage()-1); |
203 | 203 | $footer->addValues($menu); |
204 | - $this->_associatePaginationBehavior($menu,$js); |
|
204 | + $this->_associatePaginationBehavior($menu, $js); |
|
205 | 205 | } |
206 | 206 | |
207 | - protected function _associatePaginationBehavior(HtmlMenu $menu,JsUtils $js=NULL){ |
|
208 | - if(isset($this->_urls["refresh"])){ |
|
209 | - $menu->postOnClick($this->_urls["refresh"],"{'p':$(this).attr('data-page')}",$this->getRefreshSelector(),["preventDefault"=>false,"jqueryDone"=>"replaceWith"]); |
|
207 | + protected function _associatePaginationBehavior(HtmlMenu $menu, JsUtils $js=NULL) { |
|
208 | + if (isset($this->_urls["refresh"])) { |
|
209 | + $menu->postOnClick($this->_urls["refresh"], "{'p':$(this).attr('data-page')}", $this->getRefreshSelector(), ["preventDefault"=>false, "jqueryDone"=>"replaceWith"]); |
|
210 | 210 | } |
211 | 211 | } |
212 | 212 | |
213 | - protected function _getFieldName($index){ |
|
213 | + protected function _getFieldName($index) { |
|
214 | 214 | $fieldName=parent::_getFieldName($index); |
215 | - if(\is_object($fieldName)) |
|
215 | + if (\is_object($fieldName)) |
|
216 | 216 | $fieldName="field-".$index; |
217 | 217 | return $fieldName."[]"; |
218 | 218 | } |
219 | 219 | |
220 | - protected function _getFieldCaption($index){ |
|
220 | + protected function _getFieldCaption($index) { |
|
221 | 221 | return null; |
222 | 222 | } |
223 | 223 | |
224 | - protected function _setToolbarPosition($table,$captions=NULL){ |
|
225 | - switch ($this->_toolbarPosition){ |
|
224 | + protected function _setToolbarPosition($table, $captions=NULL) { |
|
225 | + switch ($this->_toolbarPosition) { |
|
226 | 226 | case PositionInTable::BEFORETABLE: |
227 | 227 | case PositionInTable::AFTERTABLE: |
228 | - if(isset($this->_compileParts)===false){ |
|
228 | + if (isset($this->_compileParts)===false) { |
|
229 | 229 | $this->content[$this->_toolbarPosition]=$this->_toolbar; |
230 | 230 | } |
231 | 231 | break; |
232 | 232 | case PositionInTable::HEADER: |
233 | 233 | case PositionInTable::FOOTER: |
234 | 234 | case PositionInTable::BODY: |
235 | - $this->addToolbarRow($this->_toolbarPosition,$table, $captions); |
|
235 | + $this->addToolbarRow($this->_toolbarPosition, $table, $captions); |
|
236 | 236 | break; |
237 | 237 | } |
238 | 238 | } |
@@ -244,16 +244,16 @@ discard block |
||
244 | 244 | * @param callable $callback function called after the field compilation |
245 | 245 | * @return DataTable |
246 | 246 | */ |
247 | - public function afterCompile($index,$callback){ |
|
248 | - $this->_instanceViewer->afterCompile($index,$callback); |
|
247 | + public function afterCompile($index, $callback) { |
|
248 | + $this->_instanceViewer->afterCompile($index, $callback); |
|
249 | 249 | return $this; |
250 | 250 | } |
251 | 251 | |
252 | - private function addToolbarRow($part,$table,$captions){ |
|
252 | + private function addToolbarRow($part, $table, $captions) { |
|
253 | 253 | $hasPart=$table->hasPart($part); |
254 | - if($hasPart){ |
|
254 | + if ($hasPart) { |
|
255 | 255 | $row=$table->getPart($part)->addRow(\sizeof($captions)); |
256 | - }else{ |
|
256 | + } else { |
|
257 | 257 | $row=$table->getPart($part)->getRow(0); |
258 | 258 | } |
259 | 259 | $row->mergeCol(); |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | * @see Widget::getHtmlComponent() |
266 | 266 | * @return HtmlTable |
267 | 267 | */ |
268 | - public function getHtmlComponent(){ |
|
268 | + public function getHtmlComponent() { |
|
269 | 269 | return $this->content["table"]; |
270 | 270 | } |
271 | 271 | |
@@ -279,12 +279,12 @@ discard block |
||
279 | 279 | * @return DataTable |
280 | 280 | */ |
281 | 281 | public function setUrls($urls) { |
282 | - if(\is_array($urls)){ |
|
283 | - $this->_urls["refresh"]=JArray::getValue($urls, "refresh",0); |
|
284 | - $this->_urls["edit"]=JArray::getValue($urls, "edit",1); |
|
285 | - $this->_urls["delete"]=JArray::getValue($urls, "delete",2); |
|
286 | - }else{ |
|
287 | - $this->_urls=["refresh"=>$urls,"edit"=>$urls,"delete"=>$urls]; |
|
282 | + if (\is_array($urls)) { |
|
283 | + $this->_urls["refresh"]=JArray::getValue($urls, "refresh", 0); |
|
284 | + $this->_urls["edit"]=JArray::getValue($urls, "edit", 1); |
|
285 | + $this->_urls["delete"]=JArray::getValue($urls, "delete", 2); |
|
286 | + } else { |
|
287 | + $this->_urls=["refresh"=>$urls, "edit"=>$urls, "delete"=>$urls]; |
|
288 | 288 | } |
289 | 289 | return $this; |
290 | 290 | } |
@@ -297,8 +297,8 @@ discard block |
||
297 | 297 | * @param number $pages_visibles The number of visible pages in the Pagination component |
298 | 298 | * @return DataTable |
299 | 299 | */ |
300 | - public function paginate($page,$total_rowcount,$items_per_page=10,$pages_visibles=null){ |
|
301 | - $this->_pagination=new Pagination($items_per_page,$pages_visibles,$page,$total_rowcount); |
|
300 | + public function paginate($page, $total_rowcount, $items_per_page=10, $pages_visibles=null) { |
|
301 | + $this->_pagination=new Pagination($items_per_page, $pages_visibles, $page, $total_rowcount); |
|
302 | 302 | return $this; |
303 | 303 | } |
304 | 304 | |
@@ -309,8 +309,8 @@ discard block |
||
309 | 309 | * @param number $pages_visibles The number of visible pages in the Pagination component |
310 | 310 | * @return DataTable |
311 | 311 | */ |
312 | - public function autoPaginate($page=1,$items_per_page=10,$pages_visibles=4){ |
|
313 | - $this->_pagination=new Pagination($items_per_page,$pages_visibles,$page); |
|
312 | + public function autoPaginate($page=1, $items_per_page=10, $pages_visibles=4) { |
|
313 | + $this->_pagination=new Pagination($items_per_page, $pages_visibles, $page); |
|
314 | 314 | return $this; |
315 | 315 | } |
316 | 316 | |
@@ -320,20 +320,20 @@ discard block |
||
320 | 320 | * @param array $compileParts |
321 | 321 | * @return DataTable |
322 | 322 | */ |
323 | - public function refresh($compileParts=["tbody"]){ |
|
323 | + public function refresh($compileParts=["tbody"]) { |
|
324 | 324 | $this->_compileParts=$compileParts; |
325 | 325 | return $this; |
326 | 326 | } |
327 | 327 | |
328 | 328 | |
329 | - public function addSearchInToolbar($position=Direction::RIGHT){ |
|
329 | + public function addSearchInToolbar($position=Direction::RIGHT) { |
|
330 | 330 | return $this->addInToolbar($this->getSearchField())->setPosition($position); |
331 | 331 | } |
332 | 332 | |
333 | - public function getSearchField(){ |
|
334 | - if(isset($this->_searchField)===false){ |
|
335 | - $this->_searchField=new HtmlInput("search-".$this->identifier,"search","","Search..."); |
|
336 | - $this->_searchField->addIcon("search",Direction::RIGHT); |
|
333 | + public function getSearchField() { |
|
334 | + if (isset($this->_searchField)===false) { |
|
335 | + $this->_searchField=new HtmlInput("search-".$this->identifier, "search", "", "Search..."); |
|
336 | + $this->_searchField->addIcon("search", Direction::RIGHT); |
|
337 | 337 | } |
338 | 338 | return $this->_searchField; |
339 | 339 | } |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | return $this; |
350 | 350 | } |
351 | 351 | |
352 | - public function asForm(){ |
|
352 | + public function asForm() { |
|
353 | 353 | return $this->getForm(); |
354 | 354 | } |
355 | 355 | |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | |
358 | 358 | protected function getTargetSelector() { |
359 | 359 | $result=$this->_targetSelector; |
360 | - if(!isset($result)) |
|
360 | + if (!isset($result)) |
|
361 | 361 | $result="#".$this->identifier; |
362 | 362 | return $result; |
363 | 363 | } |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | } |
374 | 374 | |
375 | 375 | public function getRefreshSelector() { |
376 | - if(isset($this->_refreshSelector)) |
|
376 | + if (isset($this->_refreshSelector)) |
|
377 | 377 | return $this->_refreshSelector; |
378 | 378 | return "#".$this->identifier." tbody"; |
379 | 379 | } |
@@ -391,9 +391,9 @@ discard block |
||
391 | 391 | * {@inheritDoc} |
392 | 392 | * @see \Ajax\common\Widget::show() |
393 | 393 | */ |
394 | - public function show($modelInstance){ |
|
395 | - if(\is_array($modelInstance)){ |
|
396 | - if(\is_array(array_values($modelInstance)[0])) |
|
394 | + public function show($modelInstance) { |
|
395 | + if (\is_array($modelInstance)) { |
|
396 | + if (\is_array(array_values($modelInstance)[0])) |
|
397 | 397 | $modelInstance=\json_decode(\json_encode($modelInstance), FALSE); |
398 | 398 | } |
399 | 399 | $this->_modelInstance=$modelInstance; |
@@ -428,24 +428,24 @@ discard block |
||
428 | 428 | return $this; |
429 | 429 | } |
430 | 430 | |
431 | - public function setActiveRowSelector($class="active",$event="click",$multiple=false){ |
|
432 | - $this->_self->setActiveRowSelector($class,$event,$multiple); |
|
431 | + public function setActiveRowSelector($class="active", $event="click", $multiple=false) { |
|
432 | + $this->_self->setActiveRowSelector($class, $event, $multiple); |
|
433 | 433 | return $this; |
434 | 434 | } |
435 | 435 | |
436 | - public function hideColumn($colIndex){ |
|
437 | - if(!\is_array($this->_hiddenColumns)) |
|
436 | + public function hideColumn($colIndex) { |
|
437 | + if (!\is_array($this->_hiddenColumns)) |
|
438 | 438 | $this->_hiddenColumns=[]; |
439 | 439 | $this->_hiddenColumns[]=$colIndex; |
440 | 440 | return $this; |
441 | 441 | } |
442 | 442 | |
443 | - public function setColWidth($colIndex,$width){ |
|
443 | + public function setColWidth($colIndex, $width) { |
|
444 | 444 | $this->_colWidths[$colIndex]=$width; |
445 | 445 | return $this; |
446 | 446 | } |
447 | 447 | public function setColWidths($_colWidths) { |
448 | - $this->_colWidths = $_colWidths; |
|
448 | + $this->_colWidths=$_colWidths; |
|
449 | 449 | return $this; |
450 | 450 | } |
451 | 451 | } |
@@ -13,19 +13,19 @@ discard block |
||
13 | 13 | * @property boolean $_visibleHover |
14 | 14 | * @property InstanceViewer $_instanceViewer |
15 | 15 | */ |
16 | -trait DataTableFieldAsTrait{ |
|
16 | +trait DataTableFieldAsTrait { |
|
17 | 17 | abstract public function addField($field); |
18 | - abstract public function insertField($index,$field); |
|
19 | - abstract public function insertInField($index,$field); |
|
20 | - abstract public function fieldAs($index,$type,$attributes=NULL); |
|
18 | + abstract public function insertField($index, $field); |
|
19 | + abstract public function insertInField($index, $field); |
|
20 | + abstract public function fieldAs($index, $type, $attributes=NULL); |
|
21 | 21 | /** |
22 | 22 | * @param string $caption |
23 | 23 | * @param callable $callback |
24 | 24 | * @param boolean $visibleHover |
25 | 25 | * @return callable |
26 | 26 | */ |
27 | - private function getFieldButtonCallable($caption,$visibleHover=true,$callback=null){ |
|
28 | - return $this->getCallable("getFieldButton",[$caption,$visibleHover],$callback); |
|
27 | + private function getFieldButtonCallable($caption, $visibleHover=true, $callback=null) { |
|
28 | + return $this->getCallable("getFieldButton", [$caption, $visibleHover], $callback); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -34,19 +34,19 @@ discard block |
||
34 | 34 | * @param callable $callback |
35 | 35 | * @return callable |
36 | 36 | */ |
37 | - private function getCallable($thisCallback,$parameters,$callback=null){ |
|
38 | - $result=function($instance) use($thisCallback,$parameters,$callback){ |
|
39 | - $object=call_user_func_array(array($this,$thisCallback), $parameters); |
|
40 | - if(isset($callback)){ |
|
41 | - if(\is_callable($callback)){ |
|
42 | - $callback($object,$instance); |
|
37 | + private function getCallable($thisCallback, $parameters, $callback=null) { |
|
38 | + $result=function($instance) use($thisCallback, $parameters, $callback){ |
|
39 | + $object=call_user_func_array(array($this, $thisCallback), $parameters); |
|
40 | + if (isset($callback)) { |
|
41 | + if (\is_callable($callback)) { |
|
42 | + $callback($object, $instance); |
|
43 | 43 | } |
44 | 44 | } |
45 | - if($object instanceof HtmlSemDoubleElement){ |
|
46 | - $object->setProperty("data-ajax",$this->_instanceViewer->getIdentifier()); |
|
47 | - if($object->propertyContains("class","visibleover")){ |
|
45 | + if ($object instanceof HtmlSemDoubleElement) { |
|
46 | + $object->setProperty("data-ajax", $this->_instanceViewer->getIdentifier()); |
|
47 | + if ($object->propertyContains("class", "visibleover")) { |
|
48 | 48 | $this->_visibleHover=true; |
49 | - $object->setProperty("style","visibility:hidden;"); |
|
49 | + $object->setProperty("style", "visibility:hidden;"); |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 | return $object; |
@@ -58,9 +58,9 @@ discard block |
||
58 | 58 | * @param string $caption |
59 | 59 | * @return HtmlButton |
60 | 60 | */ |
61 | - private function getFieldButton($caption,$visibleHover=true){ |
|
62 | - $bt= new HtmlButton("",$caption); |
|
63 | - if($visibleHover) |
|
61 | + private function getFieldButton($caption, $visibleHover=true) { |
|
62 | + $bt=new HtmlButton("", $caption); |
|
63 | + if ($visibleHover) |
|
64 | 64 | $this->_visibleOver($bt); |
65 | 65 | return $bt; |
66 | 66 | } |
@@ -74,19 +74,19 @@ discard block |
||
74 | 74 | * @param array $attributes associative array (<b>ajax</b> key is for ajax post) |
75 | 75 | * @return \Ajax\semantic\widgets\datatable\DataTable |
76 | 76 | */ |
77 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
78 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle,$index,$attributes){ |
|
79 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
80 | - $button->postOnClick($url,"$(event.target).closest('tr').find(':input').serialize()",$responseElement,$attributes["ajax"]); |
|
81 | - if(!isset($attributes["visibleHover"]) || $attributes["visibleHover"]) |
|
77 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
78 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle, $index, $attributes){ |
|
79 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
80 | + $button->postOnClick($url, "$(event.target).closest('tr').find(':input').serialize()", $responseElement, $attributes["ajax"]); |
|
81 | + if (!isset($attributes["visibleHover"]) || $attributes["visibleHover"]) |
|
82 | 82 | $this->_visibleOver($button); |
83 | 83 | return $button; |
84 | - }, $index,$attributes); |
|
84 | + }, $index, $attributes); |
|
85 | 85 | } |
86 | 86 | |
87 | - protected function _visibleOver(BaseHtml $element){ |
|
87 | + protected function _visibleOver(BaseHtml $element) { |
|
88 | 88 | $this->_visibleHover=true; |
89 | - return $element->addToProperty("class", "visibleover")->setProperty("style","visibility:hidden;"); |
|
89 | + return $element->addToProperty("class", "visibleover")->setProperty("style", "visibility:hidden;"); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -96,8 +96,8 @@ discard block |
||
96 | 96 | * @param boolean $visibleHover |
97 | 97 | * @return \Ajax\semantic\widgets\datatable\DataTable |
98 | 98 | */ |
99 | - public function addFieldButton($caption,$visibleHover=true,$callback=null){ |
|
100 | - $this->addField($this->getCallable("getFieldButton",[$caption,$visibleHover],$callback)); |
|
99 | + public function addFieldButton($caption, $visibleHover=true, $callback=null) { |
|
100 | + $this->addField($this->getCallable("getFieldButton", [$caption, $visibleHover], $callback)); |
|
101 | 101 | return $this; |
102 | 102 | } |
103 | 103 | |
@@ -108,8 +108,8 @@ discard block |
||
108 | 108 | * @param callable $callback |
109 | 109 | * @return \Ajax\semantic\widgets\datatable\DataTable |
110 | 110 | */ |
111 | - public function insertFieldButton($index,$caption,$visibleHover=true,$callback=null){ |
|
112 | - $this->insertField($index, $this->getFieldButtonCallable($caption,$visibleHover,$callback)); |
|
111 | + public function insertFieldButton($index, $caption, $visibleHover=true, $callback=null) { |
|
112 | + $this->insertField($index, $this->getFieldButtonCallable($caption, $visibleHover, $callback)); |
|
113 | 113 | return $this; |
114 | 114 | } |
115 | 115 | |
@@ -120,25 +120,25 @@ discard block |
||
120 | 120 | * @param callable $callback |
121 | 121 | * @return \Ajax\semantic\widgets\datatable\DataTable |
122 | 122 | */ |
123 | - public function insertInFieldButton($index,$caption,$visibleHover=true,$callback=null){ |
|
124 | - $this->insertInField($index, $this->getFieldButtonCallable($caption,$visibleHover,$callback)); |
|
123 | + public function insertInFieldButton($index, $caption, $visibleHover=true, $callback=null) { |
|
124 | + $this->insertInField($index, $this->getFieldButtonCallable($caption, $visibleHover, $callback)); |
|
125 | 125 | return $this; |
126 | 126 | } |
127 | 127 | |
128 | - private function addDefaultButton($icon,$class=null,$visibleHover=true,$callback=null){ |
|
129 | - $this->addField($this->getCallable("getDefaultButton",[$icon,$class,$visibleHover],$callback)); |
|
128 | + private function addDefaultButton($icon, $class=null, $visibleHover=true, $callback=null) { |
|
129 | + $this->addField($this->getCallable("getDefaultButton", [$icon, $class, $visibleHover], $callback)); |
|
130 | 130 | return $this; |
131 | 131 | } |
132 | 132 | |
133 | - private function insertDefaultButtonIn($index,$icon,$class=null,$visibleHover=true,$callback=null){ |
|
134 | - $this->insertInField($index,$this->getCallable("getDefaultButton",[$icon,$class,$visibleHover],$callback)); |
|
133 | + private function insertDefaultButtonIn($index, $icon, $class=null, $visibleHover=true, $callback=null) { |
|
134 | + $this->insertInField($index, $this->getCallable("getDefaultButton", [$icon, $class, $visibleHover], $callback)); |
|
135 | 135 | return $this; |
136 | 136 | } |
137 | 137 | |
138 | - private function getDefaultButton($icon,$class=null,$visibleHover=true){ |
|
139 | - $bt=$this->getFieldButton("",$visibleHover); |
|
138 | + private function getDefaultButton($icon, $class=null, $visibleHover=true) { |
|
139 | + $bt=$this->getFieldButton("", $visibleHover); |
|
140 | 140 | $bt->asIcon($icon); |
141 | - if(isset($class)) |
|
141 | + if (isset($class)) |
|
142 | 142 | $bt->addClass($class); |
143 | 143 | return $bt; |
144 | 144 | } |
@@ -149,30 +149,30 @@ discard block |
||
149 | 149 | * @param callable $callback |
150 | 150 | * @return DataTable |
151 | 151 | */ |
152 | - public function addDeleteButton($visibleHover=true,$deleteBehavior=[],$callback=null){ |
|
152 | + public function addDeleteButton($visibleHover=true, $deleteBehavior=[], $callback=null) { |
|
153 | 153 | $this->_deleteBehavior=$deleteBehavior; |
154 | - return $this->addDefaultButton("remove","_delete red basic",$visibleHover,$callback); |
|
154 | + return $this->addDefaultButton("remove", "_delete red basic", $visibleHover, $callback); |
|
155 | 155 | } |
156 | 156 | |
157 | - public function addEditButton($visibleHover=true,$editBehavior=[],$callback=null){ |
|
157 | + public function addEditButton($visibleHover=true, $editBehavior=[], $callback=null) { |
|
158 | 158 | $this->_editBehavior=$editBehavior; |
159 | - return $this->addDefaultButton("edit","_edit basic",$visibleHover,$callback); |
|
159 | + return $this->addDefaultButton("edit", "_edit basic", $visibleHover, $callback); |
|
160 | 160 | } |
161 | 161 | |
162 | - public function addEditDeleteButtons($visibleHover=true,$behavior=[],$callbackEdit=null,$callbackDelete=null){ |
|
163 | - $this->addEditButton($visibleHover,$behavior,$callbackEdit); |
|
162 | + public function addEditDeleteButtons($visibleHover=true, $behavior=[], $callbackEdit=null, $callbackDelete=null) { |
|
163 | + $this->addEditButton($visibleHover, $behavior, $callbackEdit); |
|
164 | 164 | $index=$this->_instanceViewer->visiblePropertiesCount()-1; |
165 | - $this->insertDeleteButtonIn($index,$visibleHover,$behavior,$callbackDelete); |
|
165 | + $this->insertDeleteButtonIn($index, $visibleHover, $behavior, $callbackDelete); |
|
166 | 166 | return $this; |
167 | 167 | } |
168 | 168 | |
169 | - public function insertDeleteButtonIn($index,$visibleHover=true,$deleteBehavior=[],$callback=null){ |
|
169 | + public function insertDeleteButtonIn($index, $visibleHover=true, $deleteBehavior=[], $callback=null) { |
|
170 | 170 | $this->_deleteBehavior=$deleteBehavior; |
171 | - return $this->insertDefaultButtonIn($index,"remove","_delete red basic",$visibleHover,$callback); |
|
171 | + return $this->insertDefaultButtonIn($index, "remove", "_delete red basic", $visibleHover, $callback); |
|
172 | 172 | } |
173 | 173 | |
174 | - public function insertEditButtonIn($index,$visibleHover=true,$editBehavior=[],$callback=null){ |
|
174 | + public function insertEditButtonIn($index, $visibleHover=true, $editBehavior=[], $callback=null) { |
|
175 | 175 | $this->_editBehavior=$editBehavior; |
176 | - return $this->insertDefaultButtonIn($index,"edit","_edit basic",$visibleHover,$callback); |
|
176 | + return $this->insertDefaultButtonIn($index, "edit", "_edit basic", $visibleHover, $callback); |
|
177 | 177 | } |
178 | 178 | } |