@@ -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; |
@@ -23,6 +23,10 @@ discard block |
||
| 23 | 23 | private $_footer; |
| 24 | 24 | private $_afterCompileEvents; |
| 25 | 25 | |
| 26 | + /** |
|
| 27 | + * @param integer $rowCount |
|
| 28 | + * @param integer $colCount |
|
| 29 | + */ |
|
| 26 | 30 | public function __construct($identifier, $rowCount, $colCount) { |
| 27 | 31 | parent::__construct($identifier, "table", "ui table"); |
| 28 | 32 | $this->content=array (); |
@@ -112,7 +116,7 @@ discard block |
||
| 112 | 116 | /** |
| 113 | 117 | * Retuns the row at $rowIndex |
| 114 | 118 | * @param int $rowIndex |
| 115 | - * @return \Ajax\semantic\html\content\HtmlTR |
|
| 119 | + * @return \Ajax\common\html\HtmlDoubleElement |
|
| 116 | 120 | */ |
| 117 | 121 | public function getRow($rowIndex) { |
| 118 | 122 | return $this->getBody()->getRow($rowIndex); |
@@ -154,7 +158,7 @@ discard block |
||
| 154 | 158 | * Sets values to the col at index $colIndex |
| 155 | 159 | * @param int $colIndex |
| 156 | 160 | * @param array $values |
| 157 | - * @return \Ajax\semantic\html\collections\HtmlTable |
|
| 161 | + * @return HtmlTable |
|
| 158 | 162 | */ |
| 159 | 163 | public function setColValues($colIndex, $values=array()) { |
| 160 | 164 | $this->getBody()->setColValues($colIndex, $values); |
@@ -165,7 +169,7 @@ discard block |
||
| 165 | 169 | * Sets values to the row at index $rowIndex |
| 166 | 170 | * @param int $rowIndex |
| 167 | 171 | * @param array $values |
| 168 | - * @return \Ajax\semantic\html\collections\HtmlTable |
|
| 172 | + * @return HtmlTable |
|
| 169 | 173 | */ |
| 170 | 174 | public function setRowValues($rowIndex, $values=array()) { |
| 171 | 175 | $this->getBody()->setRowValues($rowIndex, $values); |
@@ -188,6 +192,9 @@ discard block |
||
| 188 | 192 | return $this->colAlign($colIndex, "colLeft"); |
| 189 | 193 | } |
| 190 | 194 | |
| 195 | + /** |
|
| 196 | + * @param string $function |
|
| 197 | + */ |
|
| 191 | 198 | private function colAlign($colIndex, $function) { |
| 192 | 199 | if (\is_array($colIndex)) { |
| 193 | 200 | foreach ( $colIndex as $cIndex ) { |
@@ -263,7 +270,7 @@ discard block |
||
| 263 | 270 | |
| 264 | 271 | /** |
| 265 | 272 | * @param array $parts |
| 266 | - * @return \Ajax\semantic\html\collections\HtmlTable |
|
| 273 | + * @return HtmlTable |
|
| 267 | 274 | */ |
| 268 | 275 | public function setCompileParts($parts=["tbody"]) { |
| 269 | 276 | $this->_compileParts=$parts; |
@@ -286,7 +293,7 @@ discard block |
||
| 286 | 293 | * The callback function called after the insertion of each row when fromDatabaseObjects is called |
| 287 | 294 | * callback function takes the parameters $row : the row inserted and $object: the instance of model used |
| 288 | 295 | * @param callable $callback |
| 289 | - * @return \Ajax\semantic\html\collections\HtmlTable |
|
| 296 | + * @return HtmlTable |
|
| 290 | 297 | */ |
| 291 | 298 | public function onNewRow($callback) { |
| 292 | 299 | $this->_afterCompileEvents["onNewRow"]=$callback; |
@@ -5,7 +5,6 @@ |
||
| 5 | 5 | use Ajax\semantic\html\base\HtmlSemDoubleElement; |
| 6 | 6 | use Ajax\JsUtils; |
| 7 | 7 | use Ajax\service\JArray; |
| 8 | - |
|
| 9 | 8 | use Ajax\semantic\html\base\constants\State; |
| 10 | 9 | |
| 11 | 10 | class HtmlProgress extends HtmlSemDoubleElement { |
@@ -25,10 +25,10 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | public function __construct($identifier, $rowCount, $colCount) { |
| 27 | 27 | parent::__construct($identifier, "table", "ui table"); |
| 28 | - $this->content=array (); |
|
| 28 | + $this->content=array(); |
|
| 29 | 29 | $this->setRowCount($rowCount, $colCount); |
| 30 | - $this->_variations=[ Variation::CELLED,Variation::PADDED,Variation::COMPACT ]; |
|
| 31 | - $this->_compileParts=["thead","tbody","tfoot"]; |
|
| 30 | + $this->_variations=[Variation::CELLED, Variation::PADDED, Variation::COMPACT]; |
|
| 31 | + $this->_compileParts=["thead", "tbody", "tfoot"]; |
|
| 32 | 32 | $this->_afterCompileEvents=[]; |
| 33 | 33 | } |
| 34 | 34 | |
@@ -46,9 +46,9 @@ discard block |
||
| 46 | 46 | * @return HtmlTableContent |
| 47 | 47 | */ |
| 48 | 48 | public function getPart($key) { |
| 49 | - if (\array_key_exists($key, $this->content) === false) { |
|
| 49 | + if (\array_key_exists($key, $this->content)===false) { |
|
| 50 | 50 | $this->content[$key]=new HtmlTableContent("", $key); |
| 51 | - if ($key !== "tbody") { |
|
| 51 | + if ($key!=="tbody") { |
|
| 52 | 52 | $this->content[$key]->setRowCount(1, $this->_colCount); |
| 53 | 53 | } |
| 54 | 54 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | * @return boolean |
| 86 | 86 | */ |
| 87 | 87 | public function hasPart($key) { |
| 88 | - return \array_key_exists($key, $this->content) === true; |
|
| 88 | + return \array_key_exists($key, $this->content)===true; |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | |
| 191 | 191 | private function colAlign($colIndex, $function) { |
| 192 | 192 | if (\is_array($colIndex)) { |
| 193 | - foreach ( $colIndex as $cIndex ) { |
|
| 193 | + foreach ($colIndex as $cIndex) { |
|
| 194 | 194 | $this->colAlign($cIndex, $function); |
| 195 | 195 | } |
| 196 | 196 | } else { |
@@ -229,12 +229,12 @@ discard block |
||
| 229 | 229 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
| 230 | 230 | */ |
| 231 | 231 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 232 | - if(\sizeof($this->_compileParts)<3){ |
|
| 232 | + if (\sizeof($this->_compileParts)<3) { |
|
| 233 | 233 | $this->_template="%content%"; |
| 234 | 234 | $this->refresh(); |
| 235 | - }else{ |
|
| 235 | + } else { |
|
| 236 | 236 | if ($this->propertyContains("class", "sortable")) { |
| 237 | - $this->addEvent("execute", "$('#" . $this->identifier . "').tablesort();"); |
|
| 237 | + $this->addEvent("execute", "$('#".$this->identifier."').tablesort();"); |
|
| 238 | 238 | } |
| 239 | 239 | } |
| 240 | 240 | $this->content=JArray::sortAssociative($this->content, $this->_compileParts); |
@@ -250,13 +250,13 @@ discard block |
||
| 250 | 250 | public function fromDatabaseObject($object, $function) { |
| 251 | 251 | $result=$function($object); |
| 252 | 252 | if (\is_array($result)) { |
| 253 | - $result= $this->addRow($function($object)); |
|
| 253 | + $result=$this->addRow($function($object)); |
|
| 254 | 254 | } else { |
| 255 | - $result= $this->getBody()->_addRow($result); |
|
| 255 | + $result=$this->getBody()->_addRow($result); |
|
| 256 | 256 | } |
| 257 | - if(isset($this->_afterCompileEvents["onNewRow"])){ |
|
| 258 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
| 259 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
| 257 | + if (isset($this->_afterCompileEvents["onNewRow"])) { |
|
| 258 | + if (\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
| 259 | + $this->_afterCompileEvents["onNewRow"]($result, $object); |
|
| 260 | 260 | } |
| 261 | 261 | return $result; |
| 262 | 262 | } |
@@ -270,14 +270,14 @@ discard block |
||
| 270 | 270 | return $this; |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - public function refresh(){ |
|
| 273 | + public function refresh() { |
|
| 274 | 274 | $this->_footer=$this->getFooter(); |
| 275 | 275 | $this->addEvent("execute", '$("#'.$this->identifier.' tfoot").replaceWith("'.\addslashes($this->_footer).'");'); |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - public function run(JsUtils $js){ |
|
| 279 | - $result= parent::run($js); |
|
| 280 | - if(isset($this->_footer)) |
|
| 278 | + public function run(JsUtils $js) { |
|
| 279 | + $result=parent::run($js); |
|
| 280 | + if (isset($this->_footer)) |
|
| 281 | 281 | $this->_footer->run($js); |
| 282 | 282 | return $result; |
| 283 | 283 | } |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | if(\sizeof($this->_compileParts)<3){ |
| 233 | 233 | $this->_template="%content%"; |
| 234 | 234 | $this->refresh(); |
| 235 | - }else{ |
|
| 235 | + } else{ |
|
| 236 | 236 | if ($this->propertyContains("class", "sortable")) { |
| 237 | 237 | $this->addEvent("execute", "$('#" . $this->identifier . "').tablesort();"); |
| 238 | 238 | } |
@@ -255,8 +255,9 @@ discard block |
||
| 255 | 255 | $result= $this->getBody()->_addRow($result); |
| 256 | 256 | } |
| 257 | 257 | if(isset($this->_afterCompileEvents["onNewRow"])){ |
| 258 | - if(\is_callable($this->_afterCompileEvents["onNewRow"])) |
|
| 259 | - $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
| 258 | + if(\is_callable($this->_afterCompileEvents["onNewRow"])) { |
|
| 259 | + $this->_afterCompileEvents["onNewRow"]($result,$object); |
|
| 260 | + } |
|
| 260 | 261 | } |
| 261 | 262 | return $result; |
| 262 | 263 | } |
@@ -277,8 +278,9 @@ discard block |
||
| 277 | 278 | |
| 278 | 279 | public function run(JsUtils $js){ |
| 279 | 280 | $result= parent::run($js); |
| 280 | - if(isset($this->_footer)) |
|
| 281 | - $this->_footer->run($js); |
|
| 281 | + if(isset($this->_footer)) { |
|
| 282 | + $this->_footer->run($js); |
|
| 283 | + } |
|
| 282 | 284 | return $result; |
| 283 | 285 | } |
| 284 | 286 | |
@@ -1,13 +1,13 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace Ajax\semantic\html\collections\table\traits; |
| 3 | 3 | |
| 4 | -trait TableTrait{ |
|
| 4 | +trait TableTrait { |
|
| 5 | 5 | /** |
| 6 | 6 | * @return HtmlTable |
| 7 | 7 | */ |
| 8 | 8 | abstract protected function getTable(); |
| 9 | 9 | |
| 10 | - protected function addToPropertyTable($property,$value){ |
|
| 10 | + protected function addToPropertyTable($property, $value) { |
|
| 11 | 11 | return $this->getTable()->addToProperty($property, $value); |
| 12 | 12 | } |
| 13 | 13 | |
@@ -18,8 +18,8 @@ discard block |
||
| 18 | 18 | public function setBasic($very=false) { |
| 19 | 19 | $table=$this->getTable(); |
| 20 | 20 | if ($very) |
| 21 | - $table->addToPropertyCtrl("class", "very", array ("very" )); |
|
| 22 | - return $table->addToPropertyCtrl("class", "basic", array ("basic" )); |
|
| 21 | + $table->addToPropertyCtrl("class", "very", array("very")); |
|
| 22 | + return $table->addToPropertyCtrl("class", "basic", array("basic")); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function setCollapsing() { |
@@ -17,8 +17,9 @@ |
||
| 17 | 17 | |
| 18 | 18 | public function setBasic($very=false) { |
| 19 | 19 | $table=$this->getTable(); |
| 20 | - if ($very) |
|
| 21 | - $table->addToPropertyCtrl("class", "very", array ("very" )); |
|
| 20 | + if ($very) { |
|
| 21 | + $table->addToPropertyCtrl("class", "very", array ("very" )); |
|
| 22 | + } |
|
| 22 | 23 | return $table->addToPropertyCtrl("class", "basic", array ("basic" )); |
| 23 | 24 | } |
| 24 | 25 | |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | class JArray { |
| 6 | 6 | |
| 7 | 7 | public static function isAssociative($array) { |
| 8 | - return (array_values($array) !== $array); |
|
| 8 | + return (array_values($array)!==$array); |
|
| 9 | 9 | // return (array_keys($array)!==range(0, count($array)-1)); |
| 10 | 10 | } |
| 11 | 11 | |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | return $array[$key]; |
| 15 | 15 | } |
| 16 | 16 | $values=array_values($array); |
| 17 | - if ($pos < sizeof($values)) |
|
| 17 | + if ($pos<sizeof($values)) |
|
| 18 | 18 | return $values[$pos]; |
| 19 | 19 | } |
| 20 | 20 | |
@@ -22,12 +22,12 @@ discard block |
||
| 22 | 22 | $result=NULL; |
| 23 | 23 | if (array_key_exists($key, $array)) { |
| 24 | 24 | $result=$array[$key]; |
| 25 | - if ($condition($result) === true) |
|
| 25 | + if ($condition($result)===true) |
|
| 26 | 26 | return $result; |
| 27 | 27 | } |
| 28 | 28 | $values=array_values($array); |
| 29 | - foreach ( $values as $val ) { |
|
| 30 | - if ($condition($val) === true) |
|
| 29 | + foreach ($values as $val) { |
|
| 30 | + if ($condition($val)===true) |
|
| 31 | 31 | return $val; |
| 32 | 32 | } |
| 33 | 33 | return $result; |
@@ -44,11 +44,11 @@ discard block |
||
| 44 | 44 | $result=""; |
| 45 | 45 | if (\is_array($glue)) { |
| 46 | 46 | $size=\sizeof($pieces); |
| 47 | - if ($size > 0) { |
|
| 48 | - for($i=0; $i < $size - 1; $i++) { |
|
| 49 | - $result.=$pieces[$i] . @$glue[$i]; |
|
| 47 | + if ($size>0) { |
|
| 48 | + for ($i=0; $i<$size-1; $i++) { |
|
| 49 | + $result.=$pieces[$i].@$glue[$i]; |
|
| 50 | 50 | } |
| 51 | - $result.=$pieces[$size - 1]; |
|
| 51 | + $result.=$pieces[$size-1]; |
|
| 52 | 52 | } |
| 53 | 53 | } else { |
| 54 | 54 | $result=\implode($glue, $pieces); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | public static function dimension($array) { |
| 60 | 60 | if (is_array(reset($array))) { |
| 61 | - $return=self::dimension(reset($array)) + 1; |
|
| 61 | + $return=self::dimension(reset($array))+1; |
|
| 62 | 62 | } else { |
| 63 | 63 | $return=1; |
| 64 | 64 | } |
@@ -66,8 +66,8 @@ discard block |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | public static function sortAssociative($array, $sortedKeys=array()) { |
| 69 | - $newArray=array (); |
|
| 70 | - foreach ( $sortedKeys as $key ) { |
|
| 69 | + $newArray=array(); |
|
| 70 | + foreach ($sortedKeys as $key) { |
|
| 71 | 71 | if (\array_key_exists($key, $array)) { |
| 72 | 72 | $newArray[$key]=$array[$key]; |
| 73 | 73 | } |
@@ -75,27 +75,27 @@ discard block |
||
| 75 | 75 | return $newArray; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - public static function modelArray($objects,$identifierFunction=NULL,$modelFunction=NULL){ |
|
| 78 | + public static function modelArray($objects, $identifierFunction=NULL, $modelFunction=NULL) { |
|
| 79 | 79 | $result=[]; |
| 80 | - if(isset($modelFunction)===false){ |
|
| 80 | + if (isset($modelFunction)===false) { |
|
| 81 | 81 | $modelFunction="__toString"; |
| 82 | 82 | } |
| 83 | - if(isset($identifierFunction)===false){ |
|
| 84 | - foreach ($objects as $object){ |
|
| 83 | + if (isset($identifierFunction)===false) { |
|
| 84 | + foreach ($objects as $object) { |
|
| 85 | 85 | $result[]=self::callFunction($object, $modelFunction); |
| 86 | 86 | } |
| 87 | - }else{ |
|
| 88 | - foreach ($objects as $object){ |
|
| 87 | + } else { |
|
| 88 | + foreach ($objects as $object) { |
|
| 89 | 89 | $result[self::callFunction($object, $identifierFunction)]=self::callFunction($object, $modelFunction); |
| 90 | 90 | } |
| 91 | 91 | } |
| 92 | 92 | return $result; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - private static function callFunction($object,$callback){ |
|
| 96 | - if(\is_string($callback)) |
|
| 97 | - return \call_user_func(array($object, $callback),[]); |
|
| 98 | - else if (\is_callable($callback)){ |
|
| 95 | + private static function callFunction($object, $callback) { |
|
| 96 | + if (\is_string($callback)) |
|
| 97 | + return \call_user_func(array($object, $callback), []); |
|
| 98 | + else if (\is_callable($callback)) { |
|
| 99 | 99 | return $callback($object); |
| 100 | 100 | } |
| 101 | 101 | } |
@@ -14,21 +14,24 @@ discard block |
||
| 14 | 14 | return $array[$key]; |
| 15 | 15 | } |
| 16 | 16 | $values=array_values($array); |
| 17 | - if ($pos < sizeof($values)) |
|
| 18 | - return $values[$pos]; |
|
| 17 | + if ($pos < sizeof($values)) { |
|
| 18 | + return $values[$pos]; |
|
| 19 | + } |
|
| 19 | 20 | } |
| 20 | 21 | |
| 21 | 22 | public static function getConditionalValue($array, $key, $condition) { |
| 22 | 23 | $result=NULL; |
| 23 | 24 | if (array_key_exists($key, $array)) { |
| 24 | 25 | $result=$array[$key]; |
| 25 | - if ($condition($result) === true) |
|
| 26 | - return $result; |
|
| 26 | + if ($condition($result) === true) { |
|
| 27 | + return $result; |
|
| 28 | + } |
|
| 27 | 29 | } |
| 28 | 30 | $values=array_values($array); |
| 29 | 31 | foreach ( $values as $val ) { |
| 30 | - if ($condition($val) === true) |
|
| 31 | - return $val; |
|
| 32 | + if ($condition($val) === true) { |
|
| 33 | + return $val; |
|
| 34 | + } |
|
| 32 | 35 | } |
| 33 | 36 | return $result; |
| 34 | 37 | } |
@@ -36,8 +39,9 @@ discard block |
||
| 36 | 39 | public static function getDefaultValue($array, $key, $default=NULL) { |
| 37 | 40 | if (array_key_exists($key, $array)) { |
| 38 | 41 | return $array[$key]; |
| 39 | - } else |
|
| 40 | - return $default; |
|
| 42 | + } else { |
|
| 43 | + return $default; |
|
| 44 | + } |
|
| 41 | 45 | } |
| 42 | 46 | |
| 43 | 47 | public static function implode($glue, $pieces) { |
@@ -84,7 +88,7 @@ discard block |
||
| 84 | 88 | foreach ($objects as $object){ |
| 85 | 89 | $result[]=self::callFunction($object, $modelFunction); |
| 86 | 90 | } |
| 87 | - }else{ |
|
| 91 | + } else{ |
|
| 88 | 92 | foreach ($objects as $object){ |
| 89 | 93 | $result[self::callFunction($object, $identifierFunction)]=self::callFunction($object, $modelFunction); |
| 90 | 94 | } |
@@ -93,9 +97,9 @@ discard block |
||
| 93 | 97 | } |
| 94 | 98 | |
| 95 | 99 | private static function callFunction($object,$callback){ |
| 96 | - if(\is_string($callback)) |
|
| 97 | - return \call_user_func(array($object, $callback),[]); |
|
| 98 | - else if (\is_callable($callback)){ |
|
| 100 | + if(\is_string($callback)) { |
|
| 101 | + return \call_user_func(array($object, $callback),[]); |
|
| 102 | + } else if (\is_callable($callback)){ |
|
| 99 | 103 | return $callback($object); |
| 100 | 104 | } |
| 101 | 105 | } |
@@ -7,21 +7,21 @@ |
||
| 7 | 7 | |
| 8 | 8 | class HtmlFormDropdown extends HtmlFormField { |
| 9 | 9 | |
| 10 | - public function __construct($identifier,$items=array(), $label=NULL,$value=NULL,$multiple=false,$associative=true) { |
|
| 11 | - parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier,$value,$items,$associative))->asSelect($identifier,$multiple), $label); |
|
| 10 | + public function __construct($identifier, $items=array(), $label=NULL, $value=NULL, $multiple=false, $associative=true) { |
|
| 11 | + parent::__construct("field-".$identifier, (new HtmlDropdown("dropdown-".$identifier, $value, $items, $associative))->asSelect($identifier, $multiple), $label); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - public function setItems($items){ |
|
| 14 | + public function setItems($items) { |
|
| 15 | 15 | return $this->getField()->setItems($items); |
| 16 | 16 | } |
| 17 | - public function addItem($item,$value=NULL,$image=NULL){ |
|
| 18 | - return $this->getField()->addItem($item,$value,$image); |
|
| 17 | + public function addItem($item, $value=NULL, $image=NULL) { |
|
| 18 | + return $this->getField()->addItem($item, $value, $image); |
|
| 19 | 19 | } |
| 20 | - public static function multipleDropdown($identifier,$items=array(), $label=NULL,$value=NULL,$associative=true){ |
|
| 21 | - return new HtmlFormDropdown($identifier,$items,$label,$value,true,$associative); |
|
| 20 | + public static function multipleDropdown($identifier, $items=array(), $label=NULL, $value=NULL, $associative=true) { |
|
| 21 | + return new HtmlFormDropdown($identifier, $items, $label, $value, true, $associative); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | - public function getDataField(){ |
|
| 24 | + public function getDataField() { |
|
| 25 | 25 | return $this->getField()->getInput(); |
| 26 | 26 | } |
| 27 | 27 | } |
| 28 | 28 | \ No newline at end of file |
@@ -14,60 +14,60 @@ |
||
| 14 | 14 | protected $params; |
| 15 | 15 | protected $semElement; |
| 16 | 16 | |
| 17 | - public function __construct($semElement,$title="",$content="",$variation=NULL,$params=array()){ |
|
| 17 | + public function __construct($semElement, $title="", $content="", $variation=NULL, $params=array()) { |
|
| 18 | 18 | $this->semElement=$semElement; |
| 19 | 19 | $this->title=$title; |
| 20 | 20 | $this->content=$content; |
| 21 | - $this->setAttributes($variation,$params); |
|
| 21 | + $this->setAttributes($variation, $params); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | public function setHtml($html) { |
| 25 | - $this->html= $html; |
|
| 25 | + $this->html=$html; |
|
| 26 | 26 | return $this; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - public function setAttributes($variation=NULL,$params=array()){ |
|
| 29 | + public function setAttributes($variation=NULL, $params=array()) { |
|
| 30 | 30 | $this->variation=$variation; |
| 31 | 31 | $this->params=$params; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - public function onShow($jsCode){ |
|
| 34 | + public function onShow($jsCode) { |
|
| 35 | 35 | $this->params["onShow"]=$jsCode; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - public function compile(JsUtils $js=NULL){ |
|
| 39 | - if(JString::isNotNull($this->title)){ |
|
| 38 | + public function compile(JsUtils $js=NULL) { |
|
| 39 | + if (JString::isNotNull($this->title)) { |
|
| 40 | 40 | $this->semElement->addToProperty("data-title", $this->title); |
| 41 | 41 | } |
| 42 | - if(JString::isNotNull($this->content)){ |
|
| 42 | + if (JString::isNotNull($this->content)) { |
|
| 43 | 43 | $this->semElement->addToProperty("data-content", $this->content); |
| 44 | 44 | } |
| 45 | - if(JString::isNotNull($this->html)){ |
|
| 45 | + if (JString::isNotNull($this->html)) { |
|
| 46 | 46 | $html=$this->html; |
| 47 | - if(\is_array($html)){ |
|
| 47 | + if (\is_array($html)) { |
|
| 48 | 48 | \array_walk($html, function(&$item) use($js){ |
| 49 | - if($item instanceof HtmlSemDoubleElement){ |
|
| 49 | + if ($item instanceof HtmlSemDoubleElement) { |
|
| 50 | 50 | $comp=$item->compile($js); |
| 51 | - if(isset($js)){ |
|
| 51 | + if (isset($js)) { |
|
| 52 | 52 | $bs=$item->run($js); |
| 53 | - if(isset($bs)) |
|
| 53 | + if (isset($bs)) |
|
| 54 | 54 | $this->params['onShow']=$bs->getScript(); |
| 55 | 55 | } |
| 56 | 56 | $item=$comp; |
| 57 | 57 | } |
| 58 | 58 | }); |
| 59 | - $html=\implode("",$html); |
|
| 59 | + $html=\implode("", $html); |
|
| 60 | 60 | } |
| 61 | 61 | $html=\str_replace("\"", "'", $html); |
| 62 | 62 | $this->semElement->addToProperty("data-html", $html); |
| 63 | 63 | } |
| 64 | - if(JString::isNotNull($this->variation)){ |
|
| 64 | + if (JString::isNotNull($this->variation)) { |
|
| 65 | 65 | $this->semElement->addToProperty("data-variation", $this->variation); |
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - public function run(JsUtils $js){ |
|
| 70 | - $js->semantic()->popup("#".$this->semElement->getIdentifier(),$this->params); |
|
| 69 | + public function run(JsUtils $js) { |
|
| 70 | + $js->semantic()->popup("#".$this->semElement->getIdentifier(), $this->params); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | } |
| 74 | 74 | \ No newline at end of file |
@@ -50,8 +50,9 @@ |
||
| 50 | 50 | $comp=$item->compile($js); |
| 51 | 51 | if(isset($js)){ |
| 52 | 52 | $bs=$item->run($js); |
| 53 | - if(isset($bs)) |
|
| 54 | - $this->params['onShow']=$bs->getScript(); |
|
| 53 | + if(isset($bs)) { |
|
| 54 | + $this->params['onShow']=$bs->getScript(); |
|
| 55 | + } |
|
| 55 | 56 | } |
| 56 | 57 | $item=$comp; |
| 57 | 58 | } |
@@ -124,6 +124,10 @@ discard block |
||
| 124 | 124 | return $this; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | + /** |
|
| 128 | + * @param string $name |
|
| 129 | + * @param string[] $typeCtrl |
|
| 130 | + */ |
|
| 127 | 131 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
| 128 | 132 | if ($this->ctrl($name, $value, $typeCtrl) === true) { |
| 129 | 133 | return $name=$value; |
@@ -139,22 +143,35 @@ discard block |
||
| 139 | 143 | return $this; |
| 140 | 144 | } |
| 141 | 145 | |
| 146 | + /** |
|
| 147 | + * @param string $name |
|
| 148 | + */ |
|
| 142 | 149 | protected function removePropertyValue($name, $value) { |
| 143 | 150 | $this->properties[$name]=\str_replace($value, "", $this->properties[$name]); |
| 144 | 151 | return $this; |
| 145 | 152 | } |
| 146 | 153 | |
| 154 | + /** |
|
| 155 | + * @param string $name |
|
| 156 | + */ |
|
| 147 | 157 | protected function removePropertyValues($name, $values) { |
| 148 | 158 | $this->removeOldValues($this->properties[$name], $values); |
| 149 | 159 | return $this; |
| 150 | 160 | } |
| 151 | 161 | |
| 162 | + /** |
|
| 163 | + * @param string $name |
|
| 164 | + */ |
|
| 152 | 165 | public function removeProperty($name) { |
| 153 | 166 | if (\array_key_exists($name, $this->properties)) |
| 154 | 167 | unset($this->properties[$name]); |
| 155 | 168 | return $this; |
| 156 | 169 | } |
| 157 | 170 | |
| 171 | + /** |
|
| 172 | + * @param string $name |
|
| 173 | + * @param string[] $typeCtrl |
|
| 174 | + */ |
|
| 158 | 175 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
| 159 | 176 | if ($this->ctrl($name, $value, $typeCtrl) === true) { |
| 160 | 177 | if (is_array($typeCtrl)) { |
@@ -165,6 +182,9 @@ discard block |
||
| 165 | 182 | return $this; |
| 166 | 183 | } |
| 167 | 184 | |
| 185 | + /** |
|
| 186 | + * @param string $name |
|
| 187 | + */ |
|
| 168 | 188 | protected function addToMember(&$name, $value, $separator=" ") { |
| 169 | 189 | $name=str_ireplace($value, "", $name) . $separator . $value; |
| 170 | 190 | return $this; |
@@ -179,6 +199,9 @@ discard block |
||
| 179 | 199 | return $this->addToProperty($name, $value); |
| 180 | 200 | } |
| 181 | 201 | |
| 202 | + /** |
|
| 203 | + * @param string $name |
|
| 204 | + */ |
|
| 182 | 205 | public function addToPropertyCtrl($name, $value, $typeCtrl) { |
| 183 | 206 | return $this->addToPropertyUnique($name, $value, $typeCtrl); |
| 184 | 207 | } |
@@ -283,6 +306,10 @@ discard block |
||
| 283 | 306 | return null; |
| 284 | 307 | } |
| 285 | 308 | |
| 309 | + /** |
|
| 310 | + * @param string $propertyName |
|
| 311 | + * @param string $value |
|
| 312 | + */ |
|
| 286 | 313 | protected function getElementByPropertyValue($propertyName,$value, $elements) { |
| 287 | 314 | if (is_array($elements)) { |
| 288 | 315 | $flag=false; |
@@ -17,9 +17,9 @@ discard block |
||
| 17 | 17 | use BaseHtmlEventsTrait; |
| 18 | 18 | protected $_template; |
| 19 | 19 | protected $tagName; |
| 20 | - protected $properties=array (); |
|
| 21 | - protected $_wrapBefore=array (); |
|
| 22 | - protected $_wrapAfter=array (); |
|
| 20 | + protected $properties=array(); |
|
| 21 | + protected $_wrapBefore=array(); |
|
| 22 | + protected $_wrapAfter=array(); |
|
| 23 | 23 | protected $_bsComponent; |
| 24 | 24 | |
| 25 | 25 | public function getBsComponent() { |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | protected function getTemplate(JsUtils $js=NULL) { |
| 35 | - return PropertyWrapper::wrap($this->_wrapBefore, $js) . $this->_template . PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
| 35 | + return PropertyWrapper::wrap($this->_wrapBefore, $js).$this->_template.PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function getProperties() { |
@@ -56,13 +56,13 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | public function addToProperty($name, $value, $separator=" ") { |
| 58 | 58 | if (\is_array($value)) { |
| 59 | - foreach ( $value as $v ) { |
|
| 59 | + foreach ($value as $v) { |
|
| 60 | 60 | $this->addToProperty($name, $v, $separator); |
| 61 | 61 | } |
| 62 | - } else if ($value !== "" && $this->propertyContains($name, $value) === false) { |
|
| 62 | + } else if ($value!=="" && $this->propertyContains($name, $value)===false) { |
|
| 63 | 63 | $v=@$this->properties[$name]; |
| 64 | - if (isset($v) && $v !== "") |
|
| 65 | - $v=$v . $separator . $value; |
|
| 64 | + if (isset($v) && $v!=="") |
|
| 65 | + $v=$v.$separator.$value; |
|
| 66 | 66 | else |
| 67 | 67 | $v=$value; |
| 68 | 68 | |
@@ -78,19 +78,19 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 80 | 80 | $result=$this->getTemplate($js); |
| 81 | - foreach ( $this as $key => $value ) { |
|
| 82 | - if (JString::startswith($key, "_") === false && $key !== "events") { |
|
| 81 | + foreach ($this as $key => $value) { |
|
| 82 | + if (JString::startswith($key, "_")===false && $key!=="events") { |
|
| 83 | 83 | if (is_array($value)) { |
| 84 | 84 | $v=PropertyWrapper::wrap($value, $js); |
| 85 | 85 | } else { |
| 86 | 86 | $v=$value; |
| 87 | 87 | } |
| 88 | - $result=str_ireplace("%" . $key . "%", $v, $result); |
|
| 88 | + $result=str_ireplace("%".$key."%", $v, $result); |
|
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | if (isset($js)===true) { |
| 92 | 92 | $this->run($js); |
| 93 | - if (isset($view) === true) { |
|
| 93 | + if (isset($view)===true) { |
|
| 94 | 94 | $js->addViewElement($this->identifier, $result, $view); |
| 95 | 95 | } |
| 96 | 96 | } |
@@ -99,12 +99,12 @@ discard block |
||
| 99 | 99 | |
| 100 | 100 | protected function ctrl($name, $value, $typeCtrl) { |
| 101 | 101 | if (is_array($typeCtrl)) { |
| 102 | - if (array_search($value, $typeCtrl) === false) { |
|
| 103 | - throw new \Exception("La valeur passée `" . $value . "` à la propriété `" . $name . "` ne fait pas partie des valeurs possibles : {" . implode(",", $typeCtrl) . "}"); |
|
| 102 | + if (array_search($value, $typeCtrl)===false) { |
|
| 103 | + throw new \Exception("La valeur passée `".$value."` à la propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
| 104 | 104 | } |
| 105 | 105 | } else { |
| 106 | 106 | if (!$typeCtrl($value)) { |
| 107 | - throw new \Exception("La fonction " . $typeCtrl . " a retourné faux pour l'affectation de la propriété " . $name); |
|
| 107 | + throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name); |
|
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | return true; |
@@ -119,13 +119,13 @@ discard block |
||
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | protected function setPropertyCtrl($name, $value, $typeCtrl) { |
| 122 | - if ($this->ctrl($name, $value, $typeCtrl) === true) |
|
| 122 | + if ($this->ctrl($name, $value, $typeCtrl)===true) |
|
| 123 | 123 | return $this->setProperty($name, $value); |
| 124 | 124 | return $this; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
| 128 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 128 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 129 | 129 | return $name=$value; |
| 130 | 130 | } |
| 131 | 131 | return $this; |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | protected function addToMemberUnique(&$name, $value, $typeCtrl, $separator=" ") { |
| 135 | 135 | if (is_array($typeCtrl)) { |
| 136 | 136 | $this->removeOldValues($name, $typeCtrl); |
| 137 | - $name.=$separator . $value; |
|
| 137 | + $name.=$separator.$value; |
|
| 138 | 138 | } |
| 139 | 139 | return $this; |
| 140 | 140 | } |
@@ -156,17 +156,17 @@ discard block |
||
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
| 159 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 159 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 160 | 160 | if (is_array($typeCtrl)) { |
| 161 | 161 | $this->removeOldValues($name, $typeCtrl); |
| 162 | 162 | } |
| 163 | - $name.=$separator . $value; |
|
| 163 | + $name.=$separator.$value; |
|
| 164 | 164 | } |
| 165 | 165 | return $this; |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | protected function addToMember(&$name, $value, $separator=" ") { |
| 169 | - $name=str_ireplace($value, "", $name) . $separator . $value; |
|
| 169 | + $name=str_ireplace($value, "", $name).$separator.$value; |
|
| 170 | 170 | return $this; |
| 171 | 171 | } |
| 172 | 172 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | public function addToPropertyCtrlCheck($name, $value, $typeCtrl) { |
| 187 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 187 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 188 | 188 | return $this->addToProperty($name, $value); |
| 189 | 189 | } |
| 190 | 190 | return $this; |
@@ -212,26 +212,26 @@ discard block |
||
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | public function fromArray($array) { |
| 215 | - foreach ( $this as $key => $value ) { |
|
| 216 | - if(array_key_exists($key, $array)===true) |
|
| 217 | - $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 215 | + foreach ($this as $key => $value) { |
|
| 216 | + if (array_key_exists($key, $array)===true) |
|
| 217 | + $this->_callSetter("set".ucfirst($key), $key, $array[$key], $array); |
|
| 218 | 218 | } |
| 219 | - foreach ( $array as $key => $value ) { |
|
| 220 | - if($this->_callSetter($key, $key, $value, $array)===false){ |
|
| 221 | - $this->_callSetter("set" . ucfirst($key), $key, $value, $array); |
|
| 219 | + foreach ($array as $key => $value) { |
|
| 220 | + if ($this->_callSetter($key, $key, $value, $array)===false) { |
|
| 221 | + $this->_callSetter("set".ucfirst($key), $key, $value, $array); |
|
| 222 | 222 | } |
| 223 | 223 | } |
| 224 | 224 | return $array; |
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - private function _callSetter($setter,$key,$value,&$array){ |
|
| 227 | + private function _callSetter($setter, $key, $value, &$array) { |
|
| 228 | 228 | $result=false; |
| 229 | 229 | if (method_exists($this, $setter) && !JString::startswith($key, "_")) { |
| 230 | 230 | try { |
| 231 | 231 | $this->$setter($value); |
| 232 | 232 | unset($array[$key]); |
| 233 | 233 | $result=true; |
| 234 | - } catch ( \Exception $e ) { |
|
| 234 | + }catch (\Exception $e) { |
|
| 235 | 235 | $result=false; |
| 236 | 236 | } |
| 237 | 237 | } |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | |
| 241 | 241 | public function fromDatabaseObjects($objects, $function) { |
| 242 | 242 | if (isset($objects)) { |
| 243 | - foreach ( $objects as $object ) { |
|
| 243 | + foreach ($objects as $object) { |
|
| 244 | 244 | $this->fromDatabaseObject($object, $function); |
| 245 | 245 | } |
| 246 | 246 | } |
@@ -264,33 +264,33 @@ discard block |
||
| 264 | 264 | if (is_array($elements)) { |
| 265 | 265 | $flag=false; |
| 266 | 266 | $index=0; |
| 267 | - while ( !$flag && $index < sizeof($elements) ) { |
|
| 267 | + while (!$flag && $index<sizeof($elements)) { |
|
| 268 | 268 | if ($elements[$index] instanceof BaseHtml) |
| 269 | - $flag=($elements[$index]->getIdentifier() === $identifier); |
|
| 269 | + $flag=($elements[$index]->getIdentifier()===$identifier); |
|
| 270 | 270 | $index++; |
| 271 | 271 | } |
| 272 | - if ($flag === true) |
|
| 273 | - return $elements[$index - 1]; |
|
| 272 | + if ($flag===true) |
|
| 273 | + return $elements[$index-1]; |
|
| 274 | 274 | } elseif ($elements instanceof BaseHtml) { |
| 275 | - if ($elements->getIdentifier() === $identifier) |
|
| 275 | + if ($elements->getIdentifier()===$identifier) |
|
| 276 | 276 | return $elements; |
| 277 | 277 | } |
| 278 | 278 | return null; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - protected function getElementByPropertyValue($propertyName,$value, $elements) { |
|
| 281 | + protected function getElementByPropertyValue($propertyName, $value, $elements) { |
|
| 282 | 282 | if (is_array($elements)) { |
| 283 | 283 | $flag=false; |
| 284 | 284 | $index=0; |
| 285 | - while ( !$flag && $index < sizeof($elements) ) { |
|
| 285 | + while (!$flag && $index<sizeof($elements)) { |
|
| 286 | 286 | if ($elements[$index] instanceof BaseHtml) |
| 287 | - $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
| 287 | + $flag=($elements[$index]->propertyContains($propertyName, $value)===true); |
|
| 288 | 288 | $index++; |
| 289 | 289 | } |
| 290 | - if ($flag === true) |
|
| 291 | - return $elements[$index - 1]; |
|
| 290 | + if ($flag===true) |
|
| 291 | + return $elements[$index-1]; |
|
| 292 | 292 | } elseif ($elements instanceof BaseHtml) { |
| 293 | - if ($elements->propertyContains($propertyName, $value) === true) |
|
| 293 | + if ($elements->propertyContains($propertyName, $value)===true) |
|
| 294 | 294 | return $elements; |
| 295 | 295 | } |
| 296 | 296 | return null; |
@@ -50,8 +50,9 @@ discard block |
||
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | public function getProperty($name) { |
| 53 | - if (array_key_exists($name, $this->properties)) |
|
| 54 | - return $this->properties[$name]; |
|
| 53 | + if (array_key_exists($name, $this->properties)) { |
|
| 54 | + return $this->properties[$name]; |
|
| 55 | + } |
|
| 55 | 56 | } |
| 56 | 57 | |
| 57 | 58 | public function addToProperty($name, $value, $separator=" ") { |
@@ -61,10 +62,11 @@ discard block |
||
| 61 | 62 | } |
| 62 | 63 | } else if ($value !== "" && $this->propertyContains($name, $value) === false) { |
| 63 | 64 | $v=@$this->properties[$name]; |
| 64 | - if (isset($v) && $v !== "") |
|
| 65 | - $v=$v . $separator . $value; |
|
| 66 | - else |
|
| 67 | - $v=$value; |
|
| 65 | + if (isset($v) && $v !== "") { |
|
| 66 | + $v=$v . $separator . $value; |
|
| 67 | + } else { |
|
| 68 | + $v=$value; |
|
| 69 | + } |
|
| 68 | 70 | |
| 69 | 71 | return $this->setProperty($name, $v); |
| 70 | 72 | } |
@@ -119,8 +121,9 @@ discard block |
||
| 119 | 121 | } |
| 120 | 122 | |
| 121 | 123 | protected function setPropertyCtrl($name, $value, $typeCtrl) { |
| 122 | - if ($this->ctrl($name, $value, $typeCtrl) === true) |
|
| 123 | - return $this->setProperty($name, $value); |
|
| 124 | + if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 125 | + return $this->setProperty($name, $value); |
|
| 126 | + } |
|
| 124 | 127 | return $this; |
| 125 | 128 | } |
| 126 | 129 | |
@@ -150,8 +153,9 @@ discard block |
||
| 150 | 153 | } |
| 151 | 154 | |
| 152 | 155 | public function removeProperty($name) { |
| 153 | - if (\array_key_exists($name, $this->properties)) |
|
| 154 | - unset($this->properties[$name]); |
|
| 156 | + if (\array_key_exists($name, $this->properties)) { |
|
| 157 | + unset($this->properties[$name]); |
|
| 158 | + } |
|
| 155 | 159 | return $this; |
| 156 | 160 | } |
| 157 | 161 | |
@@ -171,8 +175,9 @@ discard block |
||
| 171 | 175 | } |
| 172 | 176 | |
| 173 | 177 | protected function addToPropertyUnique($name, $value, $typeCtrl) { |
| 174 | - if (@class_exists($typeCtrl, true)) |
|
| 175 | - $typeCtrl=$typeCtrl::getConstants(); |
|
| 178 | + if (@class_exists($typeCtrl, true)) { |
|
| 179 | + $typeCtrl=$typeCtrl::getConstants(); |
|
| 180 | + } |
|
| 176 | 181 | if (is_array($typeCtrl)) { |
| 177 | 182 | $this->removeOldValues($this->properties[$name], $typeCtrl); |
| 178 | 183 | } |
@@ -213,8 +218,9 @@ discard block |
||
| 213 | 218 | |
| 214 | 219 | public function fromArray($array) { |
| 215 | 220 | foreach ( $this as $key => $value ) { |
| 216 | - if(array_key_exists($key, $array)===true) |
|
| 217 | - $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 221 | + if(array_key_exists($key, $array)===true) { |
|
| 222 | + $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 223 | + } |
|
| 218 | 224 | } |
| 219 | 225 | foreach ( $array as $key => $value ) { |
| 220 | 226 | if($this->_callSetter($key, $key, $value, $array)===false){ |
@@ -265,15 +271,18 @@ discard block |
||
| 265 | 271 | $flag=false; |
| 266 | 272 | $index=0; |
| 267 | 273 | while ( !$flag && $index < sizeof($elements) ) { |
| 268 | - if ($elements[$index] instanceof BaseHtml) |
|
| 269 | - $flag=($elements[$index]->getIdentifier() === $identifier); |
|
| 274 | + if ($elements[$index] instanceof BaseHtml) { |
|
| 275 | + $flag=($elements[$index]->getIdentifier() === $identifier); |
|
| 276 | + } |
|
| 270 | 277 | $index++; |
| 271 | 278 | } |
| 272 | - if ($flag === true) |
|
| 273 | - return $elements[$index - 1]; |
|
| 279 | + if ($flag === true) { |
|
| 280 | + return $elements[$index - 1]; |
|
| 281 | + } |
|
| 274 | 282 | } elseif ($elements instanceof BaseHtml) { |
| 275 | - if ($elements->getIdentifier() === $identifier) |
|
| 276 | - return $elements; |
|
| 283 | + if ($elements->getIdentifier() === $identifier) { |
|
| 284 | + return $elements; |
|
| 285 | + } |
|
| 277 | 286 | } |
| 278 | 287 | return null; |
| 279 | 288 | } |
@@ -283,15 +292,18 @@ discard block |
||
| 283 | 292 | $flag=false; |
| 284 | 293 | $index=0; |
| 285 | 294 | while ( !$flag && $index < sizeof($elements) ) { |
| 286 | - if ($elements[$index] instanceof BaseHtml) |
|
| 287 | - $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
| 295 | + if ($elements[$index] instanceof BaseHtml) { |
|
| 296 | + $flag=($elements[$index]->propertyContains($propertyName, $value) === true); |
|
| 297 | + } |
|
| 288 | 298 | $index++; |
| 289 | 299 | } |
| 290 | - if ($flag === true) |
|
| 291 | - return $elements[$index - 1]; |
|
| 300 | + if ($flag === true) { |
|
| 301 | + return $elements[$index - 1]; |
|
| 302 | + } |
|
| 292 | 303 | } elseif ($elements instanceof BaseHtml) { |
| 293 | - if ($elements->propertyContains($propertyName, $value) === true) |
|
| 294 | - return $elements; |
|
| 304 | + if ($elements->propertyContains($propertyName, $value) === true) { |
|
| 305 | + return $elements; |
|
| 306 | + } |
|
| 295 | 307 | } |
| 296 | 308 | return null; |
| 297 | 309 | } |
@@ -3,8 +3,8 @@ |
||
| 3 | 3 | namespace Ajax\service; |
| 4 | 4 | |
| 5 | 5 | class Javascript { |
| 6 | - public static function containsCode($expression){ |
|
| 7 | - return strrpos($expression, 'this')!==false||strrpos($expression, 'event')!==false||strrpos($expression, 'self')!==false; |
|
| 6 | + public static function containsCode($expression) { |
|
| 7 | + return strrpos($expression, 'this')!==false || strrpos($expression, 'event')!==false || strrpos($expression, 'self')!==false; |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | /** |
@@ -34,21 +34,21 @@ discard block |
||
| 34 | 34 | protected $_toolbarPosition; |
| 35 | 35 | |
| 36 | 36 | |
| 37 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
| 37 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
| 38 | 38 | parent::__construct($identifier); |
| 39 | 39 | $this->_template="%wrapContentBefore%%content%%wrapContentAfter%"; |
| 40 | 40 | $this->setModel($model); |
| 41 | - if(isset($modelInstance)); |
|
| 41 | + if (isset($modelInstance)); |
|
| 42 | 42 | $this->show($modelInstance); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | - protected function _getFieldIdentifier($prefix){ |
|
| 45 | + protected function _getFieldIdentifier($prefix) { |
|
| 46 | 46 | return $this->identifier."-{$prefix}-".$this->_instanceViewer->getIdentifier(); |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - abstract protected function _setToolbarPosition($table,$captions=NULL); |
|
| 49 | + abstract protected function _setToolbarPosition($table, $captions=NULL); |
|
| 50 | 50 | |
| 51 | - public function show($modelInstance){ |
|
| 51 | + public function show($modelInstance) { |
|
| 52 | 52 | $this->_modelInstance=$modelInstance; |
| 53 | 53 | } |
| 54 | 54 | |
@@ -72,42 +72,42 @@ discard block |
||
| 72 | 72 | |
| 73 | 73 | public abstract function getHtmlComponent(); |
| 74 | 74 | |
| 75 | - public function setColor($color){ |
|
| 75 | + public function setColor($color) { |
|
| 76 | 76 | return $this->getHtmlComponent()->setColor($color); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | |
| 80 | - public function setCaptions($captions){ |
|
| 80 | + public function setCaptions($captions) { |
|
| 81 | 81 | $this->_instanceViewer->setCaptions($captions); |
| 82 | 82 | return $this; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - public function setFields($fields){ |
|
| 85 | + public function setFields($fields) { |
|
| 86 | 86 | $this->_instanceViewer->setVisibleProperties($fields); |
| 87 | 87 | return $this; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - public function addField($field){ |
|
| 90 | + public function addField($field) { |
|
| 91 | 91 | $this->_instanceViewer->addField($field); |
| 92 | 92 | return $this; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - public function insertField($index,$field){ |
|
| 95 | + public function insertField($index, $field) { |
|
| 96 | 96 | $this->_instanceViewer->insertField($index, $field); |
| 97 | 97 | return $this; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - public function insertInField($index,$field){ |
|
| 100 | + public function insertInField($index, $field) { |
|
| 101 | 101 | $this->_instanceViewer->insertInField($index, $field); |
| 102 | 102 | return $this; |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - public function setValueFunction($index,$callback){ |
|
| 105 | + public function setValueFunction($index, $callback) { |
|
| 106 | 106 | $this->_instanceViewer->setValueFunction($index, $callback); |
| 107 | 107 | return $this; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - public function setIdentifierFunction($callback){ |
|
| 110 | + public function setIdentifierFunction($callback) { |
|
| 111 | 111 | $this->_instanceViewer->setIdentifierFunction($callback); |
| 112 | 112 | return $this; |
| 113 | 113 | } |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | /** |
| 116 | 116 | * @return \Ajax\semantic\html\collections\menus\HtmlMenu |
| 117 | 117 | */ |
| 118 | - public function getToolbar(){ |
|
| 119 | - if(isset($this->_toolbar)===false){ |
|
| 118 | + public function getToolbar() { |
|
| 119 | + if (isset($this->_toolbar)===false) { |
|
| 120 | 120 | $this->_toolbar=new HtmlMenu("toolbar-".$this->identifier); |
| 121 | 121 | //$this->_toolbar->setSecondary(); |
| 122 | 122 | } |
@@ -129,57 +129,57 @@ discard block |
||
| 129 | 129 | * @param callable $callback function to call on $element |
| 130 | 130 | * @return \Ajax\common\html\HtmlDoubleElement |
| 131 | 131 | */ |
| 132 | - public function addInToolbar($element,$callback=NULL){ |
|
| 132 | + public function addInToolbar($element, $callback=NULL) { |
|
| 133 | 133 | $tb=$this->getToolbar(); |
| 134 | - if(isset($callback)){ |
|
| 135 | - if(\is_callable($callback)){ |
|
| 134 | + if (isset($callback)) { |
|
| 135 | + if (\is_callable($callback)) { |
|
| 136 | 136 | $callback($element); |
| 137 | 137 | } |
| 138 | 138 | } |
| 139 | 139 | return $tb->addItem($element); |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | - public function addItemInToolbar($caption,$icon=NULL,$callback=NULL){ |
|
| 143 | - $result=$this->addInToolbar($caption,$callback); |
|
| 144 | - if(isset($icon)) |
|
| 142 | + public function addItemInToolbar($caption, $icon=NULL, $callback=NULL) { |
|
| 143 | + $result=$this->addInToolbar($caption, $callback); |
|
| 144 | + if (isset($icon)) |
|
| 145 | 145 | $result->addIcon($icon); |
| 146 | 146 | return $result; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - public function addItemsInToolbar(array $items,$callback=NULL){ |
|
| 150 | - if(JArray::isAssociative($items)){ |
|
| 151 | - foreach ($items as $icon=>$item){ |
|
| 152 | - $this->addItemInToolbar($item,$icon,$callback); |
|
| 149 | + public function addItemsInToolbar(array $items, $callback=NULL) { |
|
| 150 | + if (JArray::isAssociative($items)) { |
|
| 151 | + foreach ($items as $icon=>$item) { |
|
| 152 | + $this->addItemInToolbar($item, $icon, $callback); |
|
| 153 | 153 | } |
| 154 | - }else{ |
|
| 155 | - foreach ($items as $item){ |
|
| 156 | - $this->addItemInToolbar($item,null,$callback); |
|
| 154 | + } else { |
|
| 155 | + foreach ($items as $item) { |
|
| 156 | + $this->addItemInToolbar($item, null, $callback); |
|
| 157 | 157 | } |
| 158 | 158 | } |
| 159 | 159 | return $this; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - public function addDropdownInToolbar($value,$items=NULL,$callback=NULL){ |
|
| 162 | + public function addDropdownInToolbar($value, $items=NULL, $callback=NULL) { |
|
| 163 | 163 | $dd=$value; |
| 164 | 164 | if (\is_string($value)) { |
| 165 | - $dd=new HtmlDropdown("dropdown-". $this->identifier."-".$value, $value, $items); |
|
| 165 | + $dd=new HtmlDropdown("dropdown-".$this->identifier."-".$value, $value, $items); |
|
| 166 | 166 | } |
| 167 | - return $this->addInToolbar($dd,$callback); |
|
| 167 | + return $this->addInToolbar($dd, $callback); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - public function addButtonInToolbar($caption,$callback=NULL){ |
|
| 171 | - $bt=new HtmlButton("",$caption); |
|
| 172 | - return $this->addInToolbar($bt,$callback); |
|
| 170 | + public function addButtonInToolbar($caption, $callback=NULL) { |
|
| 171 | + $bt=new HtmlButton("", $caption); |
|
| 172 | + return $this->addInToolbar($bt, $callback); |
|
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - public function addButtonsInToolbar(array $captions,$asIcon=false,$callback=NULL){ |
|
| 176 | - $bts=new HtmlButtonGroups("",$captions,$asIcon); |
|
| 177 | - return $this->addInToolbar($bts,$callback); |
|
| 175 | + public function addButtonsInToolbar(array $captions, $asIcon=false, $callback=NULL) { |
|
| 176 | + $bts=new HtmlButtonGroups("", $captions, $asIcon); |
|
| 177 | + return $this->addInToolbar($bts, $callback); |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - public function addLabelledIconButtonInToolbar($caption,$icon,$before=true,$labeled=false){ |
|
| 181 | - $bt=new HtmlButton("",$caption); |
|
| 182 | - $bt->addIcon($icon,$before,$labeled); |
|
| 180 | + public function addLabelledIconButtonInToolbar($caption, $icon, $before=true, $labeled=false) { |
|
| 181 | + $bt=new HtmlButton("", $caption); |
|
| 182 | + $bt->addIcon($icon, $before, $labeled); |
|
| 183 | 183 | return $this->addInToolbar($bt); |
| 184 | 184 | } |
| 185 | 185 | |
@@ -141,8 +141,9 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | public function addItemInToolbar($caption,$icon=NULL,$callback=NULL){ |
| 143 | 143 | $result=$this->addInToolbar($caption,$callback); |
| 144 | - if(isset($icon)) |
|
| 145 | - $result->addIcon($icon); |
|
| 144 | + if(isset($icon)) { |
|
| 145 | + $result->addIcon($icon); |
|
| 146 | + } |
|
| 146 | 147 | return $result; |
| 147 | 148 | } |
| 148 | 149 | |
@@ -151,7 +152,7 @@ discard block |
||
| 151 | 152 | foreach ($items as $icon=>$item){ |
| 152 | 153 | $this->addItemInToolbar($item,$icon,$callback); |
| 153 | 154 | } |
| 154 | - }else{ |
|
| 155 | + } else{ |
|
| 155 | 156 | foreach ($items as $item){ |
| 156 | 157 | $this->addItemInToolbar($item,null,$callback); |
| 157 | 158 | } |