@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | * @return HtmlModal |
| 87 | 87 | */ |
| 88 | 88 | public function htmlModal($identifier, $header="", $content="", $actions=array()) { |
| 89 | - return $this->addHtmlComponent(new HtmlModal($identifier, $header,$content,$actions)); |
|
| 89 | + return $this->addHtmlComponent(new HtmlModal($identifier, $header, $content, $actions)); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -117,8 +117,8 @@ discard block |
||
| 117 | 117 | * @param boolean $associative |
| 118 | 118 | * @return HtmlDropdown |
| 119 | 119 | */ |
| 120 | - public function htmlDropdown($identifier, $value="", $items=array(),$associative=true) { |
|
| 121 | - return $this->addHtmlComponent(new HtmlDropdown($identifier, $value, $items,$associative)); |
|
| 120 | + public function htmlDropdown($identifier, $value="", $items=array(), $associative=true) { |
|
| 121 | + return $this->addHtmlComponent(new HtmlDropdown($identifier, $value, $items, $associative)); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -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 | /** |
@@ -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 | } |
@@ -37,28 +37,28 @@ discard block |
||
| 37 | 37 | protected $_edition; |
| 38 | 38 | |
| 39 | 39 | |
| 40 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
| 40 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
| 41 | 41 | parent::__construct($identifier); |
| 42 | 42 | $this->_template="%wrapContentBefore%%content%%wrapContentAfter%"; |
| 43 | 43 | $this->setModel($model); |
| 44 | - if(isset($modelInstance)); |
|
| 44 | + if (isset($modelInstance)); |
|
| 45 | 45 | $this->show($modelInstance); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - protected function _init($instanceViewer,$contentKey,$content,$edition){ |
|
| 48 | + protected function _init($instanceViewer, $contentKey, $content, $edition) { |
|
| 49 | 49 | $this->_instanceViewer=$instanceViewer; |
| 50 | 50 | $this->content=[$contentKey=>$content]; |
| 51 | 51 | $this->_toolbarPosition=PositionInTable::BEFORETABLE; |
| 52 | 52 | $this->_edition=$edition; |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - protected function _getFieldIdentifier($prefix){ |
|
| 55 | + protected function _getFieldIdentifier($prefix) { |
|
| 56 | 56 | return $this->identifier."-{$prefix}-".$this->_instanceViewer->getIdentifier(); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - abstract protected function _setToolbarPosition($table,$captions=NULL); |
|
| 59 | + abstract protected function _setToolbarPosition($table, $captions=NULL); |
|
| 60 | 60 | |
| 61 | - public function show($modelInstance){ |
|
| 61 | + public function show($modelInstance) { |
|
| 62 | 62 | $this->_modelInstance=$modelInstance; |
| 63 | 63 | } |
| 64 | 64 | |
@@ -82,42 +82,42 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | abstract public function getHtmlComponent(); |
| 84 | 84 | |
| 85 | - public function setColor($color){ |
|
| 85 | + public function setColor($color) { |
|
| 86 | 86 | return $this->getHtmlComponent()->setColor($color); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | |
| 90 | - public function setCaptions($captions){ |
|
| 90 | + public function setCaptions($captions) { |
|
| 91 | 91 | $this->_instanceViewer->setCaptions($captions); |
| 92 | 92 | return $this; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - public function setFields($fields){ |
|
| 95 | + public function setFields($fields) { |
|
| 96 | 96 | $this->_instanceViewer->setVisibleProperties($fields); |
| 97 | 97 | return $this; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - public function addField($field){ |
|
| 100 | + public function addField($field) { |
|
| 101 | 101 | $this->_instanceViewer->addField($field); |
| 102 | 102 | return $this; |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - public function insertField($index,$field){ |
|
| 105 | + public function insertField($index, $field) { |
|
| 106 | 106 | $this->_instanceViewer->insertField($index, $field); |
| 107 | 107 | return $this; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - public function insertInField($index,$field){ |
|
| 110 | + public function insertInField($index, $field) { |
|
| 111 | 111 | $this->_instanceViewer->insertInField($index, $field); |
| 112 | 112 | return $this; |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - public function setValueFunction($index,$callback){ |
|
| 115 | + public function setValueFunction($index, $callback) { |
|
| 116 | 116 | $this->_instanceViewer->setValueFunction($index, $callback); |
| 117 | 117 | return $this; |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - public function setIdentifierFunction($callback){ |
|
| 120 | + public function setIdentifierFunction($callback) { |
|
| 121 | 121 | $this->_instanceViewer->setIdentifierFunction($callback); |
| 122 | 122 | return $this; |
| 123 | 123 | } |
@@ -125,8 +125,8 @@ discard block |
||
| 125 | 125 | /** |
| 126 | 126 | * @return \Ajax\semantic\html\collections\menus\HtmlMenu |
| 127 | 127 | */ |
| 128 | - public function getToolbar(){ |
|
| 129 | - if(isset($this->_toolbar)===false){ |
|
| 128 | + public function getToolbar() { |
|
| 129 | + if (isset($this->_toolbar)===false) { |
|
| 130 | 130 | $this->_toolbar=new HtmlMenu("toolbar-".$this->identifier); |
| 131 | 131 | //$this->_toolbar->setSecondary(); |
| 132 | 132 | } |
@@ -139,10 +139,10 @@ discard block |
||
| 139 | 139 | * @param callable $callback function to call on $element |
| 140 | 140 | * @return \Ajax\common\html\HtmlDoubleElement |
| 141 | 141 | */ |
| 142 | - public function addInToolbar($element,$callback=NULL){ |
|
| 142 | + public function addInToolbar($element, $callback=NULL) { |
|
| 143 | 143 | $tb=$this->getToolbar(); |
| 144 | - if(isset($callback)){ |
|
| 145 | - if(\is_callable($callback)){ |
|
| 144 | + if (isset($callback)) { |
|
| 145 | + if (\is_callable($callback)) { |
|
| 146 | 146 | $callback($element); |
| 147 | 147 | } |
| 148 | 148 | } |
@@ -155,9 +155,9 @@ discard block |
||
| 155 | 155 | * @param callable $callback function($element) |
| 156 | 156 | * @return \Ajax\common\html\HtmlDoubleElement |
| 157 | 157 | */ |
| 158 | - public function addItemInToolbar($caption,$icon=NULL,$callback=NULL){ |
|
| 159 | - $result=$this->addInToolbar($caption,$callback); |
|
| 160 | - if(isset($icon)) |
|
| 158 | + public function addItemInToolbar($caption, $icon=NULL, $callback=NULL) { |
|
| 159 | + $result=$this->addInToolbar($caption, $callback); |
|
| 160 | + if (isset($icon)) |
|
| 161 | 161 | $result->addIcon($icon); |
| 162 | 162 | return $result; |
| 163 | 163 | } |
@@ -167,14 +167,14 @@ discard block |
||
| 167 | 167 | * @param callable $callback function($element) |
| 168 | 168 | * @return \Ajax\common\Widget |
| 169 | 169 | */ |
| 170 | - public function addItemsInToolbar(array $items,$callback=NULL){ |
|
| 171 | - if(JArray::isAssociative($items)){ |
|
| 172 | - foreach ($items as $icon=>$item){ |
|
| 173 | - $this->addItemInToolbar($item,$icon,$callback); |
|
| 170 | + public function addItemsInToolbar(array $items, $callback=NULL) { |
|
| 171 | + if (JArray::isAssociative($items)) { |
|
| 172 | + foreach ($items as $icon=>$item) { |
|
| 173 | + $this->addItemInToolbar($item, $icon, $callback); |
|
| 174 | 174 | } |
| 175 | - }else{ |
|
| 176 | - foreach ($items as $item){ |
|
| 177 | - $this->addItemInToolbar($item,null,$callback); |
|
| 175 | + } else { |
|
| 176 | + foreach ($items as $item) { |
|
| 177 | + $this->addItemInToolbar($item, null, $callback); |
|
| 178 | 178 | } |
| 179 | 179 | } |
| 180 | 180 | return $this; |
@@ -186,12 +186,12 @@ discard block |
||
| 186 | 186 | * @param callable $callback function($element) |
| 187 | 187 | * @return \Ajax\common\html\HtmlDoubleElement |
| 188 | 188 | */ |
| 189 | - public function addDropdownInToolbar($value,$items,$callback=NULL){ |
|
| 189 | + public function addDropdownInToolbar($value, $items, $callback=NULL) { |
|
| 190 | 190 | $dd=$value; |
| 191 | 191 | if (\is_string($value)) { |
| 192 | - $dd=new HtmlDropdown("dropdown-". $this->identifier."-".$value, $value, $items); |
|
| 192 | + $dd=new HtmlDropdown("dropdown-".$this->identifier."-".$value, $value, $items); |
|
| 193 | 193 | } |
| 194 | - return $this->addInToolbar($dd,$callback); |
|
| 194 | + return $this->addInToolbar($dd, $callback); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
@@ -199,9 +199,9 @@ discard block |
||
| 199 | 199 | * @param callable $callback function($element) |
| 200 | 200 | * @return \Ajax\common\html\HtmlDoubleElement |
| 201 | 201 | */ |
| 202 | - public function addButtonInToolbar($caption,$callback=NULL){ |
|
| 203 | - $bt=new HtmlButton("",$caption); |
|
| 204 | - return $this->addInToolbar($bt,$callback); |
|
| 202 | + public function addButtonInToolbar($caption, $callback=NULL) { |
|
| 203 | + $bt=new HtmlButton("", $caption); |
|
| 204 | + return $this->addInToolbar($bt, $callback); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
@@ -210,9 +210,9 @@ discard block |
||
| 210 | 210 | * @param callable $callback function($element) |
| 211 | 211 | * @return \Ajax\common\html\HtmlDoubleElement |
| 212 | 212 | */ |
| 213 | - public function addButtonsInToolbar(array $captions,$asIcon=false,$callback=NULL){ |
|
| 214 | - $bts=new HtmlButtonGroups("",$captions,$asIcon); |
|
| 215 | - return $this->addInToolbar($bts,$callback); |
|
| 213 | + public function addButtonsInToolbar(array $captions, $asIcon=false, $callback=NULL) { |
|
| 214 | + $bts=new HtmlButtonGroups("", $captions, $asIcon); |
|
| 215 | + return $this->addInToolbar($bts, $callback); |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | /** |
@@ -222,9 +222,9 @@ discard block |
||
| 222 | 222 | * @param boolean $labeled |
| 223 | 223 | * @return \Ajax\common\html\HtmlDoubleElement |
| 224 | 224 | */ |
| 225 | - public function addLabelledIconButtonInToolbar($caption,$icon,$before=true,$labeled=false){ |
|
| 226 | - $bt=new HtmlButton("",$caption); |
|
| 227 | - $bt->addIcon($icon,$before,$labeled); |
|
| 225 | + public function addLabelledIconButtonInToolbar($caption, $icon, $before=true, $labeled=false) { |
|
| 226 | + $bt=new HtmlButton("", $caption); |
|
| 227 | + $bt->addIcon($icon, $before, $labeled); |
|
| 228 | 228 | return $this->addInToolbar($bt); |
| 229 | 229 | } |
| 230 | 230 | |
@@ -254,12 +254,12 @@ discard block |
||
| 254 | 254 | * @param callable $defaultValueFunction |
| 255 | 255 | * @return \Ajax\common\Widget |
| 256 | 256 | */ |
| 257 | - public function setDefaultValueFunction($defaultValueFunction){ |
|
| 257 | + public function setDefaultValueFunction($defaultValueFunction) { |
|
| 258 | 258 | $this->_instanceViewer->setDefaultValueFunction($defaultValueFunction); |
| 259 | 259 | return $this; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - public function jsDisabled($disable=true){ |
|
| 262 | + public function jsDisabled($disable=true) { |
|
| 263 | 263 | return "$('#".$this->identifier." .ui.input').toggleClass('disabled',".$disable.");"; |
| 264 | 264 | } |
| 265 | 265 | |
@@ -268,11 +268,11 @@ discard block |
||
| 268 | 268 | * @param callable $callback function($element) |
| 269 | 269 | * @return \Ajax\common\html\HtmlDoubleElement |
| 270 | 270 | */ |
| 271 | - public function addEditButtonInToolbar($caption,$callback=NULL){ |
|
| 272 | - $bt=new HtmlButton($this->identifier."-editBtn",$caption); |
|
| 271 | + public function addEditButtonInToolbar($caption, $callback=NULL) { |
|
| 272 | + $bt=new HtmlButton($this->identifier."-editBtn", $caption); |
|
| 273 | 273 | $bt->setToggle(); |
| 274 | 274 | $bt->onClick($this->jsDisabled(Javascript::prep_value("$(event.target).hasClass('active')"))); |
| 275 | - return $this->addInToolbar($bt,$callback); |
|
| 275 | + return $this->addInToolbar($bt, $callback); |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | } |
| 279 | 279 | \ No newline at end of file |
@@ -9,11 +9,11 @@ discard block |
||
| 9 | 9 | use Ajax\common\html\HtmlDoubleElement; |
| 10 | 10 | use Ajax\semantic\html\base\constants\Side; |
| 11 | 11 | |
| 12 | -class HtmlStep extends HtmlSemCollection{ |
|
| 12 | +class HtmlStep extends HtmlSemCollection { |
|
| 13 | 13 | protected $_activeStep; |
| 14 | 14 | |
| 15 | - public function __construct( $identifier,$steps=array()){ |
|
| 16 | - parent::__construct( $identifier,"div", "ui steps"); |
|
| 15 | + public function __construct($identifier, $steps=array()) { |
|
| 16 | + parent::__construct($identifier, "div", "ui steps"); |
|
| 17 | 17 | $this->addItems($steps); |
| 18 | 18 | } |
| 19 | 19 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * @see \Ajax\common\html\html5\HtmlCollection::createItem() |
| 24 | 24 | */ |
| 25 | 25 | protected function createItem($value) { |
| 26 | - $itemO=new HtmlStepItem("item-".\sizeof($this->content),$value); |
|
| 26 | + $itemO=new HtmlStepItem("item-".\sizeof($this->content), $value); |
|
| 27 | 27 | return $itemO; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -31,50 +31,50 @@ discard block |
||
| 31 | 31 | * @param string|array $step |
| 32 | 32 | * @return HtmlStepItem |
| 33 | 33 | */ |
| 34 | - public function addStep($step){ |
|
| 34 | + public function addStep($step) { |
|
| 35 | 35 | return $this->addItem($step); |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - public function setOrdered(){ |
|
| 38 | + public function setOrdered() { |
|
| 39 | 39 | return $this->addToProperty("class", "ordered"); |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public function isOrdered(){ |
|
| 42 | + public function isOrdered() { |
|
| 43 | 43 | return $this->propertyContains("class", "ordered"); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public function setVertical(){ |
|
| 46 | + public function setVertical() { |
|
| 47 | 47 | return $this->addToProperty("class", "vertical"); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - protected function defineActiveStep(){ |
|
| 50 | + protected function defineActiveStep() { |
|
| 51 | 51 | $activestep=$this->_activeStep; |
| 52 | 52 | $count=$this->count(); |
| 53 | - if($this->isOrdered()){ |
|
| 54 | - for($i=0;$i<$count;$i++){ |
|
| 53 | + if ($this->isOrdered()) { |
|
| 54 | + for ($i=0; $i<$count; $i++) { |
|
| 55 | 55 | $step=$this->content[$i]; |
| 56 | 56 | $step->removeStatus(); |
| 57 | - if($i<$activestep) |
|
| 57 | + if ($i<$activestep) |
|
| 58 | 58 | $step->setCompleted(); |
| 59 | 59 | elseif ($i===$activestep) |
| 60 | 60 | $step->setActive(); |
| 61 | 61 | else |
| 62 | 62 | $step->setDisabled(); |
| 63 | 63 | } |
| 64 | - }else{ |
|
| 65 | - foreach ($this->content as $step){ |
|
| 64 | + } else { |
|
| 65 | + foreach ($this->content as $step) { |
|
| 66 | 66 | $step->removeStatus(); |
| 67 | 67 | } |
| 68 | - if($activestep<$count) |
|
| 68 | + if ($activestep<$count) |
|
| 69 | 69 | $this->content[$activestep]->setActive(); |
| 70 | 70 | } |
| 71 | 71 | return $this; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 75 | - if(isset($this->_activeStep) && \is_numeric($this->_activeStep)) |
|
| 75 | + if (isset($this->_activeStep) && \is_numeric($this->_activeStep)) |
|
| 76 | 76 | $this->defineActiveStep(); |
| 77 | - return parent::compile($js,$view); |
|
| 77 | + return parent::compile($js, $view); |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | public function setActiveStep($_activeStep) { |
@@ -82,15 +82,15 @@ discard block |
||
| 82 | 82 | return $this; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - public function setAttached($side="",HtmlDoubleElement $toElement=NULL){ |
|
| 86 | - if(isset($toElement)){ |
|
| 87 | - $toElement->addToPropertyCtrl("class", "attached",array("attached")); |
|
| 85 | + public function setAttached($side="", HtmlDoubleElement $toElement=NULL) { |
|
| 86 | + if (isset($toElement)) { |
|
| 87 | + $toElement->addToPropertyCtrl("class", "attached", array("attached")); |
|
| 88 | 88 | } |
| 89 | - return $this->addToPropertyCtrl("class", $side." attached",Side::getConstantValues("attached")); |
|
| 89 | + return $this->addToPropertyCtrl("class", $side." attached", Side::getConstantValues("attached")); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - public function asLink(){ |
|
| 93 | - foreach ($this->content as $step){ |
|
| 92 | + public function asLink() { |
|
| 93 | + foreach ($this->content as $step) { |
|
| 94 | 94 | $step->asLink(); |
| 95 | 95 | } |
| 96 | 96 | return $this; |
@@ -54,26 +54,29 @@ |
||
| 54 | 54 | for($i=0;$i<$count;$i++){ |
| 55 | 55 | $step=$this->content[$i]; |
| 56 | 56 | $step->removeStatus(); |
| 57 | - if($i<$activestep) |
|
| 58 | - $step->setCompleted(); |
|
| 59 | - elseif ($i===$activestep) |
|
| 60 | - $step->setActive(); |
|
| 61 | - else |
|
| 62 | - $step->setDisabled(); |
|
| 57 | + if($i<$activestep) { |
|
| 58 | + $step->setCompleted(); |
|
| 59 | + } elseif ($i===$activestep) { |
|
| 60 | + $step->setActive(); |
|
| 61 | + } else { |
|
| 62 | + $step->setDisabled(); |
|
| 63 | + } |
|
| 63 | 64 | } |
| 64 | - }else{ |
|
| 65 | + } else{ |
|
| 65 | 66 | foreach ($this->content as $step){ |
| 66 | 67 | $step->removeStatus(); |
| 67 | 68 | } |
| 68 | - if($activestep<$count) |
|
| 69 | - $this->content[$activestep]->setActive(); |
|
| 69 | + if($activestep<$count) { |
|
| 70 | + $this->content[$activestep]->setActive(); |
|
| 71 | + } |
|
| 70 | 72 | } |
| 71 | 73 | return $this; |
| 72 | 74 | } |
| 73 | 75 | |
| 74 | 76 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 75 | - if(isset($this->_activeStep) && \is_numeric($this->_activeStep)) |
|
| 76 | - $this->defineActiveStep(); |
|
| 77 | + if(isset($this->_activeStep) && \is_numeric($this->_activeStep)) { |
|
| 78 | + $this->defineActiveStep(); |
|
| 79 | + } |
|
| 77 | 80 | return parent::compile($js,$view); |
| 78 | 81 | } |
| 79 | 82 | |
@@ -15,16 +15,16 @@ discard block |
||
| 15 | 15 | * @license Apache 2 http://www.apache.org/licenses/ |
| 16 | 16 | **/ |
| 17 | 17 | class Jquery { |
| 18 | - use JqueryEventsTrait,JqueryAjaxTrait,JqueryActionsTrait; |
|
| 18 | + use JqueryEventsTrait, JqueryAjaxTrait, JqueryActionsTrait; |
|
| 19 | 19 | protected $_ui; |
| 20 | 20 | protected $_bootstrap; |
| 21 | 21 | protected $_semantic; |
| 22 | - protected $jquery_code_for_compile=array (); |
|
| 22 | + protected $jquery_code_for_compile=array(); |
|
| 23 | 23 | protected $jsUtils; |
| 24 | 24 | protected $params; |
| 25 | 25 | |
| 26 | - protected $jquery_events=array ( |
|
| 27 | - "bind","blur","change","click","dblclick","delegate","die","error","focus","focusin","focusout","hover","keydown","keypress","keyup","live","load","mousedown","mousseenter","mouseleave","mousemove","mouseout","mouseover","mouseup","off","on","one","ready","resize","scroll","select","submit","toggle","trigger","triggerHandler","undind","undelegate","unload" |
|
| 26 | + protected $jquery_events=array( |
|
| 27 | + "bind", "blur", "change", "click", "dblclick", "delegate", "die", "error", "focus", "focusin", "focusout", "hover", "keydown", "keypress", "keyup", "live", "load", "mousedown", "mousseenter", "mouseleave", "mousemove", "mouseout", "mouseover", "mouseup", "off", "on", "one", "ready", "resize", "scroll", "select", "submit", "toggle", "trigger", "triggerHandler", "undind", "undelegate", "unload" |
|
| 28 | 28 | ); |
| 29 | 29 | |
| 30 | 30 | public function ui($ui=NULL) { |
@@ -48,9 +48,9 @@ discard block |
||
| 48 | 48 | return $this->_semantic; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function __construct($params,$jsUtils) { |
|
| 51 | + public function __construct($params, $jsUtils) { |
|
| 52 | 52 | $this->params=array(); |
| 53 | - foreach ( $params as $key => $val ) { |
|
| 53 | + foreach ($params as $key => $val) { |
|
| 54 | 54 | $this->params[$key]=$params[$key]; |
| 55 | 55 | } |
| 56 | 56 | $this->jsUtils=$jsUtils; |
@@ -114,12 +114,12 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public function _output($array_js='') { |
| 116 | 116 | if (!is_array($array_js)) { |
| 117 | - $array_js=array ( |
|
| 117 | + $array_js=array( |
|
| 118 | 118 | $array_js |
| 119 | 119 | ); |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - foreach ( $array_js as $js ) { |
|
| 122 | + foreach ($array_js as $js) { |
|
| 123 | 123 | $this->jquery_code_for_compile[]="\t$js\n"; |
| 124 | 124 | } |
| 125 | 125 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | * @param string $param |
| 132 | 132 | * @param boolean $immediatly delayed if false |
| 133 | 133 | */ |
| 134 | - public function _genericCallValue($jQueryCall,$element='this', $param="", $immediatly=false) { |
|
| 134 | + public function _genericCallValue($jQueryCall, $element='this', $param="", $immediatly=false) { |
|
| 135 | 135 | $element=Javascript::prep_element($element); |
| 136 | 136 | if (isset($param)) { |
| 137 | 137 | $param=Javascript::prep_value($param); |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | * @param boolean $immediatly delayed if false |
| 151 | 151 | * @return string |
| 152 | 152 | */ |
| 153 | - public function _genericCallElement($jQueryCall,$to='this', $element, $immediatly=false) { |
|
| 153 | + public function _genericCallElement($jQueryCall, $to='this', $element, $immediatly=false) { |
|
| 154 | 154 | $to=Javascript::prep_element($to); |
| 155 | 155 | $element=Javascript::prep_element($element); |
| 156 | 156 | $str="$({$to}).{$jQueryCall}({$element});"; |
@@ -168,8 +168,8 @@ discard block |
||
| 168 | 168 | */ |
| 169 | 169 | public function sortable($element, $options=array()) { |
| 170 | 170 | if (count($options)>0) { |
| 171 | - $sort_options=array (); |
|
| 172 | - foreach ( $options as $k => $v ) { |
|
| 171 | + $sort_options=array(); |
|
| 172 | + foreach ($options as $k => $v) { |
|
| 173 | 173 | $sort_options[]="\n\t\t".$k.': '.$v.""; |
| 174 | 174 | } |
| 175 | 175 | $sort_options=implode(",", $sort_options); |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | * @param boolean $stopPropagation Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. |
| 202 | 202 | * @return string |
| 203 | 203 | */ |
| 204 | - public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true) { |
|
| 204 | + public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true) { |
|
| 205 | 205 | if (is_array($js)) { |
| 206 | 206 | $js=implode("\n\t\t", $js); |
| 207 | 207 | } |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | $event="\n\t$(".Javascript::prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n"; |
| 216 | 216 | else |
| 217 | 217 | $event="\n\t$(".Javascript::prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n"; |
| 218 | - if($immediatly) |
|
| 218 | + if ($immediatly) |
|
| 219 | 219 | $this->jquery_code_for_compile[]=$event; |
| 220 | 220 | return $event; |
| 221 | 221 | } |
@@ -247,18 +247,18 @@ discard block |
||
| 247 | 247 | $script.='});'; |
| 248 | 248 | |
| 249 | 249 | $this->jquery_code_for_compile=array(); |
| 250 | - if($this->params["debug"]==false){ |
|
| 250 | + if ($this->params["debug"]==false) { |
|
| 251 | 251 | $script=$this->minify($script); |
| 252 | 252 | } |
| 253 | 253 | $output=($script_tags===FALSE) ? $script : $this->inline($script); |
| 254 | 254 | |
| 255 | - if ($view!==NULL){ |
|
| 256 | - $this->jsUtils->createScriptVariable($view,$view_var, $output); |
|
| 255 | + if ($view!==NULL) { |
|
| 256 | + $this->jsUtils->createScriptVariable($view, $view_var, $output); |
|
| 257 | 257 | } |
| 258 | 258 | return $output; |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | - private function _compileLibrary($library){ |
|
| 261 | + private function _compileLibrary($library) { |
|
| 262 | 262 | if ($library!=NULL) { |
| 263 | 263 | if ($library->isAutoCompile()) { |
| 264 | 264 | $library->compile(true); |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | * @return void |
| 277 | 277 | */ |
| 278 | 278 | public function _clear_compile() { |
| 279 | - $this->jquery_code_for_compile=array (); |
|
| 279 | + $this->jquery_code_for_compile=array(); |
|
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | /** |
@@ -285,18 +285,18 @@ discard block |
||
| 285 | 285 | */ |
| 286 | 286 | public function _document_ready($js) { |
| 287 | 287 | if (!is_array($js)) { |
| 288 | - $js=array ( |
|
| 288 | + $js=array( |
|
| 289 | 289 | $js |
| 290 | 290 | ); |
| 291 | 291 | } |
| 292 | 292 | |
| 293 | - foreach ( $js as $script ) { |
|
| 293 | + foreach ($js as $script) { |
|
| 294 | 294 | $this->jquery_code_for_compile[]=$script; |
| 295 | 295 | } |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | private function minify($input) { |
| 299 | - if(trim($input) === "") return $input; |
|
| 299 | + if (trim($input)==="") return $input; |
|
| 300 | 300 | return preg_replace( |
| 301 | 301 | array( |
| 302 | 302 | // Remove comment(s) |
@@ -136,10 +136,12 @@ discard block |
||
| 136 | 136 | if (isset($param)) { |
| 137 | 137 | $param=Javascript::prep_value($param); |
| 138 | 138 | $str="$({$element}).{$jQueryCall}({$param});"; |
| 139 | - } else |
|
| 140 | - $str="$({$element}).{$jQueryCall}();"; |
|
| 141 | - if ($immediatly) |
|
| 142 | - $this->jquery_code_for_compile[]=$str; |
|
| 139 | + } else { |
|
| 140 | + $str="$({$element}).{$jQueryCall}();"; |
|
| 141 | + } |
|
| 142 | + if ($immediatly) { |
|
| 143 | + $this->jquery_code_for_compile[]=$str; |
|
| 144 | + } |
|
| 143 | 145 | return $str; |
| 144 | 146 | } |
| 145 | 147 | /** |
@@ -154,8 +156,9 @@ discard block |
||
| 154 | 156 | $to=Javascript::prep_element($to); |
| 155 | 157 | $element=Javascript::prep_element($element); |
| 156 | 158 | $str="$({$to}).{$jQueryCall}({$element});"; |
| 157 | - if ($immediatly) |
|
| 158 | - $this->jquery_code_for_compile[]=$str; |
|
| 159 | + if ($immediatly) { |
|
| 160 | + $this->jquery_code_for_compile[]=$str; |
|
| 161 | + } |
|
| 159 | 162 | return $str; |
| 160 | 163 | } |
| 161 | 164 | |
@@ -211,12 +214,14 @@ discard block |
||
| 211 | 214 | if ($stopPropagation===true) { |
| 212 | 215 | $js="event.stopPropagation();\n".$js; |
| 213 | 216 | } |
| 214 | - if (array_search($event, $this->jquery_events)===false) |
|
| 215 | - $event="\n\t$(".Javascript::prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n"; |
|
| 216 | - else |
|
| 217 | - $event="\n\t$(".Javascript::prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n"; |
|
| 218 | - if($immediatly) |
|
| 219 | - $this->jquery_code_for_compile[]=$event; |
|
| 217 | + if (array_search($event, $this->jquery_events)===false) { |
|
| 218 | + $event="\n\t$(".Javascript::prep_element($element).").bind('{$event}',function(event){\n\t\t{$js}\n\t});\n"; |
|
| 219 | + } else { |
|
| 220 | + $event="\n\t$(".Javascript::prep_element($element).").{$event}(function(event){\n\t\t{$js}\n\t});\n"; |
|
| 221 | + } |
|
| 222 | + if($immediatly) { |
|
| 223 | + $this->jquery_code_for_compile[]=$event; |
|
| 224 | + } |
|
| 220 | 225 | return $event; |
| 221 | 226 | } |
| 222 | 227 | |
@@ -296,7 +301,9 @@ discard block |
||
| 296 | 301 | } |
| 297 | 302 | |
| 298 | 303 | private function minify($input) { |
| 299 | - if(trim($input) === "") return $input; |
|
| 304 | + if(trim($input) === "") { |
|
| 305 | + return $input; |
|
| 306 | + } |
|
| 300 | 307 | return preg_replace( |
| 301 | 308 | array( |
| 302 | 309 | // Remove comment(s) |
@@ -68,8 +68,9 @@ discard block |
||
| 68 | 68 | |
| 69 | 69 | $table->setRowCount(0, \sizeof($captions)); |
| 70 | 70 | $table->setHeaderValues($captions); |
| 71 | - if(isset($this->_compileParts)) |
|
| 72 | - $table->setCompileParts($this->_compileParts); |
|
| 71 | + if(isset($this->_compileParts)) { |
|
| 72 | + $table->setCompileParts($this->_compileParts); |
|
| 73 | + } |
|
| 73 | 74 | if(isset($this->_searchField) && isset($js)){ |
| 74 | 75 | $this->_searchField->postOn("change", $this->_urls,"{'s':$(this).val()}","-#".$this->identifier." tbody",["preventDefault"=>false]); |
| 75 | 76 | } |
@@ -275,8 +276,9 @@ discard block |
||
| 275 | 276 | private function getDefaultButton($icon,$class=null){ |
| 276 | 277 | $bt=$this->getFieldButton(""); |
| 277 | 278 | $bt->asIcon($icon); |
| 278 | - if(isset($class)) |
|
| 279 | - $bt->addToProperty("class", $class); |
|
| 279 | + if(isset($class)) { |
|
| 280 | + $bt->addToProperty("class", $class); |
|
| 281 | + } |
|
| 280 | 282 | return $bt; |
| 281 | 283 | } |
| 282 | 284 | |
@@ -30,8 +30,8 @@ discard block |
||
| 30 | 30 | protected $_hasCheckboxes; |
| 31 | 31 | protected $_compileParts; |
| 32 | 32 | |
| 33 | - public function run(JsUtils $js){ |
|
| 34 | - if($this->_hasCheckboxes && isset($js)){ |
|
| 33 | + public function run(JsUtils $js) { |
|
| 34 | + if ($this->_hasCheckboxes && isset($js)) { |
|
| 35 | 35 | $js->execOn("change", "#".$this->identifier." [name='selection[]']", " |
| 36 | 36 | var \$parentCheckbox=\$('#ck-main-ck-{$this->identifier}'),\$checkbox=\$('#{$this->identifier} [name=\"selection[]\"]'),allChecked=true,allUnchecked=true; |
| 37 | 37 | \$checkbox.each(function() {if($(this).prop('checked')){allUnchecked = false;}else{allChecked = false;}}); |
@@ -40,9 +40,9 @@ discard block |
||
| 40 | 40 | parent::run($js); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function __construct($identifier,$model,$modelInstance=NULL) { |
|
| 44 | - parent::__construct($identifier, $model,$modelInstance); |
|
| 45 | - $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0,0), false); |
|
| 43 | + public function __construct($identifier, $model, $modelInstance=NULL) { |
|
| 44 | + parent::__construct($identifier, $model, $modelInstance); |
|
| 45 | + $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0, 0), false); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
@@ -54,61 +54,61 @@ discard block |
||
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | |
| 57 | - public function compile(JsUtils $js=NULL,&$view=NULL){ |
|
| 57 | + public function compile(JsUtils $js=NULL, &$view=NULL) { |
|
| 58 | 58 | $this->_instanceViewer->setInstance($this->_model); |
| 59 | 59 | $captions=$this->_instanceViewer->getCaptions(); |
| 60 | 60 | |
| 61 | 61 | $table=$this->content["table"]; |
| 62 | 62 | |
| 63 | - if($this->_hasCheckboxes){ |
|
| 63 | + if ($this->_hasCheckboxes) { |
|
| 64 | 64 | $this->_generateMainCheckbox($captions); |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | $table->setRowCount(0, \sizeof($captions)); |
| 68 | 68 | $table->setHeaderValues($captions); |
| 69 | - if(isset($this->_compileParts)) |
|
| 69 | + if (isset($this->_compileParts)) |
|
| 70 | 70 | $table->setCompileParts($this->_compileParts); |
| 71 | - if(isset($this->_searchField) && isset($js)){ |
|
| 72 | - $this->_searchField->postOn("change", $this->_urls,"{'s':$(this).val()}","-#".$this->identifier." tbody",["preventDefault"=>false]); |
|
| 71 | + if (isset($this->_searchField) && isset($js)) { |
|
| 72 | + $this->_searchField->postOn("change", $this->_urls, "{'s':$(this).val()}", "-#".$this->identifier." tbody", ["preventDefault"=>false]); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | $this->_generateContent($table); |
| 76 | 76 | |
| 77 | - if($this->_hasCheckboxes && $table->hasPart("thead")){ |
|
| 78 | - $table->getHeader()->getCell(0, 0)->addToProperty("class","no-sort"); |
|
| 77 | + if ($this->_hasCheckboxes && $table->hasPart("thead")) { |
|
| 78 | + $table->getHeader()->getCell(0, 0)->addToProperty("class", "no-sort"); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - if(isset($this->_pagination) && $this->_pagination->getVisible()){ |
|
| 81 | + if (isset($this->_pagination) && $this->_pagination->getVisible()) { |
|
| 82 | 82 | $this->_generatePagination($table); |
| 83 | 83 | } |
| 84 | - if(isset($this->_toolbar)){ |
|
| 84 | + if (isset($this->_toolbar)) { |
|
| 85 | 85 | $this->_setToolbarPosition($table, $captions); |
| 86 | 86 | } |
| 87 | - $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE,"table",PositionInTable::AFTERTABLE]); |
|
| 88 | - return parent::compile($js,$view); |
|
| 87 | + $this->content=JArray::sortAssociative($this->content, [PositionInTable::BEFORETABLE, "table", PositionInTable::AFTERTABLE]); |
|
| 88 | + return parent::compile($js, $view); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - private function _generateMainCheckbox(&$captions){ |
|
| 92 | - $ck=new HtmlCheckbox("main-ck-".$this->identifier,""); |
|
| 91 | + private function _generateMainCheckbox(&$captions) { |
|
| 92 | + $ck=new HtmlCheckbox("main-ck-".$this->identifier, ""); |
|
| 93 | 93 | $ck->setOnChecked("$('#".$this->identifier." [name=%quote%selection[]%quote%]').prop('checked',true);"); |
| 94 | 94 | $ck->setOnUnchecked("$('#".$this->identifier." [name=%quote%selection[]%quote%]').prop('checked',false);"); |
| 95 | 95 | \array_unshift($captions, $ck); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - protected function _generateContent($table){ |
|
| 98 | + protected function _generateContent($table) { |
|
| 99 | 99 | $objects=$this->_modelInstance; |
| 100 | - if(isset($this->_pagination)){ |
|
| 100 | + if (isset($this->_pagination)) { |
|
| 101 | 101 | $objects=$this->_pagination->getObjects($this->_modelInstance); |
| 102 | 102 | } |
| 103 | 103 | InstanceViewer::setIndex(0); |
| 104 | - $table->fromDatabaseObjects($objects, function($instance){ |
|
| 104 | + $table->fromDatabaseObjects($objects, function($instance) { |
|
| 105 | 105 | $this->_instanceViewer->setInstance($instance); |
| 106 | 106 | InstanceViewer::$index++; |
| 107 | - $result= $this->_instanceViewer->getValues(); |
|
| 108 | - if($this->_hasCheckboxes){ |
|
| 109 | - $ck=new HtmlCheckbox("ck-".$this->identifier,""); |
|
| 107 | + $result=$this->_instanceViewer->getValues(); |
|
| 108 | + if ($this->_hasCheckboxes) { |
|
| 109 | + $ck=new HtmlCheckbox("ck-".$this->identifier, ""); |
|
| 110 | 110 | $field=$ck->getField(); |
| 111 | - $field->setProperty("value",$this->_instanceViewer->getIdentifier()); |
|
| 111 | + $field->setProperty("value", $this->_instanceViewer->getIdentifier()); |
|
| 112 | 112 | $field->setProperty("name", "selection[]"); |
| 113 | 113 | \array_unshift($result, $ck); |
| 114 | 114 | } |
@@ -116,25 +116,25 @@ discard block |
||
| 116 | 116 | }); |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - private function _generatePagination($table){ |
|
| 119 | + private function _generatePagination($table) { |
|
| 120 | 120 | $footer=$table->getFooter(); |
| 121 | 121 | $footer->mergeCol(); |
| 122 | - $menu=new HtmlPaginationMenu("pagination-".$this->identifier,$this->_pagination->getPagesNumbers()); |
|
| 122 | + $menu=new HtmlPaginationMenu("pagination-".$this->identifier, $this->_pagination->getPagesNumbers()); |
|
| 123 | 123 | $menu->floatRight(); |
| 124 | 124 | $menu->setActiveItem($this->_pagination->getPage()-1); |
| 125 | 125 | $footer->setValues($menu); |
| 126 | - $menu->postOnClick($this->_urls,"{'p':$(this).attr('data-page')}","-#".$this->identifier." tbody",["preventDefault"=>false]); |
|
| 126 | + $menu->postOnClick($this->_urls, "{'p':$(this).attr('data-page')}", "-#".$this->identifier." tbody", ["preventDefault"=>false]); |
|
| 127 | 127 | } |
| 128 | 128 | |
| 129 | - protected function _setToolbarPosition($table,$captions=NULL){ |
|
| 130 | - switch ($this->_toolbarPosition){ |
|
| 129 | + protected function _setToolbarPosition($table, $captions=NULL) { |
|
| 130 | + switch ($this->_toolbarPosition) { |
|
| 131 | 131 | case PositionInTable::BEFORETABLE:case PositionInTable::AFTERTABLE: |
| 132 | - if(isset($this->_compileParts)===false){ |
|
| 132 | + if (isset($this->_compileParts)===false) { |
|
| 133 | 133 | $this->content[$this->_toolbarPosition]=$this->_toolbar; |
| 134 | 134 | } |
| 135 | 135 | break; |
| 136 | 136 | case PositionInTable::HEADER:case PositionInTable::FOOTER: case PositionInTable::BODY: |
| 137 | - $this->addToolbarRow($this->_toolbarPosition,$table, $captions); |
|
| 137 | + $this->addToolbarRow($this->_toolbarPosition, $table, $captions); |
|
| 138 | 138 | break; |
| 139 | 139 | } |
| 140 | 140 | } |
@@ -146,18 +146,18 @@ discard block |
||
| 146 | 146 | * @param callable $callback function called after the field compilation |
| 147 | 147 | * @return \Ajax\semantic\widgets\datatable\DataTable |
| 148 | 148 | */ |
| 149 | - public function afterCompile($index,$callback){ |
|
| 150 | - $this->_instanceViewer->afterCompile($index,$callback); |
|
| 149 | + public function afterCompile($index, $callback) { |
|
| 150 | + $this->_instanceViewer->afterCompile($index, $callback); |
|
| 151 | 151 | return $this; |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - private function addToolbarRow($part,$table,$captions){ |
|
| 154 | + private function addToolbarRow($part, $table, $captions) { |
|
| 155 | 155 | $row=$table->getPart($part)->addRow(\sizeof($captions)); |
| 156 | 156 | $row->mergeCol(); |
| 157 | 157 | $row->setValues([$this->_toolbar]); |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - public function getHtmlComponent(){ |
|
| 160 | + public function getHtmlComponent() { |
|
| 161 | 161 | return $this->content["table"]; |
| 162 | 162 | } |
| 163 | 163 | |
@@ -170,8 +170,8 @@ discard block |
||
| 170 | 170 | return $this; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - public function paginate($items_per_page=10,$page=1){ |
|
| 174 | - $this->_pagination=new Pagination($items_per_page,4,$page); |
|
| 173 | + public function paginate($items_per_page=10, $page=1) { |
|
| 174 | + $this->_pagination=new Pagination($items_per_page, 4, $page); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | public function getHasCheckboxes() { |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | return $this; |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - public function refresh($compileParts=["tbody"]){ |
|
| 186 | + public function refresh($compileParts=["tbody"]) { |
|
| 187 | 187 | $this->_compileParts=$compileParts; |
| 188 | 188 | return $this; |
| 189 | 189 | } |
@@ -192,8 +192,8 @@ discard block |
||
| 192 | 192 | * @param callable $callback |
| 193 | 193 | * @return callable |
| 194 | 194 | */ |
| 195 | - private function getFieldButtonCallable($caption,$callback=null){ |
|
| 196 | - return $this->getCallable("getFieldButton",[$caption],$callback); |
|
| 195 | + private function getFieldButtonCallable($caption, $callback=null) { |
|
| 196 | + return $this->getCallable("getFieldButton", [$caption], $callback); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | /** |
@@ -201,16 +201,16 @@ discard block |
||
| 201 | 201 | * @param callable $callback |
| 202 | 202 | * @return callable |
| 203 | 203 | */ |
| 204 | - private function getCallable($thisCallback,$parameters,$callback=null){ |
|
| 205 | - $result=function($instance) use($thisCallback,$parameters,$callback){ |
|
| 206 | - $object=call_user_func_array(array($this,$thisCallback), $parameters); |
|
| 207 | - if(isset($callback)){ |
|
| 208 | - if(\is_callable($callback)){ |
|
| 209 | - $callback($object,$instance); |
|
| 204 | + private function getCallable($thisCallback, $parameters, $callback=null) { |
|
| 205 | + $result=function($instance) use($thisCallback, $parameters, $callback){ |
|
| 206 | + $object=call_user_func_array(array($this, $thisCallback), $parameters); |
|
| 207 | + if (isset($callback)) { |
|
| 208 | + if (\is_callable($callback)) { |
|
| 209 | + $callback($object, $instance); |
|
| 210 | 210 | } |
| 211 | 211 | } |
| 212 | - if($object instanceof HtmlSemDoubleElement){ |
|
| 213 | - $object->setProperty("data-ajax",$this->_instanceViewer->getIdentifier()); |
|
| 212 | + if ($object instanceof HtmlSemDoubleElement) { |
|
| 213 | + $object->setProperty("data-ajax", $this->_instanceViewer->getIdentifier()); |
|
| 214 | 214 | } |
| 215 | 215 | return $object; |
| 216 | 216 | }; |
@@ -221,8 +221,8 @@ discard block |
||
| 221 | 221 | * @param string $caption |
| 222 | 222 | * @return HtmlButton |
| 223 | 223 | */ |
| 224 | - private function getFieldButton($caption){ |
|
| 225 | - return new HtmlButton("",$caption); |
|
| 224 | + private function getFieldButton($caption) { |
|
| 225 | + return new HtmlButton("", $caption); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | /** |
@@ -231,8 +231,8 @@ discard block |
||
| 231 | 231 | * @param callable $callback |
| 232 | 232 | * @return \Ajax\semantic\widgets\datatable\DataTable |
| 233 | 233 | */ |
| 234 | - public function addFieldButton($caption,$callback=null){ |
|
| 235 | - $this->addField($this->getCallable("getFieldButton",[$caption],$callback)); |
|
| 234 | + public function addFieldButton($caption, $callback=null) { |
|
| 235 | + $this->addField($this->getCallable("getFieldButton", [$caption], $callback)); |
|
| 236 | 236 | return $this; |
| 237 | 237 | } |
| 238 | 238 | |
@@ -243,8 +243,8 @@ discard block |
||
| 243 | 243 | * @param callable $callback |
| 244 | 244 | * @return \Ajax\semantic\widgets\datatable\DataTable |
| 245 | 245 | */ |
| 246 | - public function insertFieldButton($index,$caption,$callback=null){ |
|
| 247 | - $this->insertField($index, $this->getFieldButtonCallable($caption,$callback)); |
|
| 246 | + public function insertFieldButton($index, $caption, $callback=null) { |
|
| 247 | + $this->insertField($index, $this->getFieldButtonCallable($caption, $callback)); |
|
| 248 | 248 | return $this; |
| 249 | 249 | } |
| 250 | 250 | |
@@ -255,60 +255,60 @@ discard block |
||
| 255 | 255 | * @param callable $callback |
| 256 | 256 | * @return \Ajax\semantic\widgets\datatable\DataTable |
| 257 | 257 | */ |
| 258 | - public function insertInFieldButton($index,$caption,$callback=null){ |
|
| 259 | - $this->insertInField($index, $this->getFieldButtonCallable($caption,$callback)); |
|
| 258 | + public function insertInFieldButton($index, $caption, $callback=null) { |
|
| 259 | + $this->insertInField($index, $this->getFieldButtonCallable($caption, $callback)); |
|
| 260 | 260 | return $this; |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | - private function addDefaultButton($icon,$class=null,$callback=null){ |
|
| 264 | - $this->addField($this->getCallable("getDefaultButton",[$icon,$class],$callback)); |
|
| 263 | + private function addDefaultButton($icon, $class=null, $callback=null) { |
|
| 264 | + $this->addField($this->getCallable("getDefaultButton", [$icon, $class], $callback)); |
|
| 265 | 265 | return $this; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - private function insertDefaultButtonIn($index,$icon,$class=null,$callback=null){ |
|
| 269 | - $this->insertInField($index,$this->getCallable("getDefaultButton",[$icon,$class],$callback)); |
|
| 268 | + private function insertDefaultButtonIn($index, $icon, $class=null, $callback=null) { |
|
| 269 | + $this->insertInField($index, $this->getCallable("getDefaultButton", [$icon, $class], $callback)); |
|
| 270 | 270 | return $this; |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | - private function getDefaultButton($icon,$class=null){ |
|
| 273 | + private function getDefaultButton($icon, $class=null) { |
|
| 274 | 274 | $bt=$this->getFieldButton(""); |
| 275 | 275 | $bt->asIcon($icon); |
| 276 | - if(isset($class)) |
|
| 276 | + if (isset($class)) |
|
| 277 | 277 | $bt->addToProperty("class", $class); |
| 278 | 278 | return $bt; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - public function addDeleteButton($callback=null){ |
|
| 282 | - return $this->addDefaultButton("remove","delete red basic",$callback); |
|
| 281 | + public function addDeleteButton($callback=null) { |
|
| 282 | + return $this->addDefaultButton("remove", "delete red basic", $callback); |
|
| 283 | 283 | } |
| 284 | 284 | |
| 285 | - public function addEditButton($callback=null){ |
|
| 286 | - return $this->addDefaultButton("edit","edit basic",$callback); |
|
| 285 | + public function addEditButton($callback=null) { |
|
| 286 | + return $this->addDefaultButton("edit", "edit basic", $callback); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | - public function addEditDeleteButtons($callbackEdit=null,$callbackDelete=null){ |
|
| 289 | + public function addEditDeleteButtons($callbackEdit=null, $callbackDelete=null) { |
|
| 290 | 290 | $this->addEditButton($callbackEdit); |
| 291 | 291 | $index=$this->_instanceViewer->visiblePropertiesCount()-1; |
| 292 | - $this->insertDeleteButtonIn($index,$callbackDelete); |
|
| 292 | + $this->insertDeleteButtonIn($index, $callbackDelete); |
|
| 293 | 293 | return $this; |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | - public function insertDeleteButtonIn($index,$callback=null){ |
|
| 297 | - return $this->insertDefaultButtonIn($index,"remove","delete red basic",$callback); |
|
| 296 | + public function insertDeleteButtonIn($index, $callback=null) { |
|
| 297 | + return $this->insertDefaultButtonIn($index, "remove", "delete red basic", $callback); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - public function insertEditButtonIn($index,$callback=null){ |
|
| 301 | - return $this->insertDefaultButtonIn($index,"edit","edit basic",$callback); |
|
| 300 | + public function insertEditButtonIn($index, $callback=null) { |
|
| 301 | + return $this->insertDefaultButtonIn($index, "edit", "edit basic", $callback); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - public function addSearchInToolbar($position=Direction::RIGHT){ |
|
| 304 | + public function addSearchInToolbar($position=Direction::RIGHT) { |
|
| 305 | 305 | return $this->addInToolbar($this->getSearchField())->setPosition($position); |
| 306 | 306 | } |
| 307 | 307 | |
| 308 | - public function getSearchField(){ |
|
| 309 | - if(isset($this->_searchField)===false){ |
|
| 310 | - $this->_searchField=new HtmlInput("search-".$this->identifier,"search","","Search..."); |
|
| 311 | - $this->_searchField->addIcon("search",Direction::RIGHT); |
|
| 308 | + public function getSearchField() { |
|
| 309 | + if (isset($this->_searchField)===false) { |
|
| 310 | + $this->_searchField=new HtmlInput("search-".$this->identifier, "search", "", "Search..."); |
|
| 311 | + $this->_searchField->addIcon("search", Direction::RIGHT); |
|
| 312 | 312 | } |
| 313 | 313 | return $this->_searchField; |
| 314 | 314 | } |
@@ -40,6 +40,10 @@ discard block |
||
| 40 | 40 | parent::run($js); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | + /** |
|
| 44 | + * @param string $identifier |
|
| 45 | + * @param string $model |
|
| 46 | + */ |
|
| 43 | 47 | public function __construct($identifier,$model,$modelInstance=NULL) { |
| 44 | 48 | parent::__construct($identifier, $model,$modelInstance); |
| 45 | 49 | $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0,0), false); |
@@ -151,6 +155,9 @@ discard block |
||
| 151 | 155 | return $this; |
| 152 | 156 | } |
| 153 | 157 | |
| 158 | + /** |
|
| 159 | + * @param PositionInTable $part |
|
| 160 | + */ |
|
| 154 | 161 | private function addToolbarRow($part,$table,$captions){ |
| 155 | 162 | $row=$table->getPart($part)->addRow(\sizeof($captions)); |
| 156 | 163 | $row->mergeCol(); |
@@ -190,7 +197,7 @@ discard block |
||
| 190 | 197 | /** |
| 191 | 198 | * @param string $caption |
| 192 | 199 | * @param callable $callback |
| 193 | - * @return callable |
|
| 200 | + * @return \Closure |
|
| 194 | 201 | */ |
| 195 | 202 | private function getFieldButtonCallable($caption,$callback=null){ |
| 196 | 203 | return $this->getCallable("getFieldButton",[$caption],$callback); |
@@ -198,9 +205,9 @@ discard block |
||
| 198 | 205 | |
| 199 | 206 | /** |
| 200 | 207 | * @param callable $thisCallback |
| 201 | - * @param array $parameters |
|
| 208 | + * @param string[] $parameters |
|
| 202 | 209 | * @param callable $callback |
| 203 | - * @return callable |
|
| 210 | + * @return \Closure |
|
| 204 | 211 | */ |
| 205 | 212 | private function getCallable($thisCallback,$parameters,$callback=null){ |
| 206 | 213 | $result=function($instance) use($thisCallback,$parameters,$callback){ |
@@ -261,11 +268,19 @@ discard block |
||
| 261 | 268 | return $this; |
| 262 | 269 | } |
| 263 | 270 | |
| 271 | + /** |
|
| 272 | + * @param string $icon |
|
| 273 | + * @param string $class |
|
| 274 | + */ |
|
| 264 | 275 | private function addDefaultButton($icon,$class=null,$callback=null){ |
| 265 | 276 | $this->addField($this->getCallable("getDefaultButton",[$icon,$class],$callback)); |
| 266 | 277 | return $this; |
| 267 | 278 | } |
| 268 | 279 | |
| 280 | + /** |
|
| 281 | + * @param string $icon |
|
| 282 | + * @param string $class |
|
| 283 | + */ |
|
| 269 | 284 | private function insertDefaultButtonIn($index,$icon,$class=null,$callback=null){ |
| 270 | 285 | $this->insertInField($index,$this->getCallable("getDefaultButton",[$icon,$class],$callback)); |
| 271 | 286 | return $this; |
@@ -10,16 +10,16 @@ discard block |
||
| 10 | 10 | * @property SimpleExtComponent $_bsComponent |
| 11 | 11 | * @property string identifier |
| 12 | 12 | */ |
| 13 | -trait BaseHtmlEventsTrait{ |
|
| 13 | +trait BaseHtmlEventsTrait { |
|
| 14 | 14 | |
| 15 | - protected $_events=array (); |
|
| 15 | + protected $_events=array(); |
|
| 16 | 16 | |
| 17 | 17 | public function addEvent($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
| 18 | - if ($stopPropagation === true) { |
|
| 19 | - $jsCode="event.stopPropagation();" . $jsCode; |
|
| 18 | + if ($stopPropagation===true) { |
|
| 19 | + $jsCode="event.stopPropagation();".$jsCode; |
|
| 20 | 20 | } |
| 21 | - if ($preventDefault === true) { |
|
| 22 | - $jsCode="event.preventDefault();" . $jsCode; |
|
| 21 | + if ($preventDefault===true) { |
|
| 22 | + $jsCode="event.preventDefault();".$jsCode; |
|
| 23 | 23 | } |
| 24 | 24 | return $this->_addEvent($event, $jsCode); |
| 25 | 25 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | if (is_array($this->_events[$event])) { |
| 30 | 30 | $this->_events[$event][]=$jsCode; |
| 31 | 31 | } else { |
| 32 | - $this->_events[$event]=array ($this->_events[$event],$jsCode ); |
|
| 32 | + $this->_events[$event]=array($this->_events[$event], $jsCode); |
|
| 33 | 33 | } |
| 34 | 34 | } else { |
| 35 | 35 | $this->_events[$event]=$jsCode; |
@@ -49,10 +49,10 @@ discard block |
||
| 49 | 49 | return $this->onClick($jsCode); |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - public function onCreate($jsCode){ |
|
| 53 | - if(isset($this->_events["_create"])){ |
|
| 52 | + public function onCreate($jsCode) { |
|
| 53 | + if (isset($this->_events["_create"])) { |
|
| 54 | 54 | $this->_events["_create"][]=$jsCode; |
| 55 | - }else{ |
|
| 55 | + } else { |
|
| 56 | 56 | $this->_events["_create"]=[$jsCode]; |
| 57 | 57 | } |
| 58 | 58 | return $this; |
@@ -61,15 +61,15 @@ discard block |
||
| 61 | 61 | public function addEventsOnRun(JsUtils $js=NULL) { |
| 62 | 62 | $this->_eventsOnCreate($js); |
| 63 | 63 | if (isset($this->_bsComponent)) { |
| 64 | - foreach ( $this->_events as $event => $jsCode ) { |
|
| 64 | + foreach ($this->_events as $event => $jsCode) { |
|
| 65 | 65 | $code=$jsCode; |
| 66 | 66 | if (is_array($jsCode)) { |
| 67 | 67 | $code=""; |
| 68 | - foreach ( $jsCode as $jsC ) { |
|
| 68 | + foreach ($jsCode as $jsC) { |
|
| 69 | 69 | if ($jsC instanceof AjaxCall) { |
| 70 | - $code.="\n" . $jsC->compile($js); |
|
| 70 | + $code.="\n".$jsC->compile($js); |
|
| 71 | 71 | } else { |
| 72 | - $code.="\n" . $jsC; |
|
| 72 | + $code.="\n".$jsC; |
|
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | } elseif ($jsCode instanceof AjaxCall) { |
@@ -77,24 +77,24 @@ discard block |
||
| 77 | 77 | } |
| 78 | 78 | $this->_bsComponent->addEvent($event, $code); |
| 79 | 79 | } |
| 80 | - $this->_events=array (); |
|
| 80 | + $this->_events=array(); |
|
| 81 | 81 | } |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - protected function _eventsOnCreate(JsUtils $js=NULL){ |
|
| 85 | - if(isset($this->_events["_create"])){ |
|
| 84 | + protected function _eventsOnCreate(JsUtils $js=NULL) { |
|
| 85 | + if (isset($this->_events["_create"])) { |
|
| 86 | 86 | $create=$this->_events["_create"]; |
| 87 | - if(\is_array($create)){ |
|
| 87 | + if (\is_array($create)) { |
|
| 88 | 88 | $create=\implode("", $create); |
| 89 | 89 | } |
| 90 | - if(isset($js) && $create!=="") |
|
| 91 | - $js->exec($create,true); |
|
| 90 | + if (isset($js) && $create!=="") |
|
| 91 | + $js->exec($create, true); |
|
| 92 | 92 | unset($this->_events["_create"]); |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
| 97 | - $params=array ("url" => $url,"responseElement" => $responseElement ); |
|
| 97 | + $params=array("url" => $url, "responseElement" => $responseElement); |
|
| 98 | 98 | $params=array_merge($params, $parameters); |
| 99 | 99 | $this->_addEvent($event, new AjaxCall($operation, $params)); |
| 100 | 100 | return $this; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | public function jsDoJquery($jqueryCall, $param="") { |
| 130 | - return "$('#" . $this->identifier . "')." . $jqueryCall . "(" . Javascript::prep_value($param) . ");"; |
|
| 130 | + return "$('#".$this->identifier."').".$jqueryCall."(".Javascript::prep_value($param).");"; |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | public function executeOnRun($jsCode) { |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | public function onCreate($jsCode){ |
| 53 | 53 | if(isset($this->_events["_create"])){ |
| 54 | 54 | $this->_events["_create"][]=$jsCode; |
| 55 | - }else{ |
|
| 55 | + } else{ |
|
| 56 | 56 | $this->_events["_create"]=[$jsCode]; |
| 57 | 57 | } |
| 58 | 58 | return $this; |
@@ -87,8 +87,9 @@ discard block |
||
| 87 | 87 | if(\is_array($create)){ |
| 88 | 88 | $create=\implode("", $create); |
| 89 | 89 | } |
| 90 | - if(isset($js) && $create!=="") |
|
| 91 | - $js->exec($create,true); |
|
| 90 | + if(isset($js) && $create!=="") { |
|
| 91 | + $js->exec($create,true); |
|
| 92 | + } |
|
| 92 | 93 | unset($this->_events["_create"]); |
| 93 | 94 | } |
| 94 | 95 | } |