@@ -14,11 +14,11 @@ discard block |
||
| 14 | 14 | * @version 1.3 |
| 15 | 15 | */ |
| 16 | 16 | abstract class BaseHtml extends BaseWidget { |
| 17 | - use BaseHtmlEventsTrait,BaseHtmlPropertiesTrait; |
|
| 17 | + use BaseHtmlEventsTrait, BaseHtmlPropertiesTrait; |
|
| 18 | 18 | protected $_template; |
| 19 | 19 | protected $tagName; |
| 20 | - protected $_wrapBefore=array (); |
|
| 21 | - protected $_wrapAfter=array (); |
|
| 20 | + protected $_wrapBefore=array(); |
|
| 21 | + protected $_wrapAfter=array(); |
|
| 22 | 22 | protected $_bsComponent; |
| 23 | 23 | protected $_compiled=false; |
| 24 | 24 | protected $_postCompile; |
@@ -31,14 +31,14 @@ discard block |
||
| 31 | 31 | */ |
| 32 | 32 | abstract public function run(JsUtils $js); |
| 33 | 33 | |
| 34 | - private function _callSetter($setter,$key,$value,&$array){ |
|
| 34 | + private function _callSetter($setter, $key, $value, &$array) { |
|
| 35 | 35 | $result=false; |
| 36 | - if (method_exists($this, $setter) && substr($setter, 0, 1) !== "_") { |
|
| 36 | + if (method_exists($this, $setter) && substr($setter, 0, 1)!=="_") { |
|
| 37 | 37 | try { |
| 38 | 38 | $this->$setter($value); |
| 39 | 39 | unset($array[$key]); |
| 40 | 40 | $result=true; |
| 41 | - } catch ( \Exception $e ) { |
|
| 41 | + }catch (\Exception $e) { |
|
| 42 | 42 | $result=false; |
| 43 | 43 | } |
| 44 | 44 | } |
@@ -46,17 +46,17 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | protected function getTemplate(JsUtils $js=NULL) { |
| 49 | - return PropertyWrapper::wrap($this->_wrapBefore, $js) . $this->_template . PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
| 49 | + return PropertyWrapper::wrap($this->_wrapBefore, $js).$this->_template.PropertyWrapper::wrap($this->_wrapAfter, $js); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | protected function ctrl($name, $value, $typeCtrl) { |
| 53 | 53 | if (\is_array($typeCtrl)) { |
| 54 | - if (array_search($value, $typeCtrl) === false) { |
|
| 55 | - throw new \Exception("La valeur passée `" . $value . "` à la propriété `" . $name . "` ne fait pas partie des valeurs possibles : {" . implode(",", $typeCtrl) . "}"); |
|
| 54 | + if (array_search($value, $typeCtrl)===false) { |
|
| 55 | + throw new \Exception("La valeur passée `".$value."` à la propriété `".$name."` ne fait pas partie des valeurs possibles : {".implode(",", $typeCtrl)."}"); |
|
| 56 | 56 | } |
| 57 | 57 | } else { |
| 58 | 58 | if (!$typeCtrl($value)) { |
| 59 | - throw new \Exception("La fonction " . $typeCtrl . " a retourné faux pour l'affectation de la propriété " . $name); |
|
| 59 | + throw new \Exception("La fonction ".$typeCtrl." a retourné faux pour l'affectation de la propriété ".$name); |
|
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | return true; |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | |
| 66 | 66 | |
| 67 | 67 | protected function setMemberCtrl(&$name, $value, $typeCtrl) { |
| 68 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 68 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 69 | 69 | return $name=$value; |
| 70 | 70 | } |
| 71 | 71 | return $this; |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | protected function addToMemberUnique(&$name, $value, $typeCtrl, $separator=" ") { |
| 75 | 75 | if (\is_array($typeCtrl)) { |
| 76 | 76 | $this->removeOldValues($name, $typeCtrl); |
| 77 | - $name.=$separator . $value; |
|
| 77 | + $name.=$separator.$value; |
|
| 78 | 78 | } |
| 79 | 79 | return $this; |
| 80 | 80 | } |
@@ -82,17 +82,17 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | |
| 84 | 84 | protected function addToMemberCtrl(&$name, $value, $typeCtrl, $separator=" ") { |
| 85 | - if ($this->ctrl($name, $value, $typeCtrl) === true) { |
|
| 85 | + if ($this->ctrl($name, $value, $typeCtrl)===true) { |
|
| 86 | 86 | if (\is_array($typeCtrl)) { |
| 87 | 87 | $this->removeOldValues($name, $typeCtrl); |
| 88 | 88 | } |
| 89 | - $name.=$separator . $value; |
|
| 89 | + $name.=$separator.$value; |
|
| 90 | 90 | } |
| 91 | 91 | return $this; |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | protected function addToMember(&$name, $value, $separator=" ") { |
| 95 | - $name=str_ireplace($value, "", $name) . $separator . $value; |
|
| 95 | + $name=str_ireplace($value, "", $name).$separator.$value; |
|
| 96 | 96 | return $this; |
| 97 | 97 | } |
| 98 | 98 | |
@@ -103,18 +103,18 @@ discard block |
||
| 103 | 103 | $oldValue=trim($oldValue); |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - protected function _getElementBy($callback,$elements){ |
|
| 106 | + protected function _getElementBy($callback, $elements) { |
|
| 107 | 107 | if (\is_array($elements)) { |
| 108 | 108 | $elements=\array_values($elements); |
| 109 | 109 | $flag=false; |
| 110 | 110 | $index=0; |
| 111 | - while ( !$flag && $index < sizeof($elements) ) { |
|
| 111 | + while (!$flag && $index<sizeof($elements)) { |
|
| 112 | 112 | if ($elements[$index] instanceof BaseHtml) |
| 113 | 113 | $flag=($callback($elements[$index])); |
| 114 | 114 | $index++; |
| 115 | 115 | } |
| 116 | - if ($flag === true) |
|
| 117 | - return $elements[$index - 1]; |
|
| 116 | + if ($flag===true) |
|
| 117 | + return $elements[$index-1]; |
|
| 118 | 118 | } elseif ($elements instanceof BaseHtml) { |
| 119 | 119 | if ($callback($elements)) |
| 120 | 120 | return $elements; |
@@ -142,13 +142,13 @@ discard block |
||
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | public function fromArray($array) { |
| 145 | - foreach ( $this as $key => $value ) { |
|
| 146 | - if(array_key_exists($key, $array)===true) |
|
| 147 | - $this->_callSetter("set" . ucfirst($key), $key, $array[$key], $array); |
|
| 145 | + foreach ($this as $key => $value) { |
|
| 146 | + if (array_key_exists($key, $array)===true) |
|
| 147 | + $this->_callSetter("set".ucfirst($key), $key, $array[$key], $array); |
|
| 148 | 148 | } |
| 149 | - foreach ( $array as $key => $value ) { |
|
| 150 | - if($this->_callSetter($key, $key, $value, $array)===false){ |
|
| 151 | - $this->_callSetter("set" . ucfirst($key), $key, $value, $array); |
|
| 149 | + foreach ($array as $key => $value) { |
|
| 150 | + if ($this->_callSetter($key, $key, $value, $array)===false) { |
|
| 151 | + $this->_callSetter("set".ucfirst($key), $key, $value, $array); |
|
| 152 | 152 | } |
| 153 | 153 | } |
| 154 | 154 | return $array; |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | |
| 157 | 157 | public function fromDatabaseObjects($objects, $function) { |
| 158 | 158 | if (isset($objects)) { |
| 159 | - foreach ( $objects as $object ) { |
|
| 159 | + foreach ($objects as $object) { |
|
| 160 | 160 | $this->fromDatabaseObject($object, $function); |
| 161 | 161 | } |
| 162 | 162 | } |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | |
| 178 | 178 | |
| 179 | 179 | public function getElementById($identifier, $elements) { |
| 180 | - return $this->_getElementBy(function(BaseWidget $element) use ($identifier){return $element->getIdentifier()===$identifier;}, $elements); |
|
| 180 | + return $this->_getElementBy(function(BaseWidget $element) use ($identifier){return $element->getIdentifier()===$identifier; }, $elements); |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | public function getBsComponent() { |
@@ -190,14 +190,14 @@ discard block |
||
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | protected function compile_once(JsUtils $js=NULL, &$view=NULL) { |
| 193 | - if(!$this->_compiled){ |
|
| 194 | - if(isset($js)){ |
|
| 193 | + if (!$this->_compiled) { |
|
| 194 | + if (isset($js)) { |
|
| 195 | 195 | $beforeCompile=$js->getParam("beforeCompileHtml"); |
| 196 | - if(\is_callable($beforeCompile)){ |
|
| 197 | - $beforeCompile($this,$js,$view); |
|
| 196 | + if (\is_callable($beforeCompile)) { |
|
| 197 | + $beforeCompile($this, $js, $view); |
|
| 198 | 198 | } |
| 199 | 199 | } |
| 200 | - if(\is_callable($this->_preCompile)){ |
|
| 200 | + if (\is_callable($this->_preCompile)) { |
|
| 201 | 201 | $pc=$this->_preCompile; |
| 202 | 202 | $pc($this); |
| 203 | 203 | } |
@@ -207,15 +207,15 @@ discard block |
||
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 210 | - $this->compile_once($js,$view); |
|
| 210 | + $this->compile_once($js, $view); |
|
| 211 | 211 | $result=$this->getTemplate($js); |
| 212 | - foreach ( $this as $key => $value ) { |
|
| 213 | - if(\strstr($result, "%{$key}%")!==false){ |
|
| 212 | + foreach ($this as $key => $value) { |
|
| 213 | + if (\strstr($result, "%{$key}%")!==false) { |
|
| 214 | 214 | if (\is_array($value)) { |
| 215 | 215 | $v=PropertyWrapper::wrap($value, $js); |
| 216 | - }elseif($value instanceof \stdClass){ |
|
| 217 | - $v=\print_r($value,true); |
|
| 218 | - }else{ |
|
| 216 | + }elseif ($value instanceof \stdClass) { |
|
| 217 | + $v=\print_r($value, true); |
|
| 218 | + } else { |
|
| 219 | 219 | $v=$value; |
| 220 | 220 | } |
| 221 | 221 | $result=str_replace("%{$key}%", $v, $result); |
@@ -223,12 +223,12 @@ discard block |
||
| 223 | 223 | } |
| 224 | 224 | if (isset($js)===true) { |
| 225 | 225 | $this->run($js); |
| 226 | - if (isset($view) === true) { |
|
| 226 | + if (isset($view)===true) { |
|
| 227 | 227 | $js->addViewElement($this->_identifier, $result, $view); |
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - if(\is_callable($this->_postCompile)){ |
|
| 231 | + if (\is_callable($this->_postCompile)) { |
|
| 232 | 232 | $pc=$this->_postCompile; |
| 233 | 233 | $pc($this); |
| 234 | 234 | } |
@@ -239,11 +239,11 @@ discard block |
||
| 239 | 239 | return $this->compile(); |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - public function onPostCompile($callback){ |
|
| 242 | + public function onPostCompile($callback) { |
|
| 243 | 243 | $this->_postCompile=$callback; |
| 244 | 244 | } |
| 245 | 245 | |
| 246 | - public function onPreCompile($callback){ |
|
| 246 | + public function onPreCompile($callback) { |
|
| 247 | 247 | $this->_preCompile=$callback; |
| 248 | 248 | } |
| 249 | 249 | } |
@@ -12,8 +12,8 @@ discard block |
||
| 12 | 12 | } |
| 13 | 13 | $output=""; |
| 14 | 14 | if (\is_array($input)) { |
| 15 | - if (sizeof($input) > 0) { |
|
| 16 | - if (self::containsElement($input) === false) { |
|
| 15 | + if (sizeof($input)>0) { |
|
| 16 | + if (self::containsElement($input)===false) { |
|
| 17 | 17 | $output=self::wrapStrings($input, $separator=' ', $valueQuote='"'); |
| 18 | 18 | } else { |
| 19 | 19 | $output=self::wrapObjects($input, $js, $separator, $valueQuote); |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | private static function containsElement($input) { |
| 27 | - foreach ( $input as $v ) { |
|
| 27 | + foreach ($input as $v) { |
|
| 28 | 28 | if (\is_object($v) || \is_array($v)) |
| 29 | 29 | return true; |
| 30 | 30 | } |
@@ -32,9 +32,9 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | public static function wrapStrings($input, $separator=' ', $valueQuote='"') { |
| 35 | - if (JArray::isAssociative($input) === true) { |
|
| 36 | - $result=implode($separator, array_map(function ($v, $k) use($valueQuote) { |
|
| 37 | - return $k . '=' . $valueQuote . $v . $valueQuote; |
|
| 35 | + if (JArray::isAssociative($input)===true) { |
|
| 36 | + $result=implode($separator, array_map(function($v, $k) use($valueQuote) { |
|
| 37 | + return $k.'='.$valueQuote.$v.$valueQuote; |
|
| 38 | 38 | }, $input, array_keys($input))); |
| 39 | 39 | } else { |
| 40 | 40 | $result=implode($separator, $input); |
@@ -43,17 +43,17 @@ discard block |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | public static function wrapObjects($input, $js=NULL, $separator=' ', $valueQuote='"') { |
| 46 | - return implode($separator, array_map(function ($v) use($js, $separator, $valueQuote) { |
|
| 47 | - if(\is_string($v)){ |
|
| 46 | + return implode($separator, array_map(function($v) use($js, $separator, $valueQuote) { |
|
| 47 | + if (\is_string($v)) { |
|
| 48 | 48 | return $v; |
| 49 | 49 | } |
| 50 | - if ($v instanceof BaseHtml){ |
|
| 50 | + if ($v instanceof BaseHtml) { |
|
| 51 | 51 | return $v->compile($js); |
| 52 | 52 | } |
| 53 | 53 | if (\is_array($v)) { |
| 54 | 54 | return self::wrap($v, $js, $separator, $valueQuote); |
| 55 | 55 | } |
| 56 | - if(!\is_callable($v)){ |
|
| 56 | + if (!\is_callable($v)) { |
|
| 57 | 57 | return $v; |
| 58 | 58 | } |
| 59 | 59 | }, $input)); |
@@ -71,14 +71,14 @@ discard block |
||
| 71 | 71 | return $result;*/ |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - protected static function wrapValue($value,$js=NULL, $separator=' ', $valueQuote='"'){ |
|
| 74 | + protected static function wrapValue($value, $js=NULL, $separator=' ', $valueQuote='"') { |
|
| 75 | 75 | if (\is_array($value)) { |
| 76 | 76 | return self::wrap($value, $js, $separator, $valueQuote); |
| 77 | 77 | } |
| 78 | - if ($value instanceof BaseHtml){ |
|
| 78 | + if ($value instanceof BaseHtml) { |
|
| 79 | 79 | return $value->compile($js); |
| 80 | 80 | } |
| 81 | - if(!\is_callable($value)){ |
|
| 81 | + if (!\is_callable($value)) { |
|
| 82 | 82 | return $value; |
| 83 | 83 | } |
| 84 | 84 | return ''; |
@@ -2,10 +2,10 @@ discard block |
||
| 2 | 2 | namespace Ajax\common\traits; |
| 3 | 3 | use Ajax\common\BaseGui; |
| 4 | 4 | |
| 5 | -trait JsUtilsInternalTrait{ |
|
| 5 | +trait JsUtilsInternalTrait { |
|
| 6 | 6 | |
| 7 | - protected $jquery_code_for_compile=array (); |
|
| 8 | - protected $jquery_code_for_compile_at_last=array (); |
|
| 7 | + protected $jquery_code_for_compile=array(); |
|
| 8 | + protected $jquery_code_for_compile_at_last=array(); |
|
| 9 | 9 | |
| 10 | 10 | protected function _addToCompile($jsScript) { |
| 11 | 11 | $this->jquery_code_for_compile[]=$jsScript; |
@@ -15,28 +15,28 @@ discard block |
||
| 15 | 15 | * @param BaseGui $library |
| 16 | 16 | * @param mixed $view |
| 17 | 17 | */ |
| 18 | - protected function _compileLibrary(BaseGui $library=NULL, &$view=NULL){ |
|
| 19 | - if(isset($view)) |
|
| 18 | + protected function _compileLibrary(BaseGui $library=NULL, &$view=NULL) { |
|
| 19 | + if (isset($view)) |
|
| 20 | 20 | $library->compileHtml($this, $view); |
| 21 | 21 | if ($library->isAutoCompile()) { |
| 22 | 22 | $library->compile(true); |
| 23 | 23 | } |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - protected function defer($script){ |
|
| 26 | + protected function defer($script) { |
|
| 27 | 27 | $result="window.defer=function (method) {if (window.jQuery) method(); else setTimeout(function() { defer(method) }, 50);};"; |
| 28 | 28 | $result.="window.defer(function(){".$script."})"; |
| 29 | 29 | return $result; |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | - protected function ready($script){ |
|
| 32 | + protected function ready($script) { |
|
| 33 | 33 | $result='$(document).ready(function() {'."\n"; |
| 34 | 34 | $result.=$script.'})'; |
| 35 | 35 | return $result; |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | protected function minify($input) { |
| 39 | - if(trim($input) === "") return $input; |
|
| 39 | + if (trim($input)==="") return $input; |
|
| 40 | 40 | return preg_replace( |
| 41 | 41 | array( |
| 42 | 42 | // Remove comment(s) |
@@ -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 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * |
| 12 | 12 | */ |
| 13 | 13 | class HtmlTableContent extends HtmlSemCollection { |
| 14 | - protected $_tdTagNames=[ "thead" => "th","tbody" => "td","tfoot" => "th" ]; |
|
| 14 | + protected $_tdTagNames=["thead" => "th", "tbody" => "td", "tfoot" => "th"]; |
|
| 15 | 15 | protected $_merged=false; |
| 16 | 16 | |
| 17 | 17 | /** |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function setRowCount($rowCount, $colCount) { |
| 37 | 37 | $count=$this->count(); |
| 38 | - for($i=$count; $i < $rowCount; $i++) { |
|
| 38 | + for ($i=$count; $i<$rowCount; $i++) { |
|
| 39 | 39 | $this->addItem($colCount); |
| 40 | 40 | } |
| 41 | 41 | return $this; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | $tr=new HtmlTR("", $value); |
| 58 | 58 | $tr->setContainer($this, $count); |
| 59 | 59 | $tr->setTdTagName($this->_tdTagNames[$this->tagName]); |
| 60 | - if (isset($value) === true) { |
|
| 60 | + if (isset($value)===true) { |
|
| 61 | 61 | $tr->setColCount($value); |
| 62 | 62 | } |
| 63 | 63 | return $tr; |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | public function setCellValue($row, $col, $value="") { |
| 117 | 117 | $cell=$this->getCell($row, $col); |
| 118 | - if (isset($cell) === true) { |
|
| 118 | + if (isset($cell)===true) { |
|
| 119 | 119 | $cell->setValue($value); |
| 120 | 120 | } |
| 121 | 121 | return $this; |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @param mixed $values |
| 127 | 127 | */ |
| 128 | 128 | public function setValues($values=array()) { |
| 129 | - return $this->_addOrSetValues($values, function(HtmlTR $row,$_values){$row->setValues($_values);}); |
|
| 129 | + return $this->_addOrSetValues($values, function(HtmlTR $row, $_values) {$row->setValues($_values); }); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | * @param mixed $values |
| 135 | 135 | */ |
| 136 | 136 | public function addValues($values=array()) { |
| 137 | - return $this->_addOrSetValues($values, function(HtmlTR $row,$_values){$row->addValues($_values);}); |
|
| 137 | + return $this->_addOrSetValues($values, function(HtmlTR $row, $_values) {$row->addValues($_values); }); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -142,21 +142,21 @@ discard block |
||
| 142 | 142 | * @param mixed $values |
| 143 | 143 | * @param callable $callback |
| 144 | 144 | */ |
| 145 | - protected function _addOrSetValues($values,$callback) { |
|
| 145 | + protected function _addOrSetValues($values, $callback) { |
|
| 146 | 146 | $count=$this->count(); |
| 147 | 147 | $isArray=true; |
| 148 | 148 | if (!\is_array($values)) { |
| 149 | 149 | $values=\array_fill(0, $count, $values); |
| 150 | 150 | $isArray=false; |
| 151 | 151 | } |
| 152 | - if (JArray::dimension($values) == 1 && $isArray) |
|
| 153 | - $values=[ $values ]; |
|
| 152 | + if (JArray::dimension($values)==1 && $isArray) |
|
| 153 | + $values=[$values]; |
|
| 154 | 154 | |
| 155 | 155 | $count=\min(\sizeof($values), $count); |
| 156 | 156 | |
| 157 | - for($i=0; $i < $count; $i++) { |
|
| 157 | + for ($i=0; $i<$count; $i++) { |
|
| 158 | 158 | $row=$this->content[$i]; |
| 159 | - $callback($row,$values[$i]); |
|
| 159 | + $callback($row, $values[$i]); |
|
| 160 | 160 | } |
| 161 | 161 | return $this; |
| 162 | 162 | } |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | $values=\array_fill(0, $count, $values); |
| 168 | 168 | } |
| 169 | 169 | $count=\min(\sizeof($values), $count); |
| 170 | - for($i=0; $i < $count; $i++) { |
|
| 170 | + for ($i=0; $i<$count; $i++) { |
|
| 171 | 171 | $this->getCell($i, $colIndex)->setValue($values[$i]); |
| 172 | 172 | } |
| 173 | 173 | return $this; |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | public function addColVariations($colIndex, $variations=array()) { |
| 177 | 177 | $count=$this->count(); |
| 178 | - for($i=0; $i < $count; $i++) { |
|
| 178 | + for ($i=0; $i<$count; $i++) { |
|
| 179 | 179 | $this->getCell($i, $colIndex)->addVariations($variations); |
| 180 | 180 | } |
| 181 | 181 | return $this; |
@@ -192,9 +192,9 @@ discard block |
||
| 192 | 192 | |
| 193 | 193 | private function colAlign($colIndex, $function) { |
| 194 | 194 | $count=$this->count(); |
| 195 | - for($i=0; $i < $count; $i++) { |
|
| 195 | + for ($i=0; $i<$count; $i++) { |
|
| 196 | 196 | $index=$this->content[$i]->getColPosition($colIndex); |
| 197 | - if ($index !== NULL) |
|
| 197 | + if ($index!==NULL) |
|
| 198 | 198 | $this->getCell($i, $index)->$function(); |
| 199 | 199 | } |
| 200 | 200 | return $this; |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | public function getColCount() { |
| 228 | 228 | $result=0; |
| 229 | - if ($this->count() > 0) |
|
| 229 | + if ($this->count()>0) |
|
| 230 | 230 | $result=$this->getItem(0)->count(); |
| 231 | 231 | return $result; |
| 232 | 232 | } |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | public function delete($rowIndex, $colIndex=NULL) { |
| 241 | 241 | if (isset($colIndex)) { |
| 242 | 242 | $row=$this->getItem($rowIndex); |
| 243 | - if (isset($row) === true) { |
|
| 243 | + if (isset($row)===true) { |
|
| 244 | 244 | $row->delete($colIndex); |
| 245 | 245 | } |
| 246 | 246 | } else { |
@@ -249,9 +249,9 @@ discard block |
||
| 249 | 249 | return $this; |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - public function toDelete($rowIndex, $colIndex){ |
|
| 252 | + public function toDelete($rowIndex, $colIndex) { |
|
| 253 | 253 | $row=$this->getItem($rowIndex); |
| 254 | - if (isset($row) === true) |
|
| 254 | + if (isset($row)===true) |
|
| 255 | 255 | $row->toDelete($colIndex); |
| 256 | 256 | return $this; |
| 257 | 257 | } |
@@ -280,17 +280,17 @@ discard block |
||
| 280 | 280 | */ |
| 281 | 281 | public function conditionalCellFormat($callback, $format) { |
| 282 | 282 | $rows=$this->content; |
| 283 | - foreach ( $rows as $row ) { |
|
| 283 | + foreach ($rows as $row) { |
|
| 284 | 284 | $row->conditionalCellFormat($callback, $format); |
| 285 | 285 | } |
| 286 | 286 | return $this; |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | - public function conditionalColFormat($colIndex,$callback,$format){ |
|
| 289 | + public function conditionalColFormat($colIndex, $callback, $format) { |
|
| 290 | 290 | $rows=$this->content; |
| 291 | - foreach ( $rows as $row ) { |
|
| 291 | + foreach ($rows as $row) { |
|
| 292 | 292 | $cell=$row->getItem($colIndex); |
| 293 | - $cell->conditionnalCellFormat($callback,$format); |
|
| 293 | + $cell->conditionnalCellFormat($callback, $format); |
|
| 294 | 294 | } |
| 295 | 295 | return $this; |
| 296 | 296 | } |
@@ -302,17 +302,17 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | public function conditionalRowFormat($callback, $format) { |
| 304 | 304 | $rows=$this->content; |
| 305 | - foreach ( $rows as $row ) { |
|
| 305 | + foreach ($rows as $row) { |
|
| 306 | 306 | $row->conditionalRowFormat($callback, $format); |
| 307 | 307 | } |
| 308 | 308 | return $this; |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | - public function hideColumn($colIndex){ |
|
| 311 | + public function hideColumn($colIndex) { |
|
| 312 | 312 | $rows=$this->content; |
| 313 | - foreach ( $rows as $row ) { |
|
| 313 | + foreach ($rows as $row) { |
|
| 314 | 314 | $cell=$row->getItem($colIndex); |
| 315 | - $cell->addToProperty("style","display:none;"); |
|
| 315 | + $cell->addToProperty("style", "display:none;"); |
|
| 316 | 316 | } |
| 317 | 317 | return $this; |
| 318 | 318 | } |
@@ -323,7 +323,7 @@ discard block |
||
| 323 | 323 | */ |
| 324 | 324 | public function applyCells($callback) { |
| 325 | 325 | $rows=$this->content; |
| 326 | - foreach ( $rows as $row ) { |
|
| 326 | + foreach ($rows as $row) { |
|
| 327 | 327 | $row->applyCells($callback); |
| 328 | 328 | } |
| 329 | 329 | return $this; |
@@ -335,25 +335,25 @@ discard block |
||
| 335 | 335 | */ |
| 336 | 336 | public function applyRows($callback) { |
| 337 | 337 | $rows=$this->content; |
| 338 | - foreach ( $rows as $row ) { |
|
| 338 | + foreach ($rows as $row) { |
|
| 339 | 339 | $row->apply($callback); |
| 340 | 340 | } |
| 341 | 341 | return $this; |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | - public function mergeIdentiqualValues($colIndex,$function="strip_tags"){ |
|
| 344 | + public function mergeIdentiqualValues($colIndex, $function="strip_tags") { |
|
| 345 | 345 | $rows=$this->content; |
| 346 | 346 | $identiqual=null; |
| 347 | 347 | $counter=0; |
| 348 | 348 | $cellToMerge=null; |
| 349 | 349 | $functionExists=\function_exists($function); |
| 350 | - foreach ( $rows as $row ) { |
|
| 350 | + foreach ($rows as $row) { |
|
| 351 | 351 | $cell=$row->getItem($colIndex); |
| 352 | 352 | $value=$cell->getContent(); |
| 353 | - if($functionExists) |
|
| 354 | - $value=\call_user_func($function,$value); |
|
| 355 | - if($value!==$identiqual){ |
|
| 356 | - if($counter>0 && isset($cellToMerge)){ |
|
| 353 | + if ($functionExists) |
|
| 354 | + $value=\call_user_func($function, $value); |
|
| 355 | + if ($value!==$identiqual) { |
|
| 356 | + if ($counter>0 && isset($cellToMerge)) { |
|
| 357 | 357 | $cellToMerge->setRowspan($counter); |
| 358 | 358 | } |
| 359 | 359 | $counter=0; |
@@ -362,17 +362,17 @@ discard block |
||
| 362 | 362 | } |
| 363 | 363 | $counter++; |
| 364 | 364 | } |
| 365 | - if($counter>0 && isset($cellToMerge)){ |
|
| 365 | + if ($counter>0 && isset($cellToMerge)) { |
|
| 366 | 366 | $cellToMerge->setRowspan($counter); |
| 367 | 367 | } |
| 368 | 368 | return $this; |
| 369 | 369 | } |
| 370 | 370 | |
| 371 | - public function _isMerged(){ |
|
| 371 | + public function _isMerged() { |
|
| 372 | 372 | return $this->_merged; |
| 373 | 373 | } |
| 374 | 374 | |
| 375 | - public function _setMerged($value){ |
|
| 375 | + public function _setMerged($value) { |
|
| 376 | 376 | $this->_merged=$value; |
| 377 | 377 | return $this; |
| 378 | 378 | } |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | use Ajax\JsUtils; |
| 13 | 13 | |
| 14 | 14 | class HtmlTD extends HtmlSemDoubleElement { |
| 15 | - use TextAlignmentTrait,TableElementTrait; |
|
| 15 | + use TextAlignmentTrait, TableElementTrait; |
|
| 16 | 16 | private $_container; |
| 17 | 17 | private $_row; |
| 18 | 18 | private $_col; |
@@ -28,8 +28,8 @@ discard block |
||
| 28 | 28 | */ |
| 29 | 29 | public function __construct($identifier, $content=NULL, $tagName="td") { |
| 30 | 30 | parent::__construct($identifier, $tagName, "", $content); |
| 31 | - $this->_variations=[ Variation::COLLAPSING ]; |
|
| 32 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 31 | + $this->_variations=[Variation::COLLAPSING]; |
|
| 32 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | public function setContainer($container, $row, $col) { |
@@ -49,8 +49,8 @@ discard block |
||
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | public function setRowspan($rowspan) { |
| 52 | - $to=min($this->_container->count(), $this->_row + $rowspan - 1); |
|
| 53 | - for($i=$to; $i > $this->_row; $i--) { |
|
| 52 | + $to=min($this->_container->count(), $this->_row+$rowspan-1); |
|
| 53 | + for ($i=$to; $i>$this->_row; $i--) { |
|
| 54 | 54 | $this->_container->toDelete($i, $this->_col); |
| 55 | 55 | } |
| 56 | 56 | $this->setProperty("rowspan", $rowspan); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | public function mergeRow() { |
| 61 | - if(!$this->_rowMerged){ |
|
| 61 | + if (!$this->_rowMerged) { |
|
| 62 | 62 | $this->_rowMerged=true; |
| 63 | 63 | return $this->setRowspan($this->_container->count()); |
| 64 | 64 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | public function mergeCol() { |
| 69 | - if(!$this->_colMerged){ |
|
| 69 | + if (!$this->_colMerged) { |
|
| 70 | 70 | $this->_colMerged=true; |
| 71 | 71 | return $this->setColspan($this->_container->getRow($this->_row)->count()); |
| 72 | 72 | } |
@@ -74,9 +74,9 @@ discard block |
||
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | public function setColspan($colspan) { |
| 77 | - $to=min($this->_container->getRow($this->_row)->count(), $this->_col + $colspan - 1); |
|
| 78 | - for($i=$to; $i > $this->_col; $i--) { |
|
| 79 | - $this->_container->toDelete($this->_row, $this->_col + 1); |
|
| 77 | + $to=min($this->_container->getRow($this->_row)->count(), $this->_col+$colspan-1); |
|
| 78 | + for ($i=$to; $i>$this->_col; $i--) { |
|
| 79 | + $this->_container->toDelete($this->_row, $this->_col+1); |
|
| 80 | 80 | } |
| 81 | 81 | $this->setProperty("colspan", $colspan); |
| 82 | 82 | return $this->_container->_setMerged(true); |
@@ -115,21 +115,21 @@ discard block |
||
| 115 | 115 | return $this->addToProperty("class", "selectable"); |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - public function setWidth($width){ |
|
| 118 | + public function setWidth($width) { |
|
| 119 | 119 | if (\is_int($width)) { |
| 120 | - $width=Wide::getConstants()["W" . $width]; |
|
| 120 | + $width=Wide::getConstants()["W".$width]; |
|
| 121 | 121 | } |
| 122 | 122 | $this->addToPropertyCtrl("class", $width, Wide::getConstants()); |
| 123 | - return $this->addToPropertyCtrl("class", "wide", array ("wide" )); |
|
| 123 | + return $this->addToPropertyCtrl("class", "wide", array("wide")); |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - public function toDelete(){ |
|
| 126 | + public function toDelete() { |
|
| 127 | 127 | $this->_deleted=true; |
| 128 | 128 | return $this; |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 132 | - if(!$this->_deleted) |
|
| 132 | + if (!$this->_deleted) |
|
| 133 | 133 | return parent::compile(); |
| 134 | 134 | return; |
| 135 | 135 | } |