@@ -15,16 +15,16 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | private function addElement($content, $baseClass) { |
| 17 | 17 | $count=\sizeof($this->content); |
| 18 | - $result=new HtmlSemDoubleElement("element-" . $count . "-" . $this->identifier, "div", $baseClass, $content); |
|
| 18 | + $result=new HtmlSemDoubleElement("element-".$count."-".$this->identifier, "div", $baseClass, $content); |
|
| 19 | 19 | $this->addContent($result); |
| 20 | 20 | return $result; |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | public function addMeta($value, $direction=Direction::LEFT) { |
| 24 | - if (\array_key_exists("meta", $this->content) === false) { |
|
| 25 | - $this->content["meta"]=new HtmlSemDoubleElement("meta-" . $this->identifier, "div", "meta", array ()); |
|
| 24 | + if (\array_key_exists("meta", $this->content)===false) { |
|
| 25 | + $this->content["meta"]=new HtmlSemDoubleElement("meta-".$this->identifier, "div", "meta", array()); |
|
| 26 | 26 | } |
| 27 | - if ($direction === Direction::RIGHT) { |
|
| 27 | + if ($direction===Direction::RIGHT) { |
|
| 28 | 28 | $value=new HtmlSemDoubleElement("", "span", "", $value); |
| 29 | 29 | $value->setFloated($direction); |
| 30 | 30 | } |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | public function addMetas($metas) { |
| 44 | 44 | if (\is_array($metas)) { |
| 45 | - foreach ( $metas as $meta ) { |
|
| 45 | + foreach ($metas as $meta) { |
|
| 46 | 46 | $this->addMeta($meta); |
| 47 | 47 | } |
| 48 | 48 | } else |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | public function addContentIcon($icon, $caption=NULL, $direction=Direction::LEFT) { |
| 54 | - if ($direction === Direction::RIGHT) { |
|
| 54 | + if ($direction===Direction::RIGHT) { |
|
| 55 | 55 | if (isset($caption)) { |
| 56 | 56 | $result=new HtmlSemDoubleElement("", "span", "", $caption); |
| 57 | 57 | $result->addIcon($icon); |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | public function addContentText($caption, $direction=Direction::LEFT) { |
| 72 | - if ($direction === Direction::RIGHT) { |
|
| 72 | + if ($direction===Direction::RIGHT) { |
|
| 73 | 73 | $result=new HtmlSemDoubleElement("", "span", "", $caption); |
| 74 | 74 | $this->addContent($result); |
| 75 | 75 | $result->setFloated($direction); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | public function addContentIcons($icons, $direction=Direction::LEFT) { |
| 82 | - foreach ( $icons as $icon ) { |
|
| 82 | + foreach ($icons as $icon) { |
|
| 83 | 83 | $this->addContentIcon($icon, NULL, $direction); |
| 84 | 84 | } |
| 85 | 85 | return $this; |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | class HtmlCardHeaderContent extends HtmlCardContent { |
| 11 | 11 | |
| 12 | 12 | public function __construct($identifier, $header=NULL, $metas=array(), $description=NULL) { |
| 13 | - parent::__construct($identifier, array ()); |
|
| 13 | + parent::__construct($identifier, array()); |
|
| 14 | 14 | if (isset($header)) { |
| 15 | 15 | $this->setHeader($header); |
| 16 | 16 | } |
@@ -21,11 +21,11 @@ discard block |
||
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | public function setDescription($value) { |
| 24 | - $this->content["description"]=new HtmlSemDoubleElement("description-" . $this->identifier, "div", "description", $value); |
|
| 24 | + $this->content["description"]=new HtmlSemDoubleElement("description-".$this->identifier, "div", "description", $value); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | public function setHeader($value) { |
| 28 | - $this->content["header"]=new HtmlSemDoubleElement("header-" . $this->identifier, "a", "header", $value); |
|
| 28 | + $this->content["header"]=new HtmlSemDoubleElement("header-".$this->identifier, "a", "header", $value); |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | /** |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
| 36 | 36 | */ |
| 37 | 37 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
| 38 | - $this->content=JArray::sortAssociative($this->content, [ "image","header","meta","description" ]); |
|
| 38 | + $this->content=JArray::sortAssociative($this->content, ["image", "header", "meta", "description"]); |
|
| 39 | 39 | return parent::compile($js, $view); |
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | \ No newline at end of file |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | protected function createItem($value) { |
| 17 | - $result=new HtmlCard("card-" . $this->count()); |
|
| 17 | + $result=new HtmlCard("card-".$this->count()); |
|
| 18 | 18 | if (\is_array($value)) { |
| 19 | 19 | $header=JArray::getValue($value, "header", 0); |
| 20 | 20 | $metas=JArray::getValue($value, "metas", 1); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * @param int $wide |
| 39 | 39 | */ |
| 40 | 40 | public function setWide($wide) { |
| 41 | - $wide=Wide::getConstants()["W" . $wide]; |
|
| 41 | + $wide=Wide::getConstants()["W".$wide]; |
|
| 42 | 42 | return $this->addToPropertyCtrl("class", $wide, Wide::getConstants()); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -176,8 +176,8 @@ discard block |
||
| 176 | 176 | * @param string $tagName container tagName |
| 177 | 177 | * @return HtmlListgroup |
| 178 | 178 | */ |
| 179 | - public function htmlListgroup($identifier,$items=array(),$tagName="ul"){ |
|
| 180 | - $listGroup=new HtmlListgroup($identifier,$tagName); |
|
| 179 | + public function htmlListgroup($identifier, $items=array(), $tagName="ul") { |
|
| 180 | + $listGroup=new HtmlListgroup($identifier, $tagName); |
|
| 181 | 181 | $listGroup->addItems($items); |
| 182 | 182 | return $this->addHtmlComponent($listGroup); |
| 183 | 183 | } |
@@ -202,8 +202,8 @@ discard block |
||
| 202 | 202 | * @param string $onClick |
| 203 | 203 | * @return HtmlSplitbutton |
| 204 | 204 | */ |
| 205 | - public function htmlSplitbutton($identifier,$value="", $items=array(), $cssStyle="btn-default", $onClick=NULL) { |
|
| 206 | - return $this->addHtmlComponent(new HtmlSplitbutton($identifier, $value, $items, $cssStyle,$onClick)); |
|
| 205 | + public function htmlSplitbutton($identifier, $value="", $items=array(), $cssStyle="btn-default", $onClick=NULL) { |
|
| 206 | + return $this->addHtmlComponent(new HtmlSplitbutton($identifier, $value, $items, $cssStyle, $onClick)); |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | /** |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | * @param string $identifier |
| 212 | 212 | * @return HtmlInputgroup |
| 213 | 213 | */ |
| 214 | - public function htmlInputgroup($identifier){ |
|
| 214 | + public function htmlInputgroup($identifier) { |
|
| 215 | 215 | return $this->addHtmlComponent(new HtmlInputgroup($identifier)); |
| 216 | 216 | } |
| 217 | 217 | |
@@ -223,8 +223,8 @@ discard block |
||
| 223 | 223 | * @param function $hrefFunction the function who generates the href elements. default : function($e){return $e->getContent()} |
| 224 | 224 | * @return HtmlBreadcrumbs |
| 225 | 225 | */ |
| 226 | - public function htmlBreadcrumbs($identifier,$elements=array(),$autoActive=true,$startIndex=0,$hrefFunction=NULL){ |
|
| 227 | - return $this->addHtmlComponent(new HtmlBreadcrumbs($identifier,$elements,$autoActive,$startIndex,$hrefFunction)); |
|
| 226 | + public function htmlBreadcrumbs($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL) { |
|
| 227 | + return $this->addHtmlComponent(new HtmlBreadcrumbs($identifier, $elements, $autoActive, $startIndex, $hrefFunction)); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | /** |
@@ -236,8 +236,8 @@ discard block |
||
| 236 | 236 | * @param int $active The active page |
| 237 | 237 | * @return HtmlPagination |
| 238 | 238 | */ |
| 239 | - public function htmlPagination($identifier,$from=1,$to=1,$active=NULL,$countVisible=NULL){ |
|
| 240 | - return $this->addHtmlComponent(new HtmlPagination($identifier,$from,$to,$active,$countVisible)); |
|
| 239 | + public function htmlPagination($identifier, $from=1, $to=1, $active=NULL, $countVisible=NULL) { |
|
| 240 | + return $this->addHtmlComponent(new HtmlPagination($identifier, $from, $to, $active, $countVisible)); |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | /** |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | * @param int $numCols |
| 249 | 249 | * @return HtmlGridSystem |
| 250 | 250 | */ |
| 251 | - public function htmlGridSystem($identifier,$numRows=1,$numCols=NULL){ |
|
| 252 | - return $this->addHtmlComponent(new HtmlGridSystem($identifier,$numRows,$numCols)); |
|
| 251 | + public function htmlGridSystem($identifier, $numRows=1, $numCols=NULL) { |
|
| 252 | + return $this->addHtmlComponent(new HtmlGridSystem($identifier, $numRows, $numCols)); |
|
| 253 | 253 | } |
| 254 | 254 | } |
| 255 | 255 | \ No newline at end of file |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | public function __construct(JsUtils $js) { |
| 21 | 21 | parent::__construct($js); |
| 22 | - $this->tabs=array (); |
|
| 22 | + $this->tabs=array(); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function getTabs() { |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function getTab($index) { |
| 39 | - if ($index>0&&$index<sizeof($this->tabs)) |
|
| 39 | + if ($index>0 && $index<sizeof($this->tabs)) |
|
| 40 | 40 | return $this->tabs [$index]; |
| 41 | 41 | } |
| 42 | 42 | |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | protected function compileEvents() { |
| 68 | - foreach ( $this->events as $event => $jsCode ) { |
|
| 68 | + foreach ($this->events as $event => $jsCode) { |
|
| 69 | 69 | $this->jquery_code_for_compile []="$( \"".$this->collapsed."\" ).on(\"".$event."\" , function (e) {".$jsCode."});"; |
| 70 | 70 | } |
| 71 | 71 | } |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * @see \Ajax\common\SimpleComponent::compileEvents() |
| 10 | 10 | */ |
| 11 | 11 | protected function compileEvents() { |
| 12 | - foreach ( $this->events as $event => $jsCode ) { |
|
| 12 | + foreach ($this->events as $event => $jsCode) { |
|
| 13 | 13 | if ($event==="buttonClick") { |
| 14 | 14 | $this->jquery_code_for_compile []="$( \"#split-".preg_replace('/[^a-zA-Z0-9\-.]/s', '', $this->attachTo)."\" ).on(\"click\" , function( event, data ) {".$jsCode."});"; |
| 15 | 15 | } else { |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - public function setPlaceHolder($value){ |
|
| 40 | + public function setPlaceHolder($value) { |
|
| 41 | 41 | $this->setProperty("placeholder", $value); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -35,7 +35,7 @@ |
||
| 35 | 35 | if (!isset($id)) |
| 36 | 36 | if ($this->element->getTagName()==="a") |
| 37 | 37 | $id=$this->element->getProperty("href"); |
| 38 | - if (!isset($id)||$id==="#") { |
|
| 38 | + if (!isset($id) || $id==="#") { |
|
| 39 | 39 | $id="collapse-".$this->element->getIdentifier(); |
| 40 | 40 | $this->attachTo($id); |
| 41 | 41 | } |