@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | use Ajax\semantic\html\collections\HtmlMessage; |
| 6 | 6 | use Ajax\service\AjaxCall; |
| 7 | 7 | |
| 8 | -trait FormTrait{ |
|
| 8 | +trait FormTrait { |
|
| 9 | 9 | /** |
| 10 | 10 | * @return HtmlForm |
| 11 | 11 | */ |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | return $this->getForm()->addToProperty("class", "loading"); |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | - public function addErrorMessage(){ |
|
| 18 | + public function addErrorMessage() { |
|
| 19 | 19 | return $this->getForm()->addContent((new HtmlMessage(""))->setError()); |
| 20 | 20 | } |
| 21 | 21 | |
@@ -30,35 +30,35 @@ discard block |
||
| 30 | 30 | * @param string $responseElement |
| 31 | 31 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
| 32 | 32 | */ |
| 33 | - public function submitOn($event,$identifier,$url,$responseElement){ |
|
| 33 | + public function submitOn($event, $identifier, $url, $responseElement) { |
|
| 34 | 34 | $form=$this->getForm(); |
| 35 | 35 | $elem=$form->getElementById($identifier, $form->getContent()); |
| 36 | - if(isset($elem)){ |
|
| 37 | - $this->_buttonAsSubmit($elem, $event,$url,$responseElement); |
|
| 36 | + if (isset($elem)) { |
|
| 37 | + $this->_buttonAsSubmit($elem, $event, $url, $responseElement); |
|
| 38 | 38 | } |
| 39 | 39 | return $form; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public function submitOnClick($identifier,$url,$responseElement){ |
|
| 42 | + public function submitOnClick($identifier, $url, $responseElement) { |
|
| 43 | 43 | return $this->submitOn("click", $identifier, $url, $responseElement); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL){ |
|
| 47 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
| 48 | - return $this->_buttonAsSubmit($bt, "click",$url,$responseElement); |
|
| 46 | + public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL) { |
|
| 47 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
| 48 | + return $this->_buttonAsSubmit($bt, "click", $url, $responseElement); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - protected function _buttonAsSubmit($button,$event,$url,$responseElement=NULL){ |
|
| 51 | + protected function _buttonAsSubmit($button, $event, $url, $responseElement=NULL) { |
|
| 52 | 52 | $form=$this->getForm(); |
| 53 | - if(isset($url) && isset($responseElement)){ |
|
| 53 | + if (isset($url) && isset($responseElement)) { |
|
| 54 | 54 | $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');"); |
| 55 | - $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", ["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url])); |
|
| 55 | + $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", ["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url])); |
|
| 56 | 56 | } |
| 57 | 57 | return $button; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - public function addReset($identifier,$value,$cssStyle=NULL){ |
|
| 61 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
| 60 | + public function addReset($identifier, $value, $cssStyle=NULL) { |
|
| 61 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
| 62 | 62 | $bt->setProperty("type", "reset"); |
| 63 | 63 | return $bt; |
| 64 | 64 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param string $jsCode |
| 69 | 69 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
| 70 | 70 | */ |
| 71 | - public function onValid($jsCode){ |
|
| 71 | + public function onValid($jsCode) { |
|
| 72 | 72 | $form=$this->getForm(); |
| 73 | 73 | $form->addValidationParam("onValid", "%function(){".$jsCode."}%"); |
| 74 | 74 | return $form; |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @param string $jsCode can use event and fields parameters |
| 80 | 80 | * @return HtmlForm |
| 81 | 81 | */ |
| 82 | - public function onSuccess($jsCode){ |
|
| 82 | + public function onSuccess($jsCode) { |
|
| 83 | 83 | $form=$this->getForm(); |
| 84 | 84 | $form->addValidationParam("onSuccess", "%function(evt,fields){".$jsCode."}%"); |
| 85 | 85 | return $form; |