@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | $output=$input; |
13 | 13 | } |
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, $js, $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, $js, $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, array_values($input)); |
@@ -43,7 +43,7 @@ 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) { |
|
46 | + return implode($separator, array_map(function($v) use($js, $separator, $valueQuote) { |
|
47 | 47 | if (is_object($v)) |
48 | 48 | return $v->compile($js); |
49 | 49 | elseif (\is_array($v)) { |
@@ -25,8 +25,9 @@ discard block |
||
25 | 25 | |
26 | 26 | private static function containsElement($input) { |
27 | 27 | foreach ( $input as $v ) { |
28 | - if (\is_object($v) || \is_array($v)) |
|
29 | - return true; |
|
28 | + if (\is_object($v) || \is_array($v)) { |
|
29 | + return true; |
|
30 | + } |
|
30 | 31 | } |
31 | 32 | return false; |
32 | 33 | } |
@@ -44,12 +45,13 @@ discard block |
||
44 | 45 | |
45 | 46 | public static function wrapObjects($input, $js=NULL, $separator=' ', $valueQuote='"') { |
46 | 47 | return implode($separator, array_map(function ($v) use($js, $separator, $valueQuote) { |
47 | - if (is_object($v)) |
|
48 | - return $v->compile($js); |
|
49 | - elseif (\is_array($v)) { |
|
48 | + if (is_object($v)) { |
|
49 | + return $v->compile($js); |
|
50 | + } elseif (\is_array($v)) { |
|
50 | 51 | return self::wrap($v, $js, $separator, $valueQuote); |
51 | - } else |
|
52 | - return $v; |
|
52 | + } else { |
|
53 | + return $v; |
|
54 | + } |
|
53 | 55 | }, $input)); |
54 | 56 | } |
55 | 57 | } |
56 | 58 | \ No newline at end of file |
@@ -61,9 +61,9 @@ discard block |
||
61 | 61 | if (\is_array($elements)) { |
62 | 62 | foreach ( $elements as $key => $element ) { |
63 | 63 | $iid=$this->getElementsCount()+1; |
64 | - if ($element instanceof HtmlDropdownItem) |
|
65 | - $this->elements []=$element; |
|
66 | - else if (\is_array($element)) { |
|
64 | + if ($element instanceof HtmlDropdownItem) { |
|
65 | + $this->elements []=$element; |
|
66 | + } else if (\is_array($element)) { |
|
67 | 67 | if (is_string($key)===true) { |
68 | 68 | $dropdown=new HtmlDropdown($this->identifier."-dropdown-".$iid); |
69 | 69 | $dropdown->addItems($element); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $li=new HtmlBsDoubleElement($this->identifier."-li-".$iid, "li"); |
90 | 90 | if($caption instanceof HtmlLink){ |
91 | 91 | $link=$caption; |
92 | - }else{ |
|
92 | + } else{ |
|
93 | 93 | $link=new HtmlLink($this->identifier."-link-".$iid, $href, $caption); |
94 | 94 | } |
95 | 95 | $li->setContent($link); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | parent::__construct($identifier); |
28 | 28 | $this->tagName="ul"; |
29 | 29 | $this->_template='<%tagName% id="%identifier%" class="nav navbar-nav %class%">%elements%</%tagName%>'; |
30 | - $this->elements=array (); |
|
30 | + $this->elements=array(); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | public function setClass($value) { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | public function addElement($element) { |
42 | - if($element instanceof HtmlLink){ |
|
42 | + if ($element instanceof HtmlLink) { |
|
43 | 43 | $this->addLink($element); |
44 | 44 | } else if (is_object($element)) { |
45 | 45 | $this->elements []=$element; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | public function addElements($elements) { |
61 | 61 | if (\is_array($elements)) { |
62 | - foreach ( $elements as $key => $element ) { |
|
62 | + foreach ($elements as $key => $element) { |
|
63 | 63 | $iid=$this->getElementsCount()+1; |
64 | 64 | if ($element instanceof HtmlDropdownItem) |
65 | 65 | $this->elements []=$element; |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | public function addLink($caption, $href="#") { |
88 | 88 | $iid=$this->getElementsCount()+1; |
89 | 89 | $li=new HtmlBsDoubleElement($this->identifier."-li-".$iid, "li"); |
90 | - if($caption instanceof HtmlLink){ |
|
90 | + if ($caption instanceof HtmlLink) { |
|
91 | 91 | $link=$caption; |
92 | - }else{ |
|
92 | + } else { |
|
93 | 93 | $link=new HtmlLink($this->identifier."-link-".$iid, $href, $caption); |
94 | 94 | } |
95 | 95 | $li->setContent($link); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | } |
123 | 123 | |
124 | 124 | public function run(JsUtils $js) { |
125 | - foreach ( $this->elements as $element ) { |
|
125 | + foreach ($this->elements as $element) { |
|
126 | 126 | $element->run($js); |
127 | 127 | } |
128 | 128 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * @param int $index |
144 | 144 | * @return BaseHtml |
145 | 145 | */ |
146 | - public function getElement($index){ |
|
146 | + public function getElement($index) { |
|
147 | 147 | return $this->elements[$index]; |
148 | 148 | } |
149 | 149 | } |
150 | 150 | \ No newline at end of file |
@@ -16,12 +16,12 @@ discard block |
||
16 | 16 | * @version 1.001 |
17 | 17 | */ |
18 | 18 | class HtmlCarousel extends BaseHtml { |
19 | - protected $indicators=array (); |
|
20 | - protected $slides=array (); |
|
19 | + protected $indicators=array(); |
|
20 | + protected $slides=array(); |
|
21 | 21 | protected $leftControl=""; |
22 | 22 | protected $rightControl=""; |
23 | 23 | protected $_base=""; |
24 | - protected $_glyphs=array (); |
|
24 | + protected $_glyphs=array(); |
|
25 | 25 | |
26 | 26 | public function __construct($identifier, $images=NULL) { |
27 | 27 | parent::__construct($identifier); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | } |
39 | 39 | |
40 | 40 | public function setBase($_base) { |
41 | - foreach ($this->slides as $slide){ |
|
41 | + foreach ($this->slides as $slide) { |
|
42 | 42 | $imgSrc=$slide->getImageSrc(); |
43 | 43 | $slide->setImageSrc(str_replace($this->_base.$imgSrc, $_base.$imgSrc, $imgSrc)); |
44 | 44 | } |
@@ -93,9 +93,9 @@ discard block |
||
93 | 93 | } |
94 | 94 | |
95 | 95 | public function addImage($imageSrc, $imageAlt="", $caption=NULL, $description=NULL) { |
96 | - if(\is_array($imageSrc)){ |
|
97 | - $this->addImage($imageSrc[0],@$imageSrc[1],@$imageSrc[2],@$imageSrc[3]); |
|
98 | - }else{ |
|
96 | + if (\is_array($imageSrc)) { |
|
97 | + $this->addImage($imageSrc[0], @$imageSrc[1], @$imageSrc[2], @$imageSrc[3]); |
|
98 | + } else { |
|
99 | 99 | $image=new HtmlCarouselItem("item-".$this->identifier); |
100 | 100 | $image->setImageSrc($this->_base.$imageSrc); |
101 | 101 | $image->setImageAlt($imageAlt); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | public function fromArray($array) { |
120 | 120 | if (\is_array($array) && sizeof($array)>0) { |
121 | - foreach ( $array as $value ) { |
|
121 | + foreach ($array as $value) { |
|
122 | 122 | if (\is_array($value)) { |
123 | 123 | $this->addImage($value ["src"], @$value ["alt"], @$value ["caption"], @$value ["description"]); |
124 | 124 | } else { |
@@ -23,6 +23,9 @@ |
||
23 | 23 | protected $_base=""; |
24 | 24 | protected $_glyphs=array (); |
25 | 25 | |
26 | + /** |
|
27 | + * @param string $identifier |
|
28 | + */ |
|
26 | 29 | public function __construct($identifier, $images=NULL) { |
27 | 30 | parent::__construct($identifier); |
28 | 31 | $this->_template=include 'templates/tplCarousel.php'; |
@@ -75,27 +75,30 @@ |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | private function getGlyph($sens="left") { |
78 | - if (array_key_exists($sens, $this->_glyphs)) |
|
79 | - return $this->_glyphs [$sens]; |
|
78 | + if (array_key_exists($sens, $this->_glyphs)) { |
|
79 | + return $this->_glyphs [$sens]; |
|
80 | + } |
|
80 | 81 | return "glyphicon-chevron-".$sens; |
81 | 82 | } |
82 | 83 | |
83 | 84 | public function setRightGlyph($glyphicon) { |
84 | 85 | $glyphs=CssRef::glyphIcons(); |
85 | - if (array_search($glyphicon, $glyphs)!==false) |
|
86 | - $this->_glyphs ["right"]=$glyphicon; |
|
86 | + if (array_search($glyphicon, $glyphs)!==false) { |
|
87 | + $this->_glyphs ["right"]=$glyphicon; |
|
88 | + } |
|
87 | 89 | } |
88 | 90 | |
89 | 91 | public function setLeftGlyph($glyphicon) { |
90 | 92 | $glyphs=CssRef::glyphIcons(); |
91 | - if (array_search($glyphicon, $glyphs)!==false) |
|
92 | - $this->_glyphs ["left"]=$glyphicon; |
|
93 | + if (array_search($glyphicon, $glyphs)!==false) { |
|
94 | + $this->_glyphs ["left"]=$glyphicon; |
|
95 | + } |
|
93 | 96 | } |
94 | 97 | |
95 | 98 | public function addImage($imageSrc, $imageAlt="", $caption=NULL, $description=NULL) { |
96 | 99 | if(\is_array($imageSrc)){ |
97 | 100 | $this->addImage($imageSrc[0],@$imageSrc[1],@$imageSrc[2],@$imageSrc[3]); |
98 | - }else{ |
|
101 | + } else{ |
|
99 | 102 | $image=new HtmlCarouselItem("item-".$this->identifier); |
100 | 103 | $image->setImageSrc($this->_base.$imageSrc); |
101 | 104 | $image->setImageAlt($imageAlt); |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | protected $_contentSeparator=""; |
26 | 26 | |
27 | 27 | |
28 | - public function __construct($identifier,$tagName,$baseClass){ |
|
29 | - parent::__construct($identifier,$tagName,$baseClass); |
|
28 | + public function __construct($identifier, $tagName, $baseClass) { |
|
29 | + parent::__construct($identifier, $tagName, $baseClass); |
|
30 | 30 | $this->root=""; |
31 | 31 | $this->attr="data-ajax"; |
32 | 32 | } |
@@ -36,11 +36,11 @@ discard block |
||
36 | 36 | * @param string $targetSelector the target of the get |
37 | 37 | * @return HtmlNavElement |
38 | 38 | */ |
39 | - public function autoGetOnClick($targetSelector){ |
|
40 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
39 | + public function autoGetOnClick($targetSelector) { |
|
40 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
41 | 41 | } |
42 | 42 | |
43 | - public function contentAsString(){ |
|
43 | + public function contentAsString() { |
|
44 | 44 | return JArray::implode($this->_contentSeparator, $this->content); |
45 | 45 | } |
46 | 46 | |
@@ -48,15 +48,15 @@ discard block |
||
48 | 48 | * Generate the jquery script to set the elements to the HtmlNavElement |
49 | 49 | * @param JsUtils $jsUtils |
50 | 50 | */ |
51 | - public function jsSetContent(JsUtils $jsUtils){ |
|
52 | - $jsUtils->html("#".$this->identifier,str_replace("\"","'", $this->contentAsString()),true); |
|
51 | + public function jsSetContent(JsUtils $jsUtils) { |
|
52 | + $jsUtils->html("#".$this->identifier, str_replace("\"", "'", $this->contentAsString()), true); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | public function getRoot() { |
56 | 56 | return $this->root; |
57 | 57 | } |
58 | 58 | public function setRoot($root) { |
59 | - $this->root = $root; |
|
59 | + $this->root=$root; |
|
60 | 60 | return $this; |
61 | 61 | } |
62 | 62 | public function getAttr() { |
@@ -69,12 +69,12 @@ discard block |
||
69 | 69 | * @return HtmlNavElement |
70 | 70 | */ |
71 | 71 | public function setAttr($attr) { |
72 | - $this->attr = $attr; |
|
72 | + $this->attr=$attr; |
|
73 | 73 | return $this; |
74 | 74 | } |
75 | 75 | |
76 | 76 | public function __call($method, $args) { |
77 | - if(isset($this->$method) && is_callable($this->$method)) { |
|
77 | + if (isset($this->$method) && is_callable($this->$method)) { |
|
78 | 78 | return call_user_func_array( |
79 | 79 | $this->$method, |
80 | 80 | $args |
@@ -82,32 +82,32 @@ discard block |
||
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
85 | - abstract public function fromDispatcher(JsUtils $js,$dispatcher, $startIndex=0); |
|
85 | + abstract public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0); |
|
86 | 86 | |
87 | 87 | |
88 | - public function setContentDivider($divider,$index=NULL) { |
|
88 | + public function setContentDivider($divider, $index=NULL) { |
|
89 | 89 | $divider="<div class='divider'> {$divider} </div>"; |
90 | 90 | return $this->setDivider($divider, $index); |
91 | 91 | } |
92 | 92 | |
93 | - public function setIconContentDivider($iconContentDivider,$index=NULL) { |
|
93 | + public function setIconContentDivider($iconContentDivider, $index=NULL) { |
|
94 | 94 | $contentDivider="<i class='".$iconContentDivider." icon divider'></i>"; |
95 | 95 | return $this->setDivider($contentDivider, $index); |
96 | 96 | } |
97 | 97 | |
98 | - protected function setDivider($divider,$index){ |
|
99 | - if(isset($index)){ |
|
100 | - if(!\is_array($this->_contentSeparator)) |
|
101 | - $this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator); |
|
98 | + protected function setDivider($divider, $index) { |
|
99 | + if (isset($index)) { |
|
100 | + if (!\is_array($this->_contentSeparator)) |
|
101 | + $this->_contentSeparator=array_fill(0, $this->count()-1, $this->_contentSeparator); |
|
102 | 102 | $this->_contentSeparator[$index]=$divider; |
103 | - }else{ |
|
103 | + } else { |
|
104 | 104 | $this->_contentSeparator=$divider; |
105 | 105 | } |
106 | 106 | return $this; |
107 | 107 | } |
108 | 108 | |
109 | - protected function getContentDivider($index){ |
|
110 | - if(\is_array($this->_contentSeparator)){ |
|
109 | + protected function getContentDivider($index) { |
|
110 | + if (\is_array($this->_contentSeparator)) { |
|
111 | 111 | return @$this->_contentSeparator[$index]; |
112 | 112 | } |
113 | 113 | return $this->_contentSeparator; |
@@ -97,10 +97,11 @@ |
||
97 | 97 | |
98 | 98 | protected function setDivider($divider,$index){ |
99 | 99 | if(isset($index)){ |
100 | - if(!\is_array($this->_contentSeparator)) |
|
101 | - $this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator); |
|
100 | + if(!\is_array($this->_contentSeparator)) { |
|
101 | + $this->_contentSeparator=array_fill (0, $this->count()-1,$this->_contentSeparator); |
|
102 | + } |
|
102 | 103 | $this->_contentSeparator[$index]=$divider; |
103 | - }else{ |
|
104 | + } else{ |
|
104 | 105 | $this->_contentSeparator=$divider; |
105 | 106 | } |
106 | 107 | return $this; |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $state=\explode(" ", $state); |
14 | 14 | } |
15 | 15 | if (\is_array($elements)) { |
16 | - foreach ( $elements as $element ) { |
|
16 | + foreach ($elements as $element) { |
|
17 | 17 | if ($element instanceof BaseHtml) { |
18 | 18 | self::_add($state, $element); |
19 | 19 | } |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | } |
23 | 23 | |
24 | 24 | private static function _add($states, $element) { |
25 | - foreach ( $states as $state ) { |
|
26 | - $element->addToPropertyCtrl("class", $state, array ($state )); |
|
25 | + foreach ($states as $state) { |
|
26 | + $element->addToPropertyCtrl("class", $state, array($state)); |
|
27 | 27 | } |
28 | 28 | } |
29 | 29 | } |
30 | 30 | \ No newline at end of file |
@@ -8,34 +8,34 @@ discard block |
||
8 | 8 | private $page_count; |
9 | 9 | private $pages_visibles; |
10 | 10 | |
11 | - public function __construct($items_per_page=10,$pages_visibles=4,$page=1){ |
|
11 | + public function __construct($items_per_page=10, $pages_visibles=4, $page=1) { |
|
12 | 12 | $this->items_per_page=$items_per_page; |
13 | 13 | $this->page=$page; |
14 | 14 | $this->pages_visibles=$pages_visibles; |
15 | 15 | $this->visible=true; |
16 | 16 | } |
17 | 17 | |
18 | - public function getObjects($objects){ |
|
19 | - $offset = ($this->page - 1) * $this->items_per_page; |
|
18 | + public function getObjects($objects) { |
|
19 | + $offset=($this->page-1)*$this->items_per_page; |
|
20 | 20 | $os=$objects; |
21 | - if(!\is_array($os)){ |
|
21 | + if (!\is_array($os)) { |
|
22 | 22 | $os=[]; |
23 | - foreach ($objects as $o){ |
|
23 | + foreach ($objects as $o) { |
|
24 | 24 | $os[]=$o; |
25 | 25 | } |
26 | 26 | } |
27 | - $this->page_count = 0; |
|
27 | + $this->page_count=0; |
|
28 | 28 | $row_count=\sizeof($os); |
29 | - if (0 === $row_count) { |
|
29 | + if (0===$row_count) { |
|
30 | 30 | $this->visible=false; |
31 | 31 | } else { |
32 | 32 | $this->visible=true; |
33 | - $this->page_count = (int)ceil($row_count / $this->items_per_page); |
|
34 | - if($this->page > $this->page_count+1) { |
|
35 | - $this->page = 1; |
|
33 | + $this->page_count=(int)ceil($row_count/$this->items_per_page); |
|
34 | + if ($this->page>$this->page_count+1) { |
|
35 | + $this->page=1; |
|
36 | 36 | } |
37 | 37 | } |
38 | - return array_slice($os, $offset,$this->items_per_page); |
|
38 | + return array_slice($os, $offset, $this->items_per_page); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | public function getItemsPerPage() { |
@@ -69,14 +69,14 @@ discard block |
||
69 | 69 | return $this->page_count; |
70 | 70 | } |
71 | 71 | |
72 | - public function getPagesNumbers(){ |
|
73 | - $middle= (int)ceil(($this->pages_visibles-1)/ 2); |
|
72 | + public function getPagesNumbers() { |
|
73 | + $middle=(int)ceil(($this->pages_visibles-1)/2); |
|
74 | 74 | $first=$this->page-$middle; |
75 | - if($first<1){ |
|
75 | + if ($first<1) { |
|
76 | 76 | $first=1; |
77 | 77 | } |
78 | 78 | $last=$first+$this->pages_visibles-1; |
79 | - if($last>$this->page_count){ |
|
79 | + if ($last>$this->page_count) { |
|
80 | 80 | $last=$this->page_count; |
81 | 81 | } |
82 | 82 | return \range($first, $last); |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | protected $attr; |
20 | 20 | |
21 | 21 | |
22 | - public function __construct($identifier,$tagName){ |
|
23 | - parent::__construct($identifier,$tagName); |
|
22 | + public function __construct($identifier, $tagName) { |
|
23 | + parent::__construct($identifier, $tagName); |
|
24 | 24 | $this->root=""; |
25 | 25 | $this->attr="data-ajax"; |
26 | 26 | } |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | * @param string $targetSelector the target of the get |
32 | 32 | * @return HtmlNavElement |
33 | 33 | */ |
34 | - public function autoGetOnClick($targetSelector){ |
|
35 | - return $this->getOnClick($this->root, $targetSelector,array("attr"=>$this->attr)); |
|
34 | + public function autoGetOnClick($targetSelector) { |
|
35 | + return $this->getOnClick($this->root, $targetSelector, array("attr"=>$this->attr)); |
|
36 | 36 | } |
37 | 37 | |
38 | - public function contentAsString(){ |
|
38 | + public function contentAsString() { |
|
39 | 39 | return implode("", $this->content); |
40 | 40 | } |
41 | 41 | |
@@ -43,15 +43,15 @@ discard block |
||
43 | 43 | * Generate the jquery script to set the elements to the HtmlNavElement |
44 | 44 | * @param JsUtils $jsUtils |
45 | 45 | */ |
46 | - public function jsSetContent(JsUtils $jsUtils){ |
|
47 | - $jsUtils->html("#".$this->identifier,str_replace("\"","'", $this->contentAsString()),true); |
|
46 | + public function jsSetContent(JsUtils $jsUtils) { |
|
47 | + $jsUtils->html("#".$this->identifier, str_replace("\"", "'", $this->contentAsString()), true); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | public function getRoot() { |
51 | 51 | return $this->root; |
52 | 52 | } |
53 | 53 | public function setRoot($root) { |
54 | - $this->root = $root; |
|
54 | + $this->root=$root; |
|
55 | 55 | return $this; |
56 | 56 | } |
57 | 57 | public function getAttr() { |
@@ -64,12 +64,12 @@ discard block |
||
64 | 64 | * @return HtmlNavElement |
65 | 65 | */ |
66 | 66 | public function setAttr($attr) { |
67 | - $this->attr = $attr; |
|
67 | + $this->attr=$attr; |
|
68 | 68 | return $this; |
69 | 69 | } |
70 | 70 | |
71 | 71 | public function __call($method, $args) { |
72 | - if(isset($this->$method) && is_callable($this->$method)) { |
|
72 | + if (isset($this->$method) && is_callable($this->$method)) { |
|
73 | 73 | return call_user_func_array( |
74 | 74 | $this->$method, |
75 | 75 | $args |
@@ -77,6 +77,6 @@ discard block |
||
77 | 77 | } |
78 | 78 | } |
79 | 79 | |
80 | - abstract public function fromDispatcher(JsUtils $js,$dispatcher,$startIndex=0); |
|
80 | + abstract public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0); |
|
81 | 81 | |
82 | 82 | } |
83 | 83 | \ No newline at end of file |
@@ -158,8 +158,8 @@ discard block |
||
158 | 158 | * @param string $tagName |
159 | 159 | * @return HtmlLabel |
160 | 160 | */ |
161 | - public function htmlLabel($identifier, $content="", $icon=NULL,$tagName="div") { |
|
162 | - return $this->addHtmlComponent(new HtmlLabel($identifier, $content,$icon, $tagName)); |
|
161 | + public function htmlLabel($identifier, $content="", $icon=NULL, $tagName="div") { |
|
162 | + return $this->addHtmlComponent(new HtmlLabel($identifier, $content, $icon, $tagName)); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -168,8 +168,8 @@ discard block |
||
168 | 168 | * @param array $attributes |
169 | 169 | * @return HtmlLabelGroups |
170 | 170 | */ |
171 | - public function htmlLabelGroups($identifier,$labels=array(),$attributes=array()){ |
|
172 | - return $this->addHtmlComponent(new HtmlLabelGroups($identifier,$labels,$attributes)); |
|
171 | + public function htmlLabelGroups($identifier, $labels=array(), $attributes=array()) { |
|
172 | + return $this->addHtmlComponent(new HtmlLabelGroups($identifier, $labels, $attributes)); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | /** |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | abstract public function addToProperty($name, $value, $separator=" "); |
18 | 18 | abstract public function addLabel($caption, $style="label-default", $leftSeparator=" "); |
19 | - abstract public function addContent($content,$before=false); |
|
19 | + abstract public function addContent($content, $before=false); |
|
20 | 20 | abstract public function getField(); |
21 | 21 | abstract public function getDataField(); |
22 | 22 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | } |
26 | 26 | |
27 | 27 | public function addLoading() { |
28 | - if ($this->_hasIcon === false) { |
|
28 | + if ($this->_hasIcon===false) { |
|
29 | 29 | throw new \Exception("Input must have an icon for showing a loader, use addIcon before"); |
30 | 30 | } |
31 | 31 | return $this->addToProperty("class", State::LOADING); |
@@ -33,56 +33,56 @@ discard block |
||
33 | 33 | |
34 | 34 | public function labeled($label, $direction=Direction::LEFT, $icon=NULL) { |
35 | 35 | $field=$this->getField(); |
36 | - $labelO=$field->addLabel($label,$direction===Direction::LEFT,$icon); |
|
37 | - $field->addToProperty("class", $direction . " labeled"); |
|
36 | + $labelO=$field->addLabel($label, $direction===Direction::LEFT, $icon); |
|
37 | + $field->addToProperty("class", $direction." labeled"); |
|
38 | 38 | return $labelO; |
39 | 39 | } |
40 | 40 | |
41 | 41 | public function labeledToCorner($icon, $direction=Direction::LEFT) { |
42 | - return $this->labeled("", $direction . " corner", $icon)->toCorner($direction); |
|
42 | + return $this->labeled("", $direction." corner", $icon)->toCorner($direction); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function addAction($action, $direction=Direction::RIGHT, $icon=NULL, $labeled=false) { |
46 | 46 | $field=$this->getField(); |
47 | 47 | $actionO=$action; |
48 | - if (\is_object($action) === false) { |
|
49 | - $actionO=new HtmlButton("action-" . $this->identifier, $action); |
|
48 | + if (\is_object($action)===false) { |
|
49 | + $actionO=new HtmlButton("action-".$this->identifier, $action); |
|
50 | 50 | if (isset($icon)) |
51 | 51 | $actionO->addIcon($icon, true, $labeled); |
52 | 52 | } |
53 | - $field->addToProperty("class", $direction . " action"); |
|
54 | - $field->addContent($actionO, \strstr($direction, Direction::LEFT) !== false); |
|
53 | + $field->addToProperty("class", $direction." action"); |
|
54 | + $field->addContent($actionO, \strstr($direction, Direction::LEFT)!==false); |
|
55 | 55 | return $actionO; |
56 | 56 | } |
57 | 57 | |
58 | - public function addDropdown($label="", $items=array(),$direction=Direction::RIGHT){ |
|
59 | - $labelO=new HtmlDropdown("dd-".$this->identifier,$label,$items); |
|
60 | - $labelO->asSelect("select-".$this->identifier,false,true); |
|
61 | - return $this->labeled($labelO,$direction); |
|
58 | + public function addDropdown($label="", $items=array(), $direction=Direction::RIGHT) { |
|
59 | + $labelO=new HtmlDropdown("dd-".$this->identifier, $label, $items); |
|
60 | + $labelO->asSelect("select-".$this->identifier, false, true); |
|
61 | + return $this->labeled($labelO, $direction); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | public function setTransparent() { |
65 | 65 | return $this->getField()->addToProperty("class", "transparent"); |
66 | 66 | } |
67 | 67 | |
68 | - public function setReadonly(){ |
|
68 | + public function setReadonly() { |
|
69 | 69 | $this->getDataField()->setProperty("readonly", ""); |
70 | 70 | return $this; |
71 | 71 | } |
72 | 72 | |
73 | - public function setName($name){ |
|
74 | - $this->getDataField()->setProperty("name",$name); |
|
73 | + public function setName($name) { |
|
74 | + $this->getDataField()->setProperty("name", $name); |
|
75 | 75 | return $this; |
76 | 76 | } |
77 | 77 | |
78 | - public function setFluid(){ |
|
79 | - $this->getField()->addToProperty("class","fluid"); |
|
78 | + public function setFluid() { |
|
79 | + $this->getField()->addToProperty("class", "fluid"); |
|
80 | 80 | return $this; |
81 | 81 | } |
82 | 82 | |
83 | 83 | public function setDisabled($disable=true) { |
84 | 84 | $field=$this->getField(); |
85 | - if($disable) |
|
85 | + if ($disable) |
|
86 | 86 | $field->addToProperty("class", "disabled"); |
87 | 87 | return $this; |
88 | 88 | } |
@@ -47,8 +47,9 @@ discard block |
||
47 | 47 | $actionO=$action; |
48 | 48 | if (\is_object($action) === false) { |
49 | 49 | $actionO=new HtmlButton("action-" . $this->identifier, $action); |
50 | - if (isset($icon)) |
|
51 | - $actionO->addIcon($icon, true, $labeled); |
|
50 | + if (isset($icon)) { |
|
51 | + $actionO->addIcon($icon, true, $labeled); |
|
52 | + } |
|
52 | 53 | } |
53 | 54 | $field->addToProperty("class", $direction . " action"); |
54 | 55 | $field->addContent($actionO, \strstr($direction, Direction::LEFT) !== false); |
@@ -82,8 +83,9 @@ discard block |
||
82 | 83 | |
83 | 84 | public function setDisabled($disable=true) { |
84 | 85 | $field=$this->getField(); |
85 | - if($disable) |
|
86 | - $field->addToProperty("class", "disabled"); |
|
86 | + if($disable) { |
|
87 | + $field->addToProperty("class", "disabled"); |
|
88 | + } |
|
87 | 89 | return $this; |
88 | 90 | } |
89 | 91 | } |
90 | 92 | \ No newline at end of file |