@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | */ |
20 | 20 | class HtmlForm extends HtmlSemCollection { |
21 | 21 | |
22 | - use FieldsTrait,FormTrait; |
|
22 | + use FieldsTrait, FormTrait; |
|
23 | 23 | /** |
24 | 24 | * @var array |
25 | 25 | */ |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | |
33 | 33 | public function __construct($identifier, $elements=array()) { |
34 | 34 | parent::__construct($identifier, "form", "ui form"); |
35 | - $this->_states=[ State::ERROR,State::SUCCESS,State::WARNING,State::DISABLED ]; |
|
35 | + $this->_states=[State::ERROR, State::SUCCESS, State::WARNING, State::DISABLED]; |
|
36 | 36 | $this->setProperty("name", $this->identifier); |
37 | - $this->_fields=array (); |
|
37 | + $this->_fields=array(); |
|
38 | 38 | $this->addItems($elements); |
39 | 39 | } |
40 | 40 | |
41 | - protected function getForm(){ |
|
41 | + protected function getForm() { |
|
42 | 42 | return $this; |
43 | 43 | } |
44 | 44 | |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | * @param string $caption |
60 | 60 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
61 | 61 | */ |
62 | - public function addDivider($caption=NULL){ |
|
63 | - return $this->addContent(new HtmlDivider("",$caption)); |
|
62 | + public function addDivider($caption=NULL) { |
|
63 | + return $this->addContent(new HtmlDivider("", $caption)); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | public function addFields($fields=NULL, $label=NULL) { |
@@ -76,12 +76,12 @@ discard block |
||
76 | 76 | $label=NULL; |
77 | 77 | } |
78 | 78 | $this->_fields=\array_merge($this->_fields, $fields); |
79 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields); |
|
79 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count(), $fields); |
|
80 | 80 | } |
81 | 81 | if (isset($label)) |
82 | 82 | $fields=new HtmlFormField("", $fields, $label); |
83 | 83 | } else { |
84 | - $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count()); |
|
84 | + $fields=new HtmlFormFields("fields-".$this->identifier."-".$this->count()); |
|
85 | 85 | } |
86 | 86 | $this->addItem($fields); |
87 | 87 | return $fields; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | |
90 | 90 | public function addItem($item) { |
91 | 91 | $item=parent::addItem($item); |
92 | - if (\is_subclass_of($item, HtmlFormField::class) === true) { |
|
92 | + if (\is_subclass_of($item, HtmlFormField::class)===true) { |
|
93 | 93 | $this->_fields[]=$item; |
94 | 94 | } |
95 | 95 | return $item; |
@@ -143,35 +143,35 @@ discard block |
||
143 | 143 | |
144 | 144 | |
145 | 145 | |
146 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
147 | - if(\sizeof($this->_validationParams)>0) |
|
146 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
147 | + if (\sizeof($this->_validationParams)>0) |
|
148 | 148 | $this->setProperty("novalidate", ""); |
149 | - return parent::compile($js,$view); |
|
149 | + return parent::compile($js, $view); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | public function run(JsUtils $js) { |
153 | 153 | $compo=NULL; |
154 | - foreach ($this->_fields as $field){ |
|
155 | - if($field instanceof HtmlFormField) |
|
154 | + foreach ($this->_fields as $field) { |
|
155 | + if ($field instanceof HtmlFormField) |
|
156 | 156 | $compo=$this->addCompoValidation($js, $compo, $field); |
157 | 157 | } |
158 | - foreach ($this->content as $field){ |
|
159 | - if($field instanceof HtmlFormFields){ |
|
158 | + foreach ($this->content as $field) { |
|
159 | + if ($field instanceof HtmlFormFields) { |
|
160 | 160 | $items=$field->getItems(); |
161 | - foreach ($items as $_field){ |
|
162 | - if($_field instanceof HtmlFormField) |
|
161 | + foreach ($items as $_field) { |
|
162 | + if ($_field instanceof HtmlFormField) |
|
163 | 163 | $compo=$this->addCompoValidation($js, $compo, $_field); |
164 | 164 | } |
165 | 165 | } |
166 | 166 | } |
167 | - if(isset($compo)===false){ |
|
167 | + if (isset($compo)===false) { |
|
168 | 168 | return parent::run($js); |
169 | 169 | } |
170 | - $this->_runValidationParams($compo,$js); |
|
170 | + $this->_runValidationParams($compo, $js); |
|
171 | 171 | return $this->_bsComponent; |
172 | 172 | } |
173 | 173 | |
174 | - public function addValidationParam($paramName,$paramValue){ |
|
174 | + public function addValidationParam($paramName, $paramValue) { |
|
175 | 175 | $this->_validationParams[$paramName]=$paramValue; |
176 | 176 | return $this; |
177 | 177 | } |
@@ -50,8 +50,9 @@ discard block |
||
50 | 50 | */ |
51 | 51 | public function addHeader($title, $niveau=1, $dividing=true) { |
52 | 52 | $header=new HtmlHeader("", $niveau, $title); |
53 | - if ($dividing) |
|
54 | - $header->setDividing(); |
|
53 | + if ($dividing) { |
|
54 | + $header->setDividing(); |
|
55 | + } |
|
55 | 56 | return $this->addItem($header); |
56 | 57 | } |
57 | 58 | |
@@ -72,14 +73,16 @@ discard block |
||
72 | 73 | if (\is_string($end)) { |
73 | 74 | $label=$end; |
74 | 75 | \array_pop($fields); |
75 | - } else |
|
76 | - $label=NULL; |
|
76 | + } else { |
|
77 | + $label=NULL; |
|
78 | + } |
|
77 | 79 | } |
78 | 80 | $this->_fields=\array_merge($this->_fields, $fields); |
79 | 81 | $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count(), $fields); |
80 | 82 | } |
81 | - if (isset($label)) |
|
82 | - $fields=new HtmlFormField("", $fields, $label); |
|
83 | + if (isset($label)) { |
|
84 | + $fields=new HtmlFormField("", $fields, $label); |
|
85 | + } |
|
83 | 86 | } else { |
84 | 87 | $fields=new HtmlFormFields("fields-" . $this->identifier . "-" . $this->count()); |
85 | 88 | } |
@@ -132,35 +135,41 @@ discard block |
||
132 | 135 | */ |
133 | 136 | public function addMessage($identifier, $content, $header=NULL, $icon=NULL, $type=NULL) { |
134 | 137 | $message=new HtmlMessage($identifier, $content); |
135 | - if (isset($header)) |
|
136 | - $message->addHeader($header); |
|
137 | - if (isset($icon)) |
|
138 | - $message->setIcon($icon); |
|
139 | - if (isset($type)) |
|
140 | - $message->setStyle($type); |
|
138 | + if (isset($header)) { |
|
139 | + $message->addHeader($header); |
|
140 | + } |
|
141 | + if (isset($icon)) { |
|
142 | + $message->setIcon($icon); |
|
143 | + } |
|
144 | + if (isset($type)) { |
|
145 | + $message->setStyle($type); |
|
146 | + } |
|
141 | 147 | return $this->addItem($message); |
142 | 148 | } |
143 | 149 | |
144 | 150 | |
145 | 151 | |
146 | 152 | public function compile(JsUtils $js=NULL,&$view=NULL){ |
147 | - if(\sizeof($this->_validationParams)>0) |
|
148 | - $this->setProperty("novalidate", ""); |
|
153 | + if(\sizeof($this->_validationParams)>0) { |
|
154 | + $this->setProperty("novalidate", ""); |
|
155 | + } |
|
149 | 156 | return parent::compile($js,$view); |
150 | 157 | } |
151 | 158 | |
152 | 159 | public function run(JsUtils $js) { |
153 | 160 | $compo=NULL; |
154 | 161 | foreach ($this->_fields as $field){ |
155 | - if($field instanceof HtmlFormField) |
|
156 | - $compo=$this->addCompoValidation($js, $compo, $field); |
|
162 | + if($field instanceof HtmlFormField) { |
|
163 | + $compo=$this->addCompoValidation($js, $compo, $field); |
|
164 | + } |
|
157 | 165 | } |
158 | 166 | foreach ($this->content as $field){ |
159 | 167 | if($field instanceof HtmlFormFields){ |
160 | 168 | $items=$field->getItems(); |
161 | 169 | foreach ($items as $_field){ |
162 | - if($_field instanceof HtmlFormField) |
|
163 | - $compo=$this->addCompoValidation($js, $compo, $_field); |
|
170 | + if($_field instanceof HtmlFormField) { |
|
171 | + $compo=$this->addCompoValidation($js, $compo, $_field); |
|
172 | + } |
|
164 | 173 | } |
165 | 174 | } |
166 | 175 | } |
@@ -6,18 +6,18 @@ discard block |
||
6 | 6 | use Ajax\service\AjaxCall; |
7 | 7 | use Ajax\JsUtils; |
8 | 8 | |
9 | -trait FormTrait{ |
|
9 | +trait FormTrait { |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * @return HtmlForm |
13 | 13 | */ |
14 | 14 | abstract protected function getForm(); |
15 | 15 | |
16 | - protected function addCompoValidation($js,$compo,$field){ |
|
16 | + protected function addCompoValidation($js, $compo, $field) { |
|
17 | 17 | $form=$this->getForm(); |
18 | 18 | $validation=$field->getValidation(); |
19 | - if(isset($validation)){ |
|
20 | - if(isset($compo)===false){ |
|
19 | + if (isset($validation)) { |
|
20 | + if (isset($compo)===false) { |
|
21 | 21 | $compo=$js->semantic()->form("#".$form->getIdentifier()); |
22 | 22 | } |
23 | 23 | $validation->setIdentifier($field->getDataField()->getIdentifier()); |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | return $compo; |
27 | 27 | } |
28 | 28 | |
29 | - protected function _runValidationParams(&$compo,JsUtils $js=NULL){ |
|
29 | + protected function _runValidationParams(&$compo, JsUtils $js=NULL) { |
|
30 | 30 | $form=$this->getForm(); |
31 | 31 | $params=$form->getValidationParams(); |
32 | - if(isset($params["_ajaxSubmit"]) && $params["_ajaxSubmit"] instanceof AjaxCall){ |
|
32 | + if (isset($params["_ajaxSubmit"]) && $params["_ajaxSubmit"] instanceof AjaxCall) { |
|
33 | 33 | $compilation=$params["_ajaxSubmit"]->compile($js); |
34 | - $compilation=str_ireplace("\"","%quote%", $compilation); |
|
34 | + $compilation=str_ireplace("\"", "%quote%", $compilation); |
|
35 | 35 | $this->onSuccess($compilation); |
36 | 36 | unset($params["_ajaxSubmit"]); |
37 | 37 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | return $this->getForm()->addToProperty("class", "loading"); |
45 | 45 | } |
46 | 46 | |
47 | - public function addErrorMessage(){ |
|
47 | + public function addErrorMessage() { |
|
48 | 48 | return $this->getForm()->addContent((new HtmlMessage(""))->setError()); |
49 | 49 | } |
50 | 50 | |
@@ -59,35 +59,35 @@ discard block |
||
59 | 59 | * @param string $responseElement |
60 | 60 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
61 | 61 | */ |
62 | - public function submitOn($event,$identifier,$url,$responseElement){ |
|
62 | + public function submitOn($event, $identifier, $url, $responseElement) { |
|
63 | 63 | $form=$this->getForm(); |
64 | 64 | $elem=$form->getElementById($identifier, $form->getContent()); |
65 | - if(isset($elem)){ |
|
66 | - $this->_buttonAsSubmit($elem, $event,$url,$responseElement); |
|
65 | + if (isset($elem)) { |
|
66 | + $this->_buttonAsSubmit($elem, $event, $url, $responseElement); |
|
67 | 67 | } |
68 | 68 | return $form; |
69 | 69 | } |
70 | 70 | |
71 | - public function submitOnClick($identifier,$url,$responseElement){ |
|
71 | + public function submitOnClick($identifier, $url, $responseElement) { |
|
72 | 72 | return $this->submitOn("click", $identifier, $url, $responseElement); |
73 | 73 | } |
74 | 74 | |
75 | - public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL){ |
|
76 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
77 | - return $this->_buttonAsSubmit($bt, "click",$url,$responseElement); |
|
75 | + public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL) { |
|
76 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
77 | + return $this->_buttonAsSubmit($bt, "click", $url, $responseElement); |
|
78 | 78 | } |
79 | 79 | |
80 | - protected function _buttonAsSubmit(&$button,$event,$url,$responseElement=NULL){ |
|
80 | + protected function _buttonAsSubmit(&$button, $event, $url, $responseElement=NULL) { |
|
81 | 81 | $form=$this->getForm(); |
82 | - if(isset($url) && isset($responseElement)){ |
|
82 | + if (isset($url) && isset($responseElement)) { |
|
83 | 83 | $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');"); |
84 | - $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", ["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url])); |
|
84 | + $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", ["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url])); |
|
85 | 85 | } |
86 | 86 | return $button; |
87 | 87 | } |
88 | 88 | |
89 | - public function addReset($identifier,$value,$cssStyle=NULL){ |
|
90 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
89 | + public function addReset($identifier, $value, $cssStyle=NULL) { |
|
90 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
91 | 91 | $bt->setProperty("type", "reset"); |
92 | 92 | return $bt; |
93 | 93 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * @param string $jsCode |
98 | 98 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
99 | 99 | */ |
100 | - public function onValid($jsCode){ |
|
100 | + public function onValid($jsCode) { |
|
101 | 101 | $form=$this->getForm(); |
102 | 102 | $form->addValidationParam("onValid", "%function(){".$jsCode."}%"); |
103 | 103 | return $form; |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * @param string $jsCode can use event and fields parameters |
109 | 109 | * @return HtmlForm |
110 | 110 | */ |
111 | - public function onSuccess($jsCode){ |
|
111 | + public function onSuccess($jsCode) { |
|
112 | 112 | $form=$this->getForm(); |
113 | 113 | $form->addValidationParam("onSuccess", "%function(evt,fields){".$jsCode."}%"); |
114 | 114 | return $form; |
@@ -18,48 +18,48 @@ discard block |
||
18 | 18 | * @property FormInstanceViewer $_instanceViewer |
19 | 19 | */ |
20 | 20 | class DataForm extends Widget { |
21 | - use FormFieldAsTrait,FormTrait; |
|
21 | + use FormFieldAsTrait, FormTrait; |
|
22 | 22 | |
23 | 23 | public function __construct($identifier, $modelInstance=NULL) { |
24 | - parent::__construct($identifier, null,$modelInstance); |
|
24 | + parent::__construct($identifier, null, $modelInstance); |
|
25 | 25 | $this->_init(new FormInstanceViewer($identifier), "form", new HtmlForm($identifier), true); |
26 | 26 | } |
27 | 27 | |
28 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
28 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
29 | 29 | $this->_instanceViewer->setInstance($this->_modelInstance); |
30 | 30 | |
31 | 31 | $form=$this->content["form"]; |
32 | 32 | $this->_generateContent($form); |
33 | 33 | |
34 | - if(isset($this->_toolbar)){ |
|
34 | + if (isset($this->_toolbar)) { |
|
35 | 35 | $this->_setToolbarPosition($form); |
36 | 36 | } |
37 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"form",PositionInTable::AFTERTABLE]); |
|
38 | - return parent::compile($js,$view); |
|
37 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "form", PositionInTable::AFTERTABLE]); |
|
38 | + return parent::compile($js, $view); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * @param HtmlForm $form |
43 | 43 | */ |
44 | - protected function _generateContent($form){ |
|
45 | - $values= $this->_instanceViewer->getValues(); |
|
44 | + protected function _generateContent($form) { |
|
45 | + $values=$this->_instanceViewer->getValues(); |
|
46 | 46 | $count=$this->_instanceViewer->count(); |
47 | 47 | |
48 | 48 | $separators=$this->_instanceViewer->getSeparators(); |
49 | 49 | $size=\sizeof($separators); |
50 | - if($size===1){ |
|
51 | - foreach ($values as $v){ |
|
50 | + if ($size===1) { |
|
51 | + foreach ($values as $v) { |
|
52 | 52 | $form->addField($v); |
53 | 53 | } |
54 | - }else{ |
|
54 | + } else { |
|
55 | 55 | $separators[]=$count; |
56 | - for($i=0;$i<$size;$i++){ |
|
57 | - $fields=\array_slice($values, $separators[$i]+1,$separators[$i+1]-$separators[$i]); |
|
56 | + for ($i=0; $i<$size; $i++) { |
|
57 | + $fields=\array_slice($values, $separators[$i]+1, $separators[$i+1]-$separators[$i]); |
|
58 | 58 | //TODO check why $fields is empty |
59 | - if(\sizeof($fields)===1){ |
|
59 | + if (\sizeof($fields)===1) { |
|
60 | 60 | $form->addField($fields[0]); |
61 | - }elseif(\sizeof($fields)>1){ |
|
62 | - $form->addFields($fields,"grouped"); |
|
61 | + }elseif (\sizeof($fields)>1) { |
|
62 | + $form->addFields($fields, "grouped"); |
|
63 | 63 | $i+=\sizeof($fields)-1; |
64 | 64 | } |
65 | 65 | } |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | /** |
70 | 70 | * @return HtmlForm |
71 | 71 | */ |
72 | - protected function getForm(){ |
|
72 | + protected function getForm() { |
|
73 | 73 | return $this->content["form"]; |
74 | 74 | } |
75 | 75 | |
76 | - public function addSeparatorAfter($fieldNum){ |
|
76 | + public function addSeparatorAfter($fieldNum) { |
|
77 | 77 | $this->_instanceViewer->addSeparatorAfter($fieldNum); |
78 | 78 | return $this; |
79 | 79 | } |
@@ -87,26 +87,26 @@ discard block |
||
87 | 87 | return $this; |
88 | 88 | } |
89 | 89 | |
90 | - public function addSubmitInToolbar($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL){ |
|
91 | - $button=new HtmlButton($identifier,$value,$cssStyle); |
|
92 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement); |
|
90 | + public function addSubmitInToolbar($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL) { |
|
91 | + $button=new HtmlButton($identifier, $value, $cssStyle); |
|
92 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement); |
|
93 | 93 | return $this->addInToolbar($button); |
94 | 94 | } |
95 | 95 | |
96 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
97 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle){ |
|
98 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
99 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement); |
|
96 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
97 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle){ |
|
98 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
99 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement); |
|
100 | 100 | return $button; |
101 | - }, $index,$attributes); |
|
101 | + }, $index, $attributes); |
|
102 | 102 | } |
103 | 103 | |
104 | - public function fieldAsReset($index,$cssStyle=NULL,$attributes=NULL){ |
|
105 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){ |
|
106 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
104 | + public function fieldAsReset($index, $cssStyle=NULL, $attributes=NULL) { |
|
105 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){ |
|
106 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
107 | 107 | $button->setProperty("type", "reset"); |
108 | 108 | return $button; |
109 | - }, $index,$attributes); |
|
109 | + }, $index, $attributes); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -51,14 +51,14 @@ |
||
51 | 51 | foreach ($values as $v){ |
52 | 52 | $form->addField($v); |
53 | 53 | } |
54 | - }else{ |
|
54 | + } else{ |
|
55 | 55 | $separators[]=$count; |
56 | 56 | for($i=0;$i<$size;$i++){ |
57 | 57 | $fields=\array_slice($values, $separators[$i]+1,$separators[$i+1]-$separators[$i]); |
58 | 58 | //TODO check why $fields is empty |
59 | 59 | if(\sizeof($fields)===1){ |
60 | 60 | $form->addField($fields[0]); |
61 | - }elseif(\sizeof($fields)>1){ |
|
61 | + } elseif(\sizeof($fields)>1){ |
|
62 | 62 | $form->addFields($fields,"grouped"); |
63 | 63 | $i+=\sizeof($fields)-1; |
64 | 64 | } |