@@ -14,27 +14,27 @@ discard block |
||
| 14 | 14 | * @author jc |
| 15 | 15 | * |
| 16 | 16 | */ |
| 17 | -trait FormTrait{ |
|
| 17 | +trait FormTrait { |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @return HtmlForm |
| 21 | 21 | */ |
| 22 | 22 | abstract protected function getForm(); |
| 23 | 23 | |
| 24 | - protected function addCompoValidation(Form $compo,HtmlFormField $field){ |
|
| 24 | + protected function addCompoValidation(Form $compo, HtmlFormField $field) { |
|
| 25 | 25 | $validation=$field->getValidation(); |
| 26 | - if(isset($validation)){ |
|
| 26 | + if (isset($validation)) { |
|
| 27 | 27 | $validation->setIdentifier($field->getDataField()->getIdentifier()); |
| 28 | 28 | $compo->addFieldValidation($validation); |
| 29 | 29 | } |
| 30 | 30 | return $compo; |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - protected function _runValidationParams(Form &$compo,JsUtils $js=NULL){ |
|
| 33 | + protected function _runValidationParams(Form &$compo, JsUtils $js=NULL) { |
|
| 34 | 34 | $form=$this->getForm(); |
| 35 | 35 | $params=$form->getValidationParams(); |
| 36 | - if(isset($params["_ajaxSubmit"])){ |
|
| 37 | - $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"],$js); |
|
| 36 | + if (isset($params["_ajaxSubmit"])) { |
|
| 37 | + $compilation=$this->_compileAjaxSubmit($params["_ajaxSubmit"], $js); |
|
| 38 | 38 | $this->onSuccess($compilation); |
| 39 | 39 | $form->removeValidationParam("_ajaxSubmit"); |
| 40 | 40 | } |
@@ -43,16 +43,16 @@ discard block |
||
| 43 | 43 | $form->addEventsOnRun($js); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - protected function _compileAjaxSubmit($ajaxSubmit,JsUtils $js=null){ |
|
| 46 | + protected function _compileAjaxSubmit($ajaxSubmit, JsUtils $js=null) { |
|
| 47 | 47 | $compilation=""; |
| 48 | - if(\is_array($ajaxSubmit)){ |
|
| 49 | - foreach ($ajaxSubmit as $ajaxSubmitItem){ |
|
| 48 | + if (\is_array($ajaxSubmit)) { |
|
| 49 | + foreach ($ajaxSubmit as $ajaxSubmitItem) { |
|
| 50 | 50 | $compilation.=$ajaxSubmitItem->compile($js); |
| 51 | 51 | } |
| 52 | - }elseif($ajaxSubmit instanceof AjaxCall){ |
|
| 52 | + }elseif ($ajaxSubmit instanceof AjaxCall) { |
|
| 53 | 53 | $compilation=$ajaxSubmit->compile($js); |
| 54 | 54 | } |
| 55 | - $compilation=str_ireplace("\"","%quote%", $compilation); |
|
| 55 | + $compilation=str_ireplace("\"", "%quote%", $compilation); |
|
| 56 | 56 | return $compilation; |
| 57 | 57 | } |
| 58 | 58 | |
@@ -65,14 +65,14 @@ discard block |
||
| 65 | 65 | return $this; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - public function setAttached($value=true){ |
|
| 68 | + public function setAttached($value=true) { |
|
| 69 | 69 | $form=$this->getForm(); |
| 70 | - if($value) |
|
| 71 | - $form->addToPropertyCtrl("class", "attached", array ("attached" )); |
|
| 70 | + if ($value) |
|
| 71 | + $form->addToPropertyCtrl("class", "attached", array("attached")); |
|
| 72 | 72 | return $form; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - public function addErrorMessage(){ |
|
| 75 | + public function addErrorMessage() { |
|
| 76 | 76 | return $this->getForm()->addContent((new HtmlMessage(""))->setError()); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -88,47 +88,47 @@ discard block |
||
| 88 | 88 | * @param array $parameters |
| 89 | 89 | * @return HtmlForm |
| 90 | 90 | */ |
| 91 | - public function submitOn($event,$identifierOrElement,$url,$responseElement,$parameters=NULL){ |
|
| 91 | + public function submitOn($event, $identifierOrElement, $url, $responseElement, $parameters=NULL) { |
|
| 92 | 92 | $form=$this->getForm(); |
| 93 | - if($identifierOrElement instanceof BaseHtml) |
|
| 93 | + if ($identifierOrElement instanceof BaseHtml) |
|
| 94 | 94 | $elem=$identifierOrElement; |
| 95 | 95 | else |
| 96 | 96 | $elem=$form->getElementById($identifierOrElement, $form->getContent()); |
| 97 | - if(isset($elem)){ |
|
| 98 | - $this->_buttonAsSubmit($elem, $event,$url,$responseElement,$parameters); |
|
| 97 | + if (isset($elem)) { |
|
| 98 | + $this->_buttonAsSubmit($elem, $event, $url, $responseElement, $parameters); |
|
| 99 | 99 | } |
| 100 | 100 | return $form; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - public function submitOnClick($identifier,$url,$responseElement,$parameters=NULL){ |
|
| 104 | - return $this->submitOn("click", $identifier, $url, $responseElement,$parameters); |
|
| 103 | + public function submitOnClick($identifier, $url, $responseElement, $parameters=NULL) { |
|
| 104 | + return $this->submitOn("click", $identifier, $url, $responseElement, $parameters); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - public function addSubmit($identifier,$value,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$parameters=NULL){ |
|
| 108 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
| 109 | - return $this->_buttonAsSubmit($bt, "click",$url,$responseElement,$parameters); |
|
| 107 | + public function addSubmit($identifier, $value, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $parameters=NULL) { |
|
| 108 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
| 109 | + return $this->_buttonAsSubmit($bt, "click", $url, $responseElement, $parameters); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL){ |
|
| 112 | + protected function _buttonAsSubmit(BaseHtml &$button, $event, $url, $responseElement=NULL, $parameters=NULL) { |
|
| 113 | 113 | $form=$this->getForm(); |
| 114 | - if(isset($url) && isset($responseElement)){ |
|
| 115 | - $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');",true,true); |
|
| 116 | - $this->setSubmitParams($url,$responseElement,$parameters); |
|
| 114 | + if (isset($url) && isset($responseElement)) { |
|
| 115 | + $button->addEvent($event, "$('#".$form->getIdentifier()."').form('validate form');", true, true); |
|
| 116 | + $this->setSubmitParams($url, $responseElement, $parameters); |
|
| 117 | 117 | } |
| 118 | 118 | return $button; |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - public function setSubmitParams($url,$responseElement=NULL,$parameters=NULL){ |
|
| 121 | + public function setSubmitParams($url, $responseElement=NULL, $parameters=NULL) { |
|
| 122 | 122 | $form=$this->getForm(); |
| 123 | - $params=["form"=>$form->getIdentifier(),"responseElement"=>$responseElement,"url"=>$url,"stopPropagation"=>true]; |
|
| 124 | - if(\is_array($parameters)) |
|
| 125 | - $params=\array_merge($params,$parameters); |
|
| 123 | + $params=["form"=>$form->getIdentifier(), "responseElement"=>$responseElement, "url"=>$url, "stopPropagation"=>true]; |
|
| 124 | + if (\is_array($parameters)) |
|
| 125 | + $params=\array_merge($params, $parameters); |
|
| 126 | 126 | $form->addValidationParam("_ajaxSubmit", new AjaxCall("postForm", $params)); |
| 127 | 127 | return $this; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - public function addReset($identifier,$value,$cssStyle=NULL){ |
|
| 131 | - $bt=$this->getForm()->addButton($identifier, $value,$cssStyle); |
|
| 130 | + public function addReset($identifier, $value, $cssStyle=NULL) { |
|
| 131 | + $bt=$this->getForm()->addButton($identifier, $value, $cssStyle); |
|
| 132 | 132 | $bt->setProperty("type", "reset"); |
| 133 | 133 | return $bt; |
| 134 | 134 | } |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | * @param string $jsCode |
| 139 | 139 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
| 140 | 140 | */ |
| 141 | - public function onValid($jsCode){ |
|
| 141 | + public function onValid($jsCode) { |
|
| 142 | 142 | $form=$this->getForm(); |
| 143 | 143 | $form->addValidationParam("onValid", "%function(){".$jsCode."}%"); |
| 144 | 144 | return $form; |
@@ -149,9 +149,9 @@ discard block |
||
| 149 | 149 | * @param string $jsCode can use event and fields parameters |
| 150 | 150 | * @return HtmlForm |
| 151 | 151 | */ |
| 152 | - public function onSuccess($jsCode){ |
|
| 152 | + public function onSuccess($jsCode) { |
|
| 153 | 153 | $form=$this->getForm(); |
| 154 | - $form->addValidationParam("onSuccess", $jsCode,"%function(event,fields){","}%"); |
|
| 154 | + $form->addValidationParam("onSuccess", $jsCode, "%function(event,fields){", "}%"); |
|
| 155 | 155 | return $form; |
| 156 | 156 | } |
| 157 | 157 | } |
@@ -18,11 +18,11 @@ discard block |
||
| 18 | 18 | protected $_dropdown; |
| 19 | 19 | public function __construct($identifier, $elements=array(), $asIcons=false) { |
| 20 | 20 | parent::__construct($identifier, "div", "ui buttons"); |
| 21 | - if ($asIcons === true) |
|
| 21 | + if ($asIcons===true) |
|
| 22 | 22 | $this->asIcons(); |
| 23 | 23 | $this->addElements($elements, $asIcons); |
| 24 | 24 | } |
| 25 | - protected function createItem($value){ |
|
| 25 | + protected function createItem($value) { |
|
| 26 | 26 | return new HtmlButton("", $value); |
| 27 | 27 | } |
| 28 | 28 | |
@@ -31,10 +31,10 @@ discard block |
||
| 31 | 31 | * @param boolean $asCombo |
| 32 | 32 | * @return HtmlDropdown |
| 33 | 33 | */ |
| 34 | - public function addDropdown($items,$asCombo=false){ |
|
| 35 | - $dd= new HtmlDropdown("dd-".$this->identifier,null,$items); |
|
| 34 | + public function addDropdown($items, $asCombo=false) { |
|
| 35 | + $dd=new HtmlDropdown("dd-".$this->identifier, null, $items); |
|
| 36 | 36 | $dd->asButton(); |
| 37 | - if($asCombo){ |
|
| 37 | + if ($asCombo) { |
|
| 38 | 38 | $dd->setAction("combo"); |
| 39 | 39 | $dd->addToProperty("class", "combo"); |
| 40 | 40 | } |
@@ -50,13 +50,13 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function addElement($element, $asIcon=false) { |
| 52 | 52 | $item=$this->addItem($element); |
| 53 | - if($asIcon) |
|
| 53 | + if ($asIcon) |
|
| 54 | 54 | $item->asIcon($element); |
| 55 | 55 | return $item; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | public function addElements($elements, $asIcons=false) { |
| 59 | - foreach ( $elements as $element ) { |
|
| 59 | + foreach ($elements as $element) { |
|
| 60 | 60 | $this->addElement($element, $asIcons); |
| 61 | 61 | } |
| 62 | 62 | return $this; |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | public function insertOr($aferIndex=0, $or="or") { |
| 66 | 66 | $orElement=new HtmlSemDoubleElement("", "div", "or"); |
| 67 | 67 | $orElement->setProperty("data-text", $or); |
| 68 | - array_splice($this->content, $aferIndex + 1, 0, array ($orElement )); |
|
| 68 | + array_splice($this->content, $aferIndex+1, 0, array($orElement)); |
|
| 69 | 69 | return $this; |
| 70 | 70 | } |
| 71 | 71 | |
@@ -78,8 +78,8 @@ discard block |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | public function asIcons() { |
| 81 | - foreach ( $this->content as $item ) { |
|
| 82 | - if($item instanceof HtmlButton) |
|
| 81 | + foreach ($this->content as $item) { |
|
| 82 | + if ($item instanceof HtmlButton) |
|
| 83 | 83 | $item->asIcon($item->getContent()); |
| 84 | 84 | } |
| 85 | 85 | return $this->addToProperty("class", "icons"); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
| 113 | 113 | */ |
| 114 | 114 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
| 115 | - foreach ( $this->content as $element ) { |
|
| 115 | + foreach ($this->content as $element) { |
|
| 116 | 116 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
| 117 | 117 | } |
| 118 | 118 | return $this; |
@@ -124,10 +124,10 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | public function addClasses($classes=array()) { |
| 126 | 126 | $i=0; |
| 127 | - if(!\is_array($classes)){ |
|
| 128 | - $classes=array_fill (0,$this->count(),$classes); |
|
| 127 | + if (!\is_array($classes)) { |
|
| 128 | + $classes=array_fill(0, $this->count(), $classes); |
|
| 129 | 129 | } |
| 130 | - foreach ( $this->content as $button ) { |
|
| 130 | + foreach ($this->content as $button) { |
|
| 131 | 131 | $button->addToProperty("class", $classes[$i++]); |
| 132 | 132 | } |
| 133 | 133 | return $this; |
@@ -141,8 +141,8 @@ discard block |
||
| 141 | 141 | $this->addElement($function($object)); |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - public function run(JsUtils $js){ |
|
| 145 | - $result= parent::run($js); |
|
| 144 | + public function run(JsUtils $js) { |
|
| 145 | + $result=parent::run($js); |
|
| 146 | 146 | return $result->setItemSelector(".ui.button"); |
| 147 | 147 | } |
| 148 | 148 | |
@@ -20,19 +20,19 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | public function __construct($identifier) { |
| 22 | 22 | parent::__construct($identifier, "tr", ""); |
| 23 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 23 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | public function setColCount($colCount) { |
| 27 | 27 | $count=$this->count(); |
| 28 | - for($i=$count; $i < $colCount; $i++) { |
|
| 28 | + for ($i=$count; $i<$colCount; $i++) { |
|
| 29 | 29 | $item=$this->addItem(NULL); |
| 30 | 30 | $item->setTagName($this->_tdTagName); |
| 31 | 31 | } |
| 32 | 32 | return $this; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public function getColCount(){ |
|
| 35 | + public function getColCount() { |
|
| 36 | 36 | return $this->count(); |
| 37 | 37 | } |
| 38 | 38 | |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param mixed $values |
| 69 | 69 | */ |
| 70 | 70 | public function setValues($values=array()) { |
| 71 | - return $this->_addOrSetValues($values, function(HtmlTD &$cell,$value){$cell->setValue($value);}); |
|
| 71 | + return $this->_addOrSetValues($values, function(HtmlTD &$cell, $value) {$cell->setValue($value); }); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
@@ -76,27 +76,27 @@ discard block |
||
| 76 | 76 | * @param mixed $values |
| 77 | 77 | */ |
| 78 | 78 | public function addValues($values=array()) { |
| 79 | - return $this->_addOrSetValues($values, function(HtmlTD &$cell,$value){$cell->addValue($value);}); |
|
| 79 | + return $this->_addOrSetValues($values, function(HtmlTD &$cell, $value) {$cell->addValue($value); }); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * Sets or adds values to the row cols |
| 84 | 84 | * @param mixed $values |
| 85 | 85 | */ |
| 86 | - protected function _addOrSetValues($values,$callback) { |
|
| 86 | + protected function _addOrSetValues($values, $callback) { |
|
| 87 | 87 | $count=$this->count(); |
| 88 | 88 | if (!\is_array($values)) { |
| 89 | 89 | $values=\array_fill(0, $count, $values); |
| 90 | 90 | } else { |
| 91 | - if (JArray::isAssociative($values) === true) { |
|
| 91 | + if (JArray::isAssociative($values)===true) { |
|
| 92 | 92 | $values=\array_values($values); |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | $count=\min(\sizeof($values), $count); |
| 96 | 96 | |
| 97 | - for($i=0; $i < $count; $i++) { |
|
| 97 | + for ($i=0; $i<$count; $i++) { |
|
| 98 | 98 | $cell=$this->content[$i]; |
| 99 | - $callback($cell,$values[$i]); |
|
| 99 | + $callback($cell, $values[$i]); |
|
| 100 | 100 | } |
| 101 | 101 | return $this; |
| 102 | 102 | } |
@@ -120,24 +120,24 @@ discard block |
||
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | public function getColPosition($colIndex) { |
| 123 | - if($this->_container->_isMerged()!==true) |
|
| 123 | + if ($this->_container->_isMerged()!==true) |
|
| 124 | 124 | return $colIndex; |
| 125 | 125 | $pos=0; |
| 126 | 126 | $rows=$this->_container->getContent(); |
| 127 | - for($i=0; $i < $this->_row; $i++) { |
|
| 127 | + for ($i=0; $i<$this->_row; $i++) { |
|
| 128 | 128 | $max=\min($colIndex, $rows[$i]->count()); |
| 129 | - for($j=0; $j < $max; $j++) { |
|
| 129 | + for ($j=0; $j<$max; $j++) { |
|
| 130 | 130 | $rowspan=$rows[$i]->getItem($j)->getRowspan(); |
| 131 | - if ($rowspan + $i > $this->_row) |
|
| 131 | + if ($rowspan+$i>$this->_row) |
|
| 132 | 132 | $pos++; |
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | - if ($pos > $colIndex) |
|
| 135 | + if ($pos>$colIndex) |
|
| 136 | 136 | return NULL; |
| 137 | 137 | $count=$this->count(); |
| 138 | - for($i=0; $i < $count; $i++) { |
|
| 138 | + for ($i=0; $i<$count; $i++) { |
|
| 139 | 139 | $pos+=$this->content[$i]->getColspan(); |
| 140 | - if ($pos >= $colIndex + 1) |
|
| 140 | + if ($pos>=$colIndex+1) |
|
| 141 | 141 | return $i; |
| 142 | 142 | } |
| 143 | 143 | return null; |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | |
| 146 | 146 | public function conditionalCellFormat($callback, $format) { |
| 147 | 147 | $cells=$this->content; |
| 148 | - foreach ( $cells as $cell ) { |
|
| 148 | + foreach ($cells as $cell) { |
|
| 149 | 149 | $cell->conditionalCellFormat($callback, $format); |
| 150 | 150 | } |
| 151 | 151 | return $this; |
@@ -160,8 +160,8 @@ discard block |
||
| 160 | 160 | |
| 161 | 161 | public function containsStr($needle) { |
| 162 | 162 | $cells=$this->content; |
| 163 | - foreach ( $cells as $cell ) { |
|
| 164 | - if (\strpos($cell->getContent(), $needle) !== false) |
|
| 163 | + foreach ($cells as $cell) { |
|
| 164 | + if (\strpos($cell->getContent(), $needle)!==false) |
|
| 165 | 165 | return true; |
| 166 | 166 | } |
| 167 | 167 | return false; |
@@ -174,13 +174,13 @@ discard block |
||
| 174 | 174 | |
| 175 | 175 | public function applyCells($callback) { |
| 176 | 176 | $cells=$this->content; |
| 177 | - foreach ( $cells as $cell ) { |
|
| 177 | + foreach ($cells as $cell) { |
|
| 178 | 178 | $cell->apply($callback); |
| 179 | 179 | } |
| 180 | 180 | return $this; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - public function toDelete($colIndex){ |
|
| 183 | + public function toDelete($colIndex) { |
|
| 184 | 184 | $this->getItem($colIndex)->toDelete(); |
| 185 | 185 | return $this; |
| 186 | 186 | } |
@@ -19,221 +19,221 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | public static $index=0; |
| 21 | 21 | |
| 22 | - public function __construct($identifier,$instance=NULL,$captions=NULL){ |
|
| 22 | + public function __construct($identifier, $instance=NULL, $captions=NULL) { |
|
| 23 | 23 | $this->widgetIdentifier=$identifier; |
| 24 | 24 | $this->values=[]; |
| 25 | 25 | $this->afterCompile=[]; |
| 26 | - if(isset($instance)) |
|
| 26 | + if (isset($instance)) |
|
| 27 | 27 | $this->setInstance($instance); |
| 28 | 28 | $this->setCaptions($captions); |
| 29 | 29 | $this->captionCallback=NULL; |
| 30 | - $this->defaultValueFunction=function($name,$value){return $value;}; |
|
| 30 | + $this->defaultValueFunction=function($name, $value) {return $value; }; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - public function moveFieldTo($from,$to){ |
|
| 34 | - if(JArray::moveElementTo($this->visibleProperties, $from, $to)){ |
|
| 33 | + public function moveFieldTo($from, $to) { |
|
| 34 | + if (JArray::moveElementTo($this->visibleProperties, $from, $to)) { |
|
| 35 | 35 | return JArray::moveElementTo($this->values, $from, $to); |
| 36 | 36 | } |
| 37 | 37 | return false; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - public function swapFields($index1,$index2){ |
|
| 41 | - if(JArray::swapElements($this->visibleProperties, $index1, $index2)){ |
|
| 40 | + public function swapFields($index1, $index2) { |
|
| 41 | + if (JArray::swapElements($this->visibleProperties, $index1, $index2)) { |
|
| 42 | 42 | return JArray::swapElements($this->values, $index1, $index2); |
| 43 | 43 | } |
| 44 | 44 | return false; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - public function removeField($index){ |
|
| 48 | - \array_splice($this->visibleProperties,$index,1); |
|
| 49 | - \array_splice($this->values,$index,1); |
|
| 50 | - \array_splice($this->captions,$index,1); |
|
| 47 | + public function removeField($index) { |
|
| 48 | + \array_splice($this->visibleProperties, $index, 1); |
|
| 49 | + \array_splice($this->values, $index, 1); |
|
| 50 | + \array_splice($this->captions, $index, 1); |
|
| 51 | 51 | return $this; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - public function getValues(){ |
|
| 54 | + public function getValues() { |
|
| 55 | 55 | $values=[]; |
| 56 | 56 | $index=0; |
| 57 | 57 | $count=$this->count(); |
| 58 | - while($index<$count){ |
|
| 58 | + while ($index<$count) { |
|
| 59 | 59 | $values[]=$this->getValue($index++); |
| 60 | 60 | } |
| 61 | 61 | return $values; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - public function getIdentifier($index=NULL){ |
|
| 65 | - if(!isset($index)) |
|
| 64 | + public function getIdentifier($index=NULL) { |
|
| 65 | + if (!isset($index)) |
|
| 66 | 66 | $index=self::$index; |
| 67 | 67 | $value=$index; |
| 68 | - if(isset($this->values["identifier"])){ |
|
| 69 | - if(\is_string($this->values["identifier"])) |
|
| 68 | + if (isset($this->values["identifier"])) { |
|
| 69 | + if (\is_string($this->values["identifier"])) |
|
| 70 | 70 | $value=JReflection::callMethod($this->instance, $this->values["identifier"], []); |
| 71 | 71 | else |
| 72 | - $value=$this->values["identifier"]($index,$this->instance); |
|
| 72 | + $value=$this->values["identifier"]($index, $this->instance); |
|
| 73 | 73 | } |
| 74 | 74 | return $value; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - public function getValue($index){ |
|
| 77 | + public function getValue($index) { |
|
| 78 | 78 | $property=$this->properties[$index]; |
| 79 | 79 | return $this->_getValue($property, $index); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - protected function _beforeAddProperty($index,&$field){ |
|
| 82 | + protected function _beforeAddProperty($index, &$field) { |
|
| 83 | 83 | |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - protected function _getDefaultValue($name,$value,$index){ |
|
| 86 | + protected function _getDefaultValue($name, $value, $index) { |
|
| 87 | 87 | $func=$this->defaultValueFunction; |
| 88 | 88 | //TODO Check bug on index |
| 89 | - return $func($name,$value,$index,$this->instance); |
|
| 89 | + return $func($name, $value, $index, $this->instance); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - protected function _getPropertyValue(\ReflectionProperty $property,$index){ |
|
| 92 | + protected function _getPropertyValue(\ReflectionProperty $property, $index) { |
|
| 93 | 93 | $property->setAccessible(true); |
| 94 | 94 | return $property->getValue($this->instance); |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - protected function _getValue($property,$index){ |
|
| 97 | + protected function _getValue($property, $index) { |
|
| 98 | 98 | $value=null; |
| 99 | 99 | $propertyName=$property; |
| 100 | - if($property instanceof \ReflectionProperty){ |
|
| 100 | + if ($property instanceof \ReflectionProperty) { |
|
| 101 | 101 | $value=$this->_getPropertyValue($property, $index); |
| 102 | 102 | $propertyName=$property->getName(); |
| 103 | - }elseif(\is_callable($property)) |
|
| 103 | + }elseif (\is_callable($property)) |
|
| 104 | 104 | $value=$property($this->instance); |
| 105 | - elseif(\is_array($property)){ |
|
| 106 | - $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index);}, $property); |
|
| 105 | + elseif (\is_array($property)) { |
|
| 106 | + $values=\array_map(function($v) use ($index){return $this->_getValue($v, $index); }, $property); |
|
| 107 | 107 | $value=\implode("", $values); |
| 108 | - }elseif(\is_string($property)){ |
|
| 108 | + }elseif (\is_string($property)) { |
|
| 109 | 109 | $value=$property; |
| 110 | - if(isset($this->instance->{$property})){ |
|
| 110 | + if (isset($this->instance->{$property})) { |
|
| 111 | 111 | $value=$this->instance->{$property}; |
| 112 | - }elseif(\method_exists($this->instance, $getter=JReflection::getterName($property))){ |
|
| 112 | + }elseif (\method_exists($this->instance, $getter=JReflection::getterName($property))) { |
|
| 113 | 113 | $value=JReflection::callMethod($this->instance, $getter, []); |
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | return $this->_postGetValue($index, $propertyName, $value); |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - protected function _postGetValue($index,$propertyName,$value){ |
|
| 120 | - if(isset($this->values[$index])){ |
|
| 121 | - $value= $this->values[$index]($value,$this->instance,$index,self::$index); |
|
| 122 | - }else{ |
|
| 123 | - $value=$this->_getDefaultValue($propertyName,$value, $index,self::$index); |
|
| 119 | + protected function _postGetValue($index, $propertyName, $value) { |
|
| 120 | + if (isset($this->values[$index])) { |
|
| 121 | + $value=$this->values[$index]($value, $this->instance, $index, self::$index); |
|
| 122 | + } else { |
|
| 123 | + $value=$this->_getDefaultValue($propertyName, $value, $index, self::$index); |
|
| 124 | 124 | } |
| 125 | - if(isset($this->afterCompile[$index])){ |
|
| 126 | - if(\is_callable($this->afterCompile[$index])){ |
|
| 127 | - $this->afterCompile[$index]($value,$this->instance,self::$index); |
|
| 125 | + if (isset($this->afterCompile[$index])) { |
|
| 126 | + if (\is_callable($this->afterCompile[$index])) { |
|
| 127 | + $this->afterCompile[$index]($value, $this->instance, self::$index); |
|
| 128 | 128 | } |
| 129 | 129 | } |
| 130 | 130 | return $value; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - public function insertField($index,$field){ |
|
| 134 | - array_splice( $this->visibleProperties, $index, 0, $field ); |
|
| 133 | + public function insertField($index, $field) { |
|
| 134 | + array_splice($this->visibleProperties, $index, 0, $field); |
|
| 135 | 135 | return $this; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | - public function insertInField($index,$field){ |
|
| 138 | + public function insertInField($index, $field) { |
|
| 139 | 139 | $vb=$this->visibleProperties; |
| 140 | - if(isset($vb[$index])){ |
|
| 141 | - if(\is_array($vb[$index])){ |
|
| 140 | + if (isset($vb[$index])) { |
|
| 141 | + if (\is_array($vb[$index])) { |
|
| 142 | 142 | $this->visibleProperties[$index][]=$field; |
| 143 | - }else{ |
|
| 144 | - $this->visibleProperties[$index]=[$vb[$index],$field]; |
|
| 143 | + } else { |
|
| 144 | + $this->visibleProperties[$index]=[$vb[$index], $field]; |
|
| 145 | 145 | } |
| 146 | - }else{ |
|
| 146 | + } else { |
|
| 147 | 147 | return $this->insertField($index, $field); |
| 148 | 148 | } |
| 149 | 149 | return $this; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - public function addField($field){ |
|
| 152 | + public function addField($field) { |
|
| 153 | 153 | $this->visibleProperties[]=$field; |
| 154 | 154 | return $this; |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - public function addFields($fields){ |
|
| 158 | - $this->visibleProperties=\array_merge($this->visibleProperties,$fields); |
|
| 157 | + public function addFields($fields) { |
|
| 158 | + $this->visibleProperties=\array_merge($this->visibleProperties, $fields); |
|
| 159 | 159 | return $this; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - public function count(){ |
|
| 162 | + public function count() { |
|
| 163 | 163 | return \sizeof($this->properties); |
| 164 | 164 | } |
| 165 | 165 | |
| 166 | - public function visiblePropertiesCount(){ |
|
| 166 | + public function visiblePropertiesCount() { |
|
| 167 | 167 | return \sizeof($this->visibleProperties); |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - public function getProperty($index){ |
|
| 170 | + public function getProperty($index) { |
|
| 171 | 171 | return $this->properties[$index]; |
| 172 | 172 | } |
| 173 | 173 | |
| 174 | - public function getFieldName($index){ |
|
| 174 | + public function getFieldName($index) { |
|
| 175 | 175 | $property=$this->getProperty($index); |
| 176 | - if($property instanceof \ReflectionProperty){ |
|
| 176 | + if ($property instanceof \ReflectionProperty) { |
|
| 177 | 177 | $result=$property->getName(); |
| 178 | - }elseif(\is_callable($property)){ |
|
| 178 | + }elseif (\is_callable($property)) { |
|
| 179 | 179 | $result=$this->visibleProperties[$index]; |
| 180 | - }else{ |
|
| 180 | + } else { |
|
| 181 | 181 | $result=$property; |
| 182 | 182 | } |
| 183 | 183 | return $result; |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | |
| 187 | - protected function showableProperty(\ReflectionProperty $rProperty){ |
|
| 188 | - return JString::startswith($rProperty->getName(),"_")===false; |
|
| 187 | + protected function showableProperty(\ReflectionProperty $rProperty) { |
|
| 188 | + return JString::startswith($rProperty->getName(), "_")===false; |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | public function setInstance($instance) { |
| 192 | - if(\is_string($instance)){ |
|
| 192 | + if (\is_string($instance)) { |
|
| 193 | 193 | $instance=new $instance(); |
| 194 | 194 | } |
| 195 | 195 | $this->instance=$instance; |
| 196 | 196 | $this->properties=[]; |
| 197 | 197 | $this->reflect=new \ReflectionClass($instance); |
| 198 | - if(\sizeof($this->visibleProperties)===0){ |
|
| 198 | + if (\sizeof($this->visibleProperties)===0) { |
|
| 199 | 199 | $this->properties=$this->getDefaultProperties(); |
| 200 | - }else{ |
|
| 201 | - foreach ($this->visibleProperties as $property){ |
|
| 200 | + } else { |
|
| 201 | + foreach ($this->visibleProperties as $property) { |
|
| 202 | 202 | $this->setInstanceProperty($property); |
| 203 | 203 | } |
| 204 | 204 | } |
| 205 | 205 | return $this; |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - private function setInstanceProperty($property){ |
|
| 209 | - if(\is_callable($property)){ |
|
| 208 | + private function setInstanceProperty($property) { |
|
| 209 | + if (\is_callable($property)) { |
|
| 210 | 210 | $this->properties[]=$property; |
| 211 | - }elseif(\is_string($property)){ |
|
| 212 | - try{ |
|
| 211 | + }elseif (\is_string($property)) { |
|
| 212 | + try { |
|
| 213 | 213 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 214 | 214 | $rProperty=$this->reflect->getProperty($property); |
| 215 | 215 | $this->properties[]=$rProperty; |
| 216 | - }catch(\Exception $e){ |
|
| 216 | + }catch (\Exception $e) { |
|
| 217 | 217 | $this->_beforeAddProperty(\sizeof($this->properties), $property); |
| 218 | 218 | $this->properties[]=$property; |
| 219 | 219 | } |
| 220 | - }elseif(\is_int($property)){ |
|
| 220 | + }elseif (\is_int($property)) { |
|
| 221 | 221 | $props=$this->getDefaultProperties(); |
| 222 | - if(isset($props[$property])) |
|
| 222 | + if (isset($props[$property])) |
|
| 223 | 223 | $this->properties[]=$props[$property]; |
| 224 | 224 | else |
| 225 | 225 | $this->properties[]=$property; |
| 226 | - }else{ |
|
| 226 | + } else { |
|
| 227 | 227 | $this->properties[]=$property; |
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - protected function getDefaultProperties(){ |
|
| 231 | + protected function getDefaultProperties() { |
|
| 232 | 232 | $result=[]; |
| 233 | 233 | $properties=$this->reflect->getProperties(); |
| 234 | - foreach ($properties as $property){ |
|
| 234 | + foreach ($properties as $property) { |
|
| 235 | 235 | $showable=$this->showableProperty($property); |
| 236 | - if($showable!==false){ |
|
| 236 | + if ($showable!==false) { |
|
| 237 | 237 | $result[]=$property; |
| 238 | 238 | } |
| 239 | 239 | } |
@@ -245,12 +245,12 @@ discard block |
||
| 245 | 245 | return $this; |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - public function setValueFunction($index,$callback){ |
|
| 248 | + public function setValueFunction($index, $callback) { |
|
| 249 | 249 | $this->values[$index]=$callback; |
| 250 | 250 | return $this; |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - public function setIdentifierFunction($callback){ |
|
| 253 | + public function setIdentifierFunction($callback) { |
|
| 254 | 254 | $this->values["identifier"]=$callback; |
| 255 | 255 | return $this; |
| 256 | 256 | } |
@@ -263,42 +263,42 @@ discard block |
||
| 263 | 263 | return $this->properties; |
| 264 | 264 | } |
| 265 | 265 | |
| 266 | - public function getCaption($index){ |
|
| 267 | - if(isset($this->captions[$index])){ |
|
| 266 | + public function getCaption($index) { |
|
| 267 | + if (isset($this->captions[$index])) { |
|
| 268 | 268 | return $this->captions[$index]; |
| 269 | 269 | } |
| 270 | - if($this->properties[$index] instanceof \ReflectionProperty) |
|
| 270 | + if ($this->properties[$index] instanceof \ReflectionProperty) |
|
| 271 | 271 | return $this->properties[$index]->getName(); |
| 272 | - elseif(\is_callable($this->properties[$index])) |
|
| 272 | + elseif (\is_callable($this->properties[$index])) |
|
| 273 | 273 | return ""; |
| 274 | 274 | else |
| 275 | 275 | return $this->properties[$index]; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - public function getCaptions(){ |
|
| 278 | + public function getCaptions() { |
|
| 279 | 279 | $count=$this->count(); |
| 280 | - if(isset($this->captions)){ |
|
| 281 | - $captions= \array_values($this->captions); |
|
| 280 | + if (isset($this->captions)) { |
|
| 281 | + $captions=\array_values($this->captions); |
|
| 282 | 282 | $captionsSize=\sizeof($captions); |
| 283 | - for($i=$captionsSize;$i<$count;$i++){ |
|
| 283 | + for ($i=$captionsSize; $i<$count; $i++) { |
|
| 284 | 284 | $captions[]=""; |
| 285 | 285 | } |
| 286 | - }else{ |
|
| 286 | + } else { |
|
| 287 | 287 | $captions=[]; |
| 288 | 288 | $index=0; |
| 289 | - while($index<$count){ |
|
| 289 | + while ($index<$count) { |
|
| 290 | 290 | $captions[]=$this->getCaption($index++); |
| 291 | 291 | } |
| 292 | 292 | } |
| 293 | - if(isset($this->captionCallback) && \is_callable($this->captionCallback)){ |
|
| 293 | + if (isset($this->captionCallback) && \is_callable($this->captionCallback)) { |
|
| 294 | 294 | $callback=$this->captionCallback; |
| 295 | - $callback($captions,$this->instance); |
|
| 295 | + $callback($captions, $this->instance); |
|
| 296 | 296 | } |
| 297 | 297 | return $captions; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - public function setCaption($index,$caption){ |
|
| 301 | - if(isset($this->captions)===false) |
|
| 300 | + public function setCaption($index, $caption) { |
|
| 301 | + if (isset($this->captions)===false) |
|
| 302 | 302 | $this->captions=[]; |
| 303 | 303 | $this->captions[$index]=$caption; |
| 304 | 304 | return $this; |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | * @param callable $callback function called after the field compilation |
| 317 | 317 | * @return \Ajax\semantic\widgets\datatable\InstanceViewer |
| 318 | 318 | */ |
| 319 | - public function afterCompile($index,$callback){ |
|
| 319 | + public function afterCompile($index, $callback) { |
|
| 320 | 320 | $this->afterCompile[$index]=$callback; |
| 321 | 321 | return $this; |
| 322 | 322 | } |
@@ -29,23 +29,23 @@ discard block |
||
| 29 | 29 | * @property boolean $_edition |
| 30 | 30 | * @property mixed _modelInstance |
| 31 | 31 | */ |
| 32 | -trait FieldAsTrait{ |
|
| 32 | +trait FieldAsTrait { |
|
| 33 | 33 | |
| 34 | - abstract protected function _getFieldIdentifier($prefix,$name=""); |
|
| 35 | - abstract public function setValueFunction($index,$callback); |
|
| 34 | + abstract protected function _getFieldIdentifier($prefix, $name=""); |
|
| 35 | + abstract public function setValueFunction($index, $callback); |
|
| 36 | 36 | abstract protected function _getFieldName($index); |
| 37 | 37 | abstract protected function _getFieldCaption($index); |
| 38 | - abstract protected function _buttonAsSubmit(BaseHtml &$button,$event,$url,$responseElement=NULL,$parameters=NULL); |
|
| 38 | + abstract protected function _buttonAsSubmit(BaseHtml &$button, $event, $url, $responseElement=NULL, $parameters=NULL); |
|
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * @param HtmlFormField $element |
| 42 | 42 | * @param array $attributes |
| 43 | 43 | */ |
| 44 | - protected function _applyAttributes(BaseHtml $element,&$attributes,$index){ |
|
| 45 | - if(isset($attributes["jsCallback"])){ |
|
| 44 | + protected function _applyAttributes(BaseHtml $element, &$attributes, $index) { |
|
| 45 | + if (isset($attributes["jsCallback"])) { |
|
| 46 | 46 | $callback=$attributes["jsCallback"]; |
| 47 | - if(\is_callable($callback)){ |
|
| 48 | - $callback($element,$this->_modelInstance,$index,InstanceViewer::$index); |
|
| 47 | + if (\is_callable($callback)) { |
|
| 48 | + $callback($element, $this->_modelInstance, $index, InstanceViewer::$index); |
|
| 49 | 49 | //unset($attributes["jsCallback"]); |
| 50 | 50 | } |
| 51 | 51 | } |
@@ -55,43 +55,43 @@ discard block |
||
| 55 | 55 | $element->fromArray($attributes); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - private function _getLabelField($caption,$icon=NULL){ |
|
| 59 | - $label=new HtmlLabel($this->_getFieldIdentifier("lbl"),$caption,$icon); |
|
| 58 | + private function _getLabelField($caption, $icon=NULL) { |
|
| 59 | + $label=new HtmlLabel($this->_getFieldIdentifier("lbl"), $caption, $icon); |
|
| 60 | 60 | return $label; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | |
| 64 | - protected function _addRules(HtmlFormField $element,&$attributes){ |
|
| 65 | - if(isset($attributes["rules"])){ |
|
| 64 | + protected function _addRules(HtmlFormField $element, &$attributes) { |
|
| 65 | + if (isset($attributes["rules"])) { |
|
| 66 | 66 | $rules=$attributes["rules"]; |
| 67 | - if(\is_array($rules)){ |
|
| 67 | + if (\is_array($rules)) { |
|
| 68 | 68 | $element->addRules($rules); |
| 69 | 69 | } |
| 70 | - else{ |
|
| 70 | + else { |
|
| 71 | 71 | $element->addRule($rules); |
| 72 | 72 | } |
| 73 | 73 | unset($attributes["rules"]); |
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - protected function _prepareFormFields(HtmlFormField &$field,$name,&$attributes){ |
|
| 77 | + protected function _prepareFormFields(HtmlFormField &$field, $name, &$attributes) { |
|
| 78 | 78 | $field->setName($name); |
| 79 | 79 | $this->_addRules($field, $attributes); |
| 80 | 80 | return $field; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | - protected function _fieldAs($elementCallback,&$index,$attributes=NULL,$prefix=null){ |
|
| 84 | - $this->setValueFunction($index,function($value,$instance,$index,$rowIndex) use (&$attributes,$elementCallback,$prefix){ |
|
| 83 | + protected function _fieldAs($elementCallback, &$index, $attributes=NULL, $prefix=null) { |
|
| 84 | + $this->setValueFunction($index, function($value, $instance, $index, $rowIndex) use (&$attributes, $elementCallback, $prefix){ |
|
| 85 | 85 | $caption=$this->_getFieldCaption($index); |
| 86 | 86 | $name=$this->_getFieldName($index); |
| 87 | - $id=$this->_getFieldIdentifier($prefix,$name); |
|
| 88 | - if(isset($attributes["name"])){ |
|
| 87 | + $id=$this->_getFieldIdentifier($prefix, $name); |
|
| 88 | + if (isset($attributes["name"])) { |
|
| 89 | 89 | $name=$attributes["name"]; |
| 90 | 90 | unset($attributes["name"]); |
| 91 | 91 | } |
| 92 | - $element=$elementCallback($id,$name,$value,$caption); |
|
| 93 | - if(\is_array($attributes)){ |
|
| 94 | - $this->_applyAttributes($element, $attributes,$index); |
|
| 92 | + $element=$elementCallback($id, $name, $value, $caption); |
|
| 93 | + if (\is_array($attributes)) { |
|
| 94 | + $this->_applyAttributes($element, $attributes, $index); |
|
| 95 | 95 | } |
| 96 | 96 | $element->setDisabled(!$this->_edition); |
| 97 | 97 | return $element; |
@@ -100,188 +100,188 @@ discard block |
||
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | |
| 103 | - public function fieldAsProgress($index,$label=NULL, $attributes=array()){ |
|
| 104 | - $this->setValueFunction($index,function($value) use($label,$attributes){ |
|
| 105 | - $pb=new HtmlProgress($this->_getFieldIdentifier("pb"),$value,$label,$attributes); |
|
| 103 | + public function fieldAsProgress($index, $label=NULL, $attributes=array()) { |
|
| 104 | + $this->setValueFunction($index, function($value) use($label, $attributes){ |
|
| 105 | + $pb=new HtmlProgress($this->_getFieldIdentifier("pb"), $value, $label, $attributes); |
|
| 106 | 106 | return $pb; |
| 107 | 107 | }); |
| 108 | 108 | return $this; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - public function fieldAsRating($index,$max=5, $icon=""){ |
|
| 112 | - $this->setValueFunction($index,function($value) use($max,$icon){ |
|
| 113 | - $rating=new HtmlRating($this->_getFieldIdentifier("rat"),$value,$max,$icon); |
|
| 111 | + public function fieldAsRating($index, $max=5, $icon="") { |
|
| 112 | + $this->setValueFunction($index, function($value) use($max, $icon){ |
|
| 113 | + $rating=new HtmlRating($this->_getFieldIdentifier("rat"), $value, $max, $icon); |
|
| 114 | 114 | return $rating; |
| 115 | 115 | }); |
| 116 | 116 | return $this; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - public function fieldAsLabel($index,$icon=NULL,$attributes=NULL){ |
|
| 120 | - return $this->_fieldAs(function($id,$name,$value) use($icon){ |
|
| 121 | - $lbl=new HtmlLabel($id,$value); |
|
| 122 | - if(isset($icon)) |
|
| 119 | + public function fieldAsLabel($index, $icon=NULL, $attributes=NULL) { |
|
| 120 | + return $this->_fieldAs(function($id, $name, $value) use($icon){ |
|
| 121 | + $lbl=new HtmlLabel($id, $value); |
|
| 122 | + if (isset($icon)) |
|
| 123 | 123 | $lbl->addIcon($icon); |
| 124 | 124 | return $lbl; |
| 125 | - }, $index,$attributes,"label"); |
|
| 125 | + }, $index, $attributes, "label"); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - public function fieldAsHeader($index,$niveau=1,$icon=NULL,$attributes=NULL){ |
|
| 129 | - return $this->_fieldAs(function($id,$name,$value) use($niveau,$icon){ |
|
| 130 | - $header=new HtmlHeader($id,$niveau,$value); |
|
| 131 | - if(isset($icon)) |
|
| 128 | + public function fieldAsHeader($index, $niveau=1, $icon=NULL, $attributes=NULL) { |
|
| 129 | + return $this->_fieldAs(function($id, $name, $value) use($niveau, $icon){ |
|
| 130 | + $header=new HtmlHeader($id, $niveau, $value); |
|
| 131 | + if (isset($icon)) |
|
| 132 | 132 | $header->asIcon($icon, $value); |
| 133 | 133 | return $header; |
| 134 | - }, $index,$attributes,"header"); |
|
| 134 | + }, $index, $attributes, "header"); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | |
| 138 | - public function fieldAsImage($index,$size=Size::MINI,$circular=false){ |
|
| 139 | - $this->setValueFunction($index,function($img) use($size,$circular){ |
|
| 140 | - $image=new HtmlImage($this->_getFieldIdentifier("image"),$img);$image->setSize($size);if($circular)$image->setCircular(); |
|
| 138 | + public function fieldAsImage($index, $size=Size::MINI, $circular=false) { |
|
| 139 | + $this->setValueFunction($index, function($img) use($size, $circular){ |
|
| 140 | + $image=new HtmlImage($this->_getFieldIdentifier("image"), $img); $image->setSize($size); if ($circular)$image->setCircular(); |
|
| 141 | 141 | return $image; |
| 142 | 142 | }); |
| 143 | 143 | return $this; |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - public function fieldAsFlag($index){ |
|
| 147 | - $this->setValueFunction($index,function($flag){ |
|
| 148 | - $flag=new HtmlFlag($this->_getFieldIdentifier("flag"),$flag); |
|
| 146 | + public function fieldAsFlag($index) { |
|
| 147 | + $this->setValueFunction($index, function($flag) { |
|
| 148 | + $flag=new HtmlFlag($this->_getFieldIdentifier("flag"), $flag); |
|
| 149 | 149 | return $flag; |
| 150 | 150 | }); |
| 151 | 151 | return $this; |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - public function fieldAsAvatar($index,$attributes=NULL){ |
|
| 155 | - return $this->_fieldAs(function($id,$name,$value){ |
|
| 156 | - $img=new HtmlImage($id,$value); |
|
| 154 | + public function fieldAsAvatar($index, $attributes=NULL) { |
|
| 155 | + return $this->_fieldAs(function($id, $name, $value) { |
|
| 156 | + $img=new HtmlImage($id, $value); |
|
| 157 | 157 | $img->asAvatar(); |
| 158 | 158 | return $img; |
| 159 | - }, $index,$attributes,"avatar"); |
|
| 159 | + }, $index, $attributes, "avatar"); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - public function fieldAsRadio($index,$attributes=NULL){ |
|
| 163 | - return $this->_fieldAs(function($id,$name,$value) use($attributes){ |
|
| 164 | - $input= new HtmlFormRadio($id,$name,$value,$value); |
|
| 162 | + public function fieldAsRadio($index, $attributes=NULL) { |
|
| 163 | + return $this->_fieldAs(function($id, $name, $value) use($attributes){ |
|
| 164 | + $input=new HtmlFormRadio($id, $name, $value, $value); |
|
| 165 | 165 | return $this->_prepareFormFields($input, $name, $attributes); |
| 166 | - }, $index,$attributes,"radio"); |
|
| 166 | + }, $index, $attributes, "radio"); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - public function fieldAsRadios($index,$elements=[],$attributes=NULL){ |
|
| 170 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($elements){ |
|
| 171 | - return HtmlFormFields::radios($name,$elements,$caption,$value); |
|
| 172 | - }, $index,$attributes,"radios"); |
|
| 169 | + public function fieldAsRadios($index, $elements=[], $attributes=NULL) { |
|
| 170 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($elements){ |
|
| 171 | + return HtmlFormFields::radios($name, $elements, $caption, $value); |
|
| 172 | + }, $index, $attributes, "radios"); |
|
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - public function fieldAsInput($index,$attributes=NULL){ |
|
| 176 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
| 177 | - $input= new HtmlFormInput($id,$caption,"text",$value); |
|
| 175 | + public function fieldAsInput($index, $attributes=NULL) { |
|
| 176 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
| 177 | + $input=new HtmlFormInput($id, $caption, "text", $value); |
|
| 178 | 178 | return $this->_prepareFormFields($input, $name, $attributes); |
| 179 | - }, $index,$attributes,"input"); |
|
| 179 | + }, $index, $attributes, "input"); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - public function fieldAsTextarea($index,$attributes=NULL){ |
|
| 183 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes){ |
|
| 184 | - $textarea=new HtmlFormTextarea($id,$caption,$value); |
|
| 182 | + public function fieldAsTextarea($index, $attributes=NULL) { |
|
| 183 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes){ |
|
| 184 | + $textarea=new HtmlFormTextarea($id, $caption, $value); |
|
| 185 | 185 | return $this->_prepareFormFields($textarea, $name, $attributes); |
| 186 | - }, $index,$attributes,"textarea"); |
|
| 186 | + }, $index, $attributes, "textarea"); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - public function fieldAsElement($index,$tagName="div",$baseClass="",$attributes=NULL){ |
|
| 190 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($attributes,$tagName,$baseClass){ |
|
| 191 | - $div=new HtmlSemDoubleElement($id,$tagName,$baseClass); |
|
| 189 | + public function fieldAsElement($index, $tagName="div", $baseClass="", $attributes=NULL) { |
|
| 190 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($attributes, $tagName, $baseClass){ |
|
| 191 | + $div=new HtmlSemDoubleElement($id, $tagName, $baseClass); |
|
| 192 | 192 | $div->setContent(\htmlentities($value)); |
| 193 | - $textarea=new HtmlFormField("field-".$id, $div,$caption); |
|
| 193 | + $textarea=new HtmlFormField("field-".$id, $div, $caption); |
|
| 194 | 194 | return $this->_prepareFormFields($textarea, $name, $attributes); |
| 195 | - }, $index,$attributes,"element"); |
|
| 195 | + }, $index, $attributes, "element"); |
|
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | |
| 199 | - public function fieldAsHidden($index,$attributes=NULL){ |
|
| 200 | - if(!\is_array($attributes)){ |
|
| 199 | + public function fieldAsHidden($index, $attributes=NULL) { |
|
| 200 | + if (!\is_array($attributes)) { |
|
| 201 | 201 | $attributes=[]; |
| 202 | 202 | } |
| 203 | 203 | $attributes["inputType"]="hidden"; |
| 204 | - return $this->fieldAsInput($index,$attributes); |
|
| 204 | + return $this->fieldAsInput($index, $attributes); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - public function fieldAsCheckbox($index,$attributes=NULL){ |
|
| 208 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($attributes){ |
|
| 209 | - if($caption===null || $caption==="") |
|
| 207 | + public function fieldAsCheckbox($index, $attributes=NULL) { |
|
| 208 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($attributes){ |
|
| 209 | + if ($caption===null || $caption==="") |
|
| 210 | 210 | $caption=""; |
| 211 | - $input=new HtmlFormCheckbox($id,$caption,$this->_instanceViewer->getIdentifier()); |
|
| 211 | + $input=new HtmlFormCheckbox($id, $caption, $this->_instanceViewer->getIdentifier()); |
|
| 212 | 212 | $input->setChecked(JString::isBooleanTrue($value)); |
| 213 | 213 | return $this->_prepareFormFields($input, $name, $attributes); |
| 214 | - }, $index,$attributes,"ck"); |
|
| 214 | + }, $index, $attributes, "ck"); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - public function fieldAsDropDown($index,$elements=[],$multiple=false,$attributes=NULL){ |
|
| 218 | - return $this->_fieldAs(function($id,$name,$value,$caption) use($elements,$multiple,$attributes){ |
|
| 219 | - $dd=new HtmlFormDropdown($id,$elements,$caption,$value); |
|
| 220 | - $dd->asSelect($name,$multiple); |
|
| 217 | + public function fieldAsDropDown($index, $elements=[], $multiple=false, $attributes=NULL) { |
|
| 218 | + return $this->_fieldAs(function($id, $name, $value, $caption) use($elements, $multiple, $attributes){ |
|
| 219 | + $dd=new HtmlFormDropdown($id, $elements, $caption, $value); |
|
| 220 | + $dd->asSelect($name, $multiple); |
|
| 221 | 221 | return $this->_prepareFormFields($dd, $name, $attributes); |
| 222 | - }, $index,$attributes,"dd"); |
|
| 222 | + }, $index, $attributes, "dd"); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | - public function fieldAsMessage($index,$attributes=NULL){ |
|
| 226 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
| 227 | - $mess= new HtmlMessage("message-".$id,$caption); |
|
| 225 | + public function fieldAsMessage($index, $attributes=NULL) { |
|
| 226 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
| 227 | + $mess=new HtmlMessage("message-".$id, $caption); |
|
| 228 | 228 | $mess->addHeader($value); |
| 229 | 229 | return $mess; |
| 230 | - }, $index,$attributes,"message"); |
|
| 230 | + }, $index, $attributes, "message"); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | - public function fieldAsLink($index,$attributes=NULL){ |
|
| 234 | - return $this->_fieldAs(function($id,$name,$value,$caption){ |
|
| 235 | - $lnk= new HtmlLink("message-".$id,"#",$caption); |
|
| 233 | + public function fieldAsLink($index, $attributes=NULL) { |
|
| 234 | + return $this->_fieldAs(function($id, $name, $value, $caption) { |
|
| 235 | + $lnk=new HtmlLink("message-".$id, "#", $caption); |
|
| 236 | 236 | return $lnk; |
| 237 | - }, $index,$attributes,"link"); |
|
| 237 | + }, $index, $attributes, "link"); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | /**Change fields type |
| 241 | 241 | * @param array $types an array or associative array $type=>$attributes |
| 242 | 242 | */ |
| 243 | - public function fieldsAs(array $types){ |
|
| 243 | + public function fieldsAs(array $types) { |
|
| 244 | 244 | $i=0; |
| 245 | - if(JArray::isAssociative($types)){ |
|
| 246 | - foreach ($types as $type=>$attributes){ |
|
| 247 | - if(\is_int($type)) |
|
| 248 | - $this->fieldAs($i++,$attributes,[]); |
|
| 249 | - else{ |
|
| 250 | - $type=preg_replace('/\d/', '', $type ); |
|
| 251 | - $this->fieldAs($i++,$type,$attributes); |
|
| 245 | + if (JArray::isAssociative($types)) { |
|
| 246 | + foreach ($types as $type=>$attributes) { |
|
| 247 | + if (\is_int($type)) |
|
| 248 | + $this->fieldAs($i++, $attributes, []); |
|
| 249 | + else { |
|
| 250 | + $type=preg_replace('/\d/', '', $type); |
|
| 251 | + $this->fieldAs($i++, $type, $attributes); |
|
| 252 | 252 | } |
| 253 | 253 | } |
| 254 | - }else{ |
|
| 255 | - foreach ($types as $type){ |
|
| 256 | - $this->fieldAs($i++,$type); |
|
| 254 | + } else { |
|
| 255 | + foreach ($types as $type) { |
|
| 256 | + $this->fieldAs($i++, $type); |
|
| 257 | 257 | } |
| 258 | 258 | } |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | - public function fieldAs($index,$type,$attributes=NULL){ |
|
| 261 | + public function fieldAs($index, $type, $attributes=NULL) { |
|
| 262 | 262 | $method="fieldAs".\ucfirst($type); |
| 263 | - if(\method_exists($this, $method)){ |
|
| 264 | - if(!\is_array($attributes)){ |
|
| 263 | + if (\method_exists($this, $method)) { |
|
| 264 | + if (!\is_array($attributes)) { |
|
| 265 | 265 | $attributes=[$index]; |
| 266 | - }else{ |
|
| 266 | + } else { |
|
| 267 | 267 | \array_unshift($attributes, $index); |
| 268 | 268 | } |
| 269 | - \call_user_func_array([$this,$method], $attributes); |
|
| 269 | + \call_user_func_array([$this, $method], $attributes); |
|
| 270 | 270 | } |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - public function fieldAsSubmit($index,$cssStyle=NULL,$url=NULL,$responseElement=NULL,$attributes=NULL){ |
|
| 274 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($url,$responseElement,$cssStyle,$attributes){ |
|
| 275 | - $button=new HtmlButton($id,$caption,$cssStyle); |
|
| 276 | - $this->_buttonAsSubmit($button,"click",$url,$responseElement,@$attributes["ajax"]); |
|
| 273 | + public function fieldAsSubmit($index, $cssStyle=NULL, $url=NULL, $responseElement=NULL, $attributes=NULL) { |
|
| 274 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($url, $responseElement, $cssStyle, $attributes){ |
|
| 275 | + $button=new HtmlButton($id, $caption, $cssStyle); |
|
| 276 | + $this->_buttonAsSubmit($button, "click", $url, $responseElement, @$attributes["ajax"]); |
|
| 277 | 277 | return $button; |
| 278 | - }, $index,$attributes,"submit"); |
|
| 278 | + }, $index, $attributes, "submit"); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - public function fieldAsButton($index,$cssStyle=NULL,$attributes=NULL){ |
|
| 282 | - return $this->_fieldAs(function($id,$name,$value,$caption) use ($cssStyle){ |
|
| 283 | - $button=new HtmlButton($id,$value,$cssStyle); |
|
| 281 | + public function fieldAsButton($index, $cssStyle=NULL, $attributes=NULL) { |
|
| 282 | + return $this->_fieldAs(function($id, $name, $value, $caption) use ($cssStyle){ |
|
| 283 | + $button=new HtmlButton($id, $value, $cssStyle); |
|
| 284 | 284 | return $button; |
| 285 | - }, $index,$attributes,"button"); |
|
| 285 | + }, $index, $attributes, "button"); |
|
| 286 | 286 | } |
| 287 | 287 | } |
@@ -12,13 +12,13 @@ |
||
| 12 | 12 | * @param array $parameters |
| 13 | 13 | * @return Response |
| 14 | 14 | */ |
| 15 | - public function renderView($viewName,$parameters=[]){ |
|
| 15 | + public function renderView($viewName, $parameters=[]) { |
|
| 16 | 16 | $twig=$this->container->get("twig"); |
| 17 | 17 | $this->compile($parameters); |
| 18 | 18 | return new Response($twig->render($viewName, $parameters)); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - public function generateUrl($path){ |
|
| 21 | + public function generateUrl($path) { |
|
| 22 | 22 | $request=Request::createFromGlobals(); |
| 23 | 23 | return $request->getBaseUrl().$path; |
| 24 | 24 | } |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | |
| 7 | 7 | class JquerySemantic extends Jquery_ { |
| 8 | 8 | |
| 9 | - public function __construct(RouterInterface $router,ContainerInterface $container ){ |
|
| 10 | - parent::__construct(["semantic"=>true,"defer"=>true],$router); |
|
| 9 | + public function __construct(RouterInterface $router, ContainerInterface $container) { |
|
| 10 | + parent::__construct(["semantic"=>true, "defer"=>true], $router); |
|
| 11 | 11 | $this->container=$container; |
| 12 | 12 | } |
| 13 | 13 | } |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | |
| 7 | 7 | class JqueryBootstrap extends Jquery_ { |
| 8 | 8 | |
| 9 | - public function __construct(RouterInterface $router,ContainerInterface $container ){ |
|
| 10 | - parent::__construct(["bootstrap"=>true,"defer"=>true],$router); |
|
| 9 | + public function __construct(RouterInterface $router, ContainerInterface $container) { |
|
| 10 | + parent::__construct(["bootstrap"=>true, "defer"=>true], $router); |
|
| 11 | 11 | $this->container=$container; |
| 12 | 12 | } |
| 13 | 13 | } |
@@ -12,34 +12,34 @@ discard block |
||
| 12 | 12 | use Ajax\semantic\html\base\traits\MenuItemTrait; |
| 13 | 13 | |
| 14 | 14 | class HtmlDropdownItem extends HtmlSemDoubleElement { |
| 15 | - use IconTrait,MenuItemTrait; |
|
| 16 | - public function __construct($identifier, $content="",$value=NULL,$image=NULL,$description=NULL) { |
|
| 15 | + use IconTrait, MenuItemTrait; |
|
| 16 | + public function __construct($identifier, $content="", $value=NULL, $image=NULL, $description=NULL) { |
|
| 17 | 17 | parent::__construct($identifier, "a"); |
| 18 | 18 | $this->setClass("item"); |
| 19 | 19 | $this->setContent($content); |
| 20 | - if($value!==NULL) |
|
| 20 | + if ($value!==NULL) |
|
| 21 | 21 | $this->setData($value); |
| 22 | - if($image!==NULL) |
|
| 22 | + if ($image!==NULL) |
|
| 23 | 23 | $this->asMiniAvatar($image); |
| 24 | - if($description!==NULL) |
|
| 24 | + if ($description!==NULL) |
|
| 25 | 25 | $this->setDescription($description); |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - public function setDescription($description){ |
|
| 29 | - $descO=new HtmlDoubleElement("desc-".$this->identifier,"span"); |
|
| 28 | + public function setDescription($description) { |
|
| 29 | + $descO=new HtmlDoubleElement("desc-".$this->identifier, "span"); |
|
| 30 | 30 | $descO->setClass("description"); |
| 31 | 31 | $descO->setContent($description); |
| 32 | - return $this->addContent($descO,true); |
|
| 32 | + return $this->addContent($descO, true); |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public function setData($value){ |
|
| 35 | + public function setData($value) { |
|
| 36 | 36 | $this->setProperty("data-value", $value); |
| 37 | 37 | return $this; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - public function asOption(){ |
|
| 40 | + public function asOption() { |
|
| 41 | 41 | $this->tagName="option"; |
| 42 | - if($this->getProperty("data-value")!==null) |
|
| 42 | + if ($this->getProperty("data-value")!==null) |
|
| 43 | 43 | $this->setProperty("value", $this->getProperty("data-value")); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -47,11 +47,11 @@ discard block |
||
| 47 | 47 | * @param string $image the image src |
| 48 | 48 | * @return HtmlImg |
| 49 | 49 | */ |
| 50 | - public function asMiniAvatar($image){ |
|
| 50 | + public function asMiniAvatar($image) { |
|
| 51 | 51 | $this->tagName="div"; |
| 52 | - $img=new HtmlImg("image-".$this->identifier,$image); |
|
| 52 | + $img=new HtmlImg("image-".$this->identifier, $image); |
|
| 53 | 53 | $img->setClass("ui mini avatar image"); |
| 54 | - $this->addContent($img,true); |
|
| 54 | + $this->addContent($img, true); |
|
| 55 | 55 | return $this; |
| 56 | 56 | } |
| 57 | 57 | |
@@ -60,9 +60,9 @@ discard block |
||
| 60 | 60 | * @param string $icon |
| 61 | 61 | * @return HtmlDropdownItem |
| 62 | 62 | */ |
| 63 | - public function asIcon($caption,$icon){ |
|
| 63 | + public function asIcon($caption, $icon) { |
|
| 64 | 64 | $this->setContent($caption); |
| 65 | - $this->addContent(new HtmlIcon("", $icon),true); |
|
| 65 | + $this->addContent(new HtmlIcon("", $icon), true); |
|
| 66 | 66 | return $this; |
| 67 | 67 | } |
| 68 | 68 | |
@@ -71,23 +71,23 @@ discard block |
||
| 71 | 71 | * @param string $color |
| 72 | 72 | * @return HtmlDropdownItem |
| 73 | 73 | */ |
| 74 | - public function asCircularLabel($caption,$color){ |
|
| 74 | + public function asCircularLabel($caption, $color) { |
|
| 75 | 75 | $this->setContent($caption); |
| 76 | 76 | $lbl=new HtmlLabel(""); |
| 77 | 77 | $lbl->setCircular()->setColor($color)->setEmpty(); |
| 78 | - $this->addContent($lbl,true); |
|
| 78 | + $this->addContent($lbl, true); |
|
| 79 | 79 | return $this; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | |
| 83 | 83 | |
| 84 | 84 | public function addMenuItem($items) { |
| 85 | - $menu=new HtmlMenu("menu-" . $this->identifier, $items); |
|
| 85 | + $menu=new HtmlMenu("menu-".$this->identifier, $items); |
|
| 86 | 86 | $content=$this->content; |
| 87 | 87 | $this->setTagName("div"); |
| 88 | 88 | $this->setProperty("class", "item"); |
| 89 | 89 | $icon=new HtmlIcon("", "dropdown"); |
| 90 | - $this->content=[$icon,new HtmlSemDoubleElement("","span","text",$content),$menu]; |
|
| 90 | + $this->content=[$icon, new HtmlSemDoubleElement("", "span", "text", $content), $menu]; |
|
| 91 | 91 | return $menu; |
| 92 | 92 | } |
| 93 | 93 | |
@@ -96,14 +96,14 @@ discard block |
||
| 96 | 96 | * @param string $icon |
| 97 | 97 | * @return HtmlDropdownItem |
| 98 | 98 | */ |
| 99 | - public static function searchInput($placeholder=NULL,$icon=NULL){ |
|
| 100 | - return (new HtmlDropdownItem(""))->asSearchInput($placeholder,$icon); |
|
| 99 | + public static function searchInput($placeholder=NULL, $icon=NULL) { |
|
| 100 | + return (new HtmlDropdownItem(""))->asSearchInput($placeholder, $icon); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | /** |
| 104 | 104 | * @return HtmlDropdownItem |
| 105 | 105 | */ |
| 106 | - public static function divider(){ |
|
| 106 | + public static function divider() { |
|
| 107 | 107 | return (new HtmlDropdownItem(""))->asDivider(); |
| 108 | 108 | } |
| 109 | 109 | |
@@ -112,8 +112,8 @@ discard block |
||
| 112 | 112 | * @param string $icon |
| 113 | 113 | * @return HtmlDropdownItem |
| 114 | 114 | */ |
| 115 | - public static function header($caption=NULL,$icon=NULL){ |
|
| 116 | - return (new HtmlDropdownItem(""))->asHeader($caption,$icon); |
|
| 115 | + public static function header($caption=NULL, $icon=NULL) { |
|
| 116 | + return (new HtmlDropdownItem(""))->asHeader($caption, $icon); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -121,8 +121,8 @@ discard block |
||
| 121 | 121 | * @param string $color |
| 122 | 122 | * @return HtmlDropdownItem |
| 123 | 123 | */ |
| 124 | - public static function circular($caption,$color){ |
|
| 125 | - return (new HtmlDropdownItem(""))->asCircularLabel($caption,$color); |
|
| 124 | + public static function circular($caption, $color) { |
|
| 125 | + return (new HtmlDropdownItem(""))->asCircularLabel($caption, $color); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -130,8 +130,8 @@ discard block |
||
| 130 | 130 | * @param string $icon |
| 131 | 131 | * @return HtmlDropdownItem |
| 132 | 132 | */ |
| 133 | - public static function icon($caption,$icon){ |
|
| 134 | - return (new HtmlDropdownItem(""))->asIcon($caption,$icon); |
|
| 133 | + public static function icon($caption, $icon) { |
|
| 134 | + return (new HtmlDropdownItem(""))->asIcon($caption, $icon); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | * @param string $image |
| 140 | 140 | * @return HtmlDropdownItem |
| 141 | 141 | */ |
| 142 | - public static function avatar($caption,$image){ |
|
| 143 | - return (new HtmlDropdownItem("",$caption))->asMiniAvatar($image); |
|
| 142 | + public static function avatar($caption, $image) { |
|
| 143 | + return (new HtmlDropdownItem("", $caption))->asMiniAvatar($image); |
|
| 144 | 144 | } |
| 145 | 145 | } |