@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | public function setActive($value) { |
30 | - if(is_array($this->content)){ |
|
31 | - foreach ($this->content as $pb){ |
|
30 | + if (is_array($this->content)) { |
|
31 | + foreach ($this->content as $pb) { |
|
32 | 32 | $pb->setActive($value); |
33 | 33 | } |
34 | - }else{ |
|
34 | + }else { |
|
35 | 35 | if ($value===true) |
36 | 36 | $this->active="active"; |
37 | 37 | else |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | } |
42 | 42 | |
43 | 43 | public function setStriped($value) { |
44 | - if(is_array($this->content)){ |
|
45 | - foreach ($this->content as $pb){ |
|
44 | + if (is_array($this->content)) { |
|
45 | + foreach ($this->content as $pb) { |
|
46 | 46 | $pb->setStriped($value); |
47 | 47 | } |
48 | - }else{ |
|
48 | + }else { |
|
49 | 49 | if ($value===true) |
50 | 50 | $this->striped="progress-bar-striped"; |
51 | 51 | else |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | } |
56 | 56 | |
57 | 57 | public function showCaption($value) { |
58 | - if(is_array($this->content)){ |
|
59 | - foreach ($this->content as $pb){ |
|
58 | + if (is_array($this->content)) { |
|
59 | + foreach ($this->content as $pb) { |
|
60 | 60 | $pb->showCaption($value); |
61 | 61 | } |
62 | - }else{ |
|
62 | + }else { |
|
63 | 63 | if ($value===true) |
64 | 64 | $this->caption="%value%%"; |
65 | 65 | else |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $progressBar->setStriped($this->striped!=="" || $progressBar->isStriped()); |
80 | 80 | $progressBar->setActive($this->active==="active" || $progressBar->isActive()); |
81 | 81 | if (is_array($this->content)===false) { |
82 | - $this->content=array (); |
|
82 | + $this->content=array(); |
|
83 | 83 | } |
84 | 84 | $this->content []=$progressBar; |
85 | 85 | } |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @return \Ajax\bootstrap\html\HtmlProgressbar default : "" |
124 | 124 | */ |
125 | 125 | public function setStyle($cssStyle) { |
126 | - return $this->setMemberCtrl($this->style,CssRef::getStyle($cssStyle, "progress-bar"), CssRef::Styles("progress-bar")); |
|
126 | + return $this->setMemberCtrl($this->style, CssRef::getStyle($cssStyle, "progress-bar"), CssRef::Styles("progress-bar")); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /* |
@@ -42,7 +42,7 @@ |
||
42 | 42 | */ |
43 | 43 | public function run(JsUtils $js) { |
44 | 44 | if ($this->getProperty("role")==="nav") { |
45 | - foreach ( $this->items as $dropdownItem ) { |
|
45 | + foreach ($this->items as $dropdownItem) { |
|
46 | 46 | $dropdownItem->runNav($js); |
47 | 47 | } |
48 | 48 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | use Phalcon\Mvc\View; |
17 | 17 | |
18 | 18 | class HtmlTabs extends HtmlDoubleElement { |
19 | - protected $tabs=array (); |
|
19 | + protected $tabs=array(); |
|
20 | 20 | protected $_tabsType="tabs"; |
21 | 21 | protected $stacked=""; |
22 | 22 | |
@@ -27,25 +27,25 @@ discard block |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | protected function addTab_($tab, $index=null) { |
30 | - if($tab instanceof HtmlDropdown){ |
|
30 | + if ($tab instanceof HtmlDropdown) { |
|
31 | 31 | $tab->setMTagName("li"); |
32 | 32 | } |
33 | 33 | if (isset($index)) { |
34 | - $inserted=array ( |
|
34 | + $inserted=array( |
|
35 | 35 | $tab |
36 | 36 | ); |
37 | 37 | array_splice($this->tabs, $index, 0, $inserted); |
38 | - } else |
|
38 | + }else |
|
39 | 39 | $this->tabs []=$tab; |
40 | 40 | } |
41 | 41 | |
42 | - public function setActive($index){ |
|
43 | - for ($i=0;$i<sizeof($this->tabs);$i++){ |
|
42 | + public function setActive($index) { |
|
43 | + for ($i=0; $i<sizeof($this->tabs); $i++) { |
|
44 | 44 | $this->tabs[$i]->setActive($i==$index); |
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | - public function disable($index){ |
|
48 | + public function disable($index) { |
|
49 | 49 | $this->tabs[$index]->disable(); |
50 | 50 | } |
51 | 51 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $tab=new HtmlTabItem("tab-".$this->identifier."-".$iid); |
60 | 60 | $tab->fromArray($element); |
61 | 61 | $this->addTab_($tab, $index); |
62 | - } else { |
|
62 | + }else { |
|
63 | 63 | $this->addTab_($tab, $index); |
64 | 64 | } |
65 | 65 | return $tab; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | public function addTabs($tabs) { |
79 | - foreach ( $tabs as $tab ) { |
|
79 | + foreach ($tabs as $tab) { |
|
80 | 80 | $this->addTab($tab); |
81 | 81 | } |
82 | 82 | return $this; |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public function run(JsUtils $js) { |
108 | 108 | $this->_bsComponent=new Tabs($js); |
109 | - foreach ( $this->tabs as $tab ) { |
|
109 | + foreach ($this->tabs as $tab) { |
|
110 | 110 | $this->_bsComponent->addTab($tab->run($js)); |
111 | 111 | } |
112 | 112 | $this->addEventsOnRun($js); |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | |
116 | 116 | public function createTabContents() { |
117 | 117 | $tabContent=new HtmlTabContent("tabcontent-".$this->identifier); |
118 | - foreach ( $this->tabs as $tab ) { |
|
118 | + foreach ($this->tabs as $tab) { |
|
119 | 119 | if ($tab instanceof HtmlTabItem) |
120 | 120 | $tabContent->addTabItem($tab->getHref()); |
121 | 121 | elseif ($tab instanceof HtmlDropdown) { |
122 | - foreach ( $tab->getItems() as $dropdownItem ) { |
|
122 | + foreach ($tab->getItems() as $dropdownItem) { |
|
123 | 123 | $tabContent->addTabItem($dropdownItem->getHref()); |
124 | 124 | } |
125 | 125 | } |
@@ -154,21 +154,21 @@ discard block |
||
154 | 154 | if (sizeof($this->content->getTabItems())>0) { |
155 | 155 | $this->content->getTabItem(0)->addToProperty("class", "fade in"); |
156 | 156 | $size=sizeof($this->tabs); |
157 | - for($index=0; $index<$size; $index++) { |
|
157 | + for ($index=0; $index<$size; $index++) { |
|
158 | 158 | $this->content->getTabItem($index)->addToProperty("class", "fade"); |
159 | 159 | } |
160 | 160 | } |
161 | 161 | } |
162 | 162 | |
163 | - public function on($event, $jsCode,$stopPropagation=false,$preventDefault=false){ |
|
164 | - foreach ($this->tabs as $tab){ |
|
165 | - $tab->on($event,$jsCode,$stopPropagation,$preventDefault); |
|
163 | + public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
|
164 | + foreach ($this->tabs as $tab) { |
|
165 | + $tab->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
166 | 166 | } |
167 | 167 | return $this; |
168 | 168 | } |
169 | 169 | |
170 | - public function setStacked($stacked=true){ |
|
171 | - if($stacked) |
|
170 | + public function setStacked($stacked=true) { |
|
171 | + if ($stacked) |
|
172 | 172 | $this->stacked="nav-stacked"; |
173 | 173 | else $this->stacked=""; |
174 | 174 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | const CSS_DEFAULT="-default", CSS_PRIMARY="-primary", CSS_SUCCESS="-success", CSS_INFO="-info", CSS_WARNING="-warning", CSS_DANGER="-danger", CSS_LINK="-link"; |
15 | 15 | |
16 | 16 | public static function buttonStyles() { |
17 | - return array ( |
|
17 | + return array( |
|
18 | 18 | "btn-default", |
19 | 19 | "btn-primary", |
20 | 20 | "btn-success", |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | public static function Styles($prefix="btn") { |
29 | - return array ( |
|
29 | + return array( |
|
30 | 30 | $prefix."-default", |
31 | 31 | $prefix."-primary", |
32 | 32 | $prefix."-success", |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | public static function sizes($prefix="btn") { |
40 | - return array ( |
|
40 | + return array( |
|
41 | 41 | $prefix."-lg", |
42 | 42 | "", |
43 | 43 | $prefix."-sm", |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | public static function position() { |
49 | - return array ( |
|
49 | + return array( |
|
50 | 50 | "top", |
51 | 51 | "left", |
52 | 52 | "right", |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | public static function alignment($prefix="") { |
59 | - return array ( |
|
59 | + return array( |
|
60 | 60 | $prefix."", |
61 | 61 | $prefix."left", |
62 | 62 | $prefix."right", |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | public static function navbarZoneClasses() { |
69 | - return array ( |
|
69 | + return array( |
|
70 | 70 | "navbar-nav", |
71 | 71 | "navbar-left", |
72 | 72 | "navbar-right", |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | } |
76 | 76 | |
77 | 77 | public static function glyphIcons() { |
78 | - return array ( |
|
78 | + return array( |
|
79 | 79 | "glyphicon-asterisk", |
80 | 80 | "glyphicon-plus", |
81 | 81 | "glyphicon-euro", |
@@ -347,9 +347,9 @@ discard block |
||
347 | 347 | public static function getStyle($cssStyle, $prefix) { |
348 | 348 | if (is_int($cssStyle)) { |
349 | 349 | $styles=CssRef::Styles($prefix); |
350 | - if ($cssStyle<sizeof($styles)&&$cssStyle>=0) { |
|
350 | + if ($cssStyle<sizeof($styles) && $cssStyle>=0) { |
|
351 | 351 | return CssRef::styles($prefix)[$cssStyle]; |
352 | - } else { |
|
352 | + }else { |
|
353 | 353 | throw new \Exception("La valeur passée a propriété `Style` ne fait pas partie des valeurs possibles : index '".$cssStyle."' inexistant"); |
354 | 354 | } |
355 | 355 | } |
@@ -33,12 +33,12 @@ discard block |
||
33 | 33 | |
34 | 34 | public function addContent($content) { |
35 | 35 | if (is_array($this->content)===false) { |
36 | - $newContent=array (); |
|
36 | + $newContent=array(); |
|
37 | 37 | if (isset($this->content)) |
38 | 38 | $newContent []=$this->content; |
39 | 39 | $newContent []=$content; |
40 | 40 | $this->content=$newContent; |
41 | - } else { |
|
41 | + }else { |
|
42 | 42 | $this->content []=$content; |
43 | 43 | } |
44 | 44 | return $this; |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | parent::run($js); |
53 | 53 | if ($this->content instanceof HtmlDoubleElement) { |
54 | 54 | $this->content->run($js); |
55 | - } else if (is_array($this->content)) { |
|
56 | - foreach ( $this->content as $itemContent ) { |
|
55 | + }else if (is_array($this->content)) { |
|
56 | + foreach ($this->content as $itemContent) { |
|
57 | 57 | if ($itemContent instanceof HtmlDoubleElement) { |
58 | 58 | $itemContent->run($js); |
59 | 59 | } |
@@ -82,12 +82,12 @@ discard block |
||
82 | 82 | return $this; |
83 | 83 | } |
84 | 84 | |
85 | - public function wrapContentWithGlyph($glyphBefore,$glyphAfter=""){ |
|
85 | + public function wrapContentWithGlyph($glyphBefore, $glyphAfter="") { |
|
86 | 86 | $before=HtmlGlyphicon::getGlyphicon($glyphBefore)." "; |
87 | 87 | $after=""; |
88 | - if($glyphAfter!==""){ |
|
88 | + if ($glyphAfter!=="") { |
|
89 | 89 | $after="énbsp;".HtmlGlyphicon::getGlyphicon($glyphAfter); |
90 | 90 | } |
91 | - return $this->wrapContent($before,$after); |
|
91 | + return $this->wrapContent($before, $after); |
|
92 | 92 | } |
93 | 93 | } |
94 | 94 | \ No newline at end of file |
@@ -26,11 +26,11 @@ |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | public function addBadge($caption, $leftSeparator=" ") { |
29 | - return $this->element->addBadge($caption,$leftSeparator); |
|
29 | + return $this->element->addBadge($caption, $leftSeparator); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function addLabel($caption, $style="label-default", $leftSeparator=" ") { |
33 | - return $this->element->addLabel($caption,$style,$leftSeparator); |
|
33 | + return $this->element->addLabel($caption, $style, $leftSeparator); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | public function run(JsUtils $js) { |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | $value1=reset($input); |
18 | 18 | if (is_object($value1)) { |
19 | 19 | $output=PropertyWrapper::wrapObjects($input, $js, $separator=' '); |
20 | - } else |
|
20 | + }else |
|
21 | 21 | $output=PropertyWrapper::wrapStrings($input, $separator=' ', $valueQuote='"'); |
22 | 22 | } |
23 | 23 | } |
@@ -26,17 +26,17 @@ discard block |
||
26 | 26 | |
27 | 27 | public static function wrapStrings($input, $separator=' ', $valueQuote='"') { |
28 | 28 | if (JArray::isAssociative($input)===true) { |
29 | - $result=implode($separator, array_map(function ($v, $k) use($valueQuote) { |
|
29 | + $result=implode($separator, array_map(function($v, $k) use($valueQuote) { |
|
30 | 30 | return $k.'='.$valueQuote.$v.$valueQuote; |
31 | 31 | }, $input, array_keys($input))); |
32 | - } else { |
|
32 | + }else { |
|
33 | 33 | $result=implode($separator, array_values($input)); |
34 | 34 | } |
35 | 35 | return $result; |
36 | 36 | } |
37 | 37 | |
38 | 38 | public static function wrapObjects($input, $js=NULL, $separator=' ') { |
39 | - return implode($separator, array_map(function ($v) use($js) { |
|
39 | + return implode($separator, array_map(function($v) use($js) { |
|
40 | 40 | return $v->compile($js); |
41 | 41 | }, $input)); |
42 | 42 | } |
@@ -149,7 +149,7 @@ |
||
149 | 149 | $glyph->setGlyphicon($glyphicon); |
150 | 150 | if ($left) { |
151 | 151 | $this->content=$glyph->compile().$separator.$this->content; |
152 | - } else { |
|
152 | + }else { |
|
153 | 153 | $this->content.=$separator.$glyph->compile(); |
154 | 154 | } |
155 | 155 | return $this; |
@@ -71,7 +71,7 @@ |
||
71 | 71 | $element=new HtmlDoubleElement("", "p"); |
72 | 72 | $element->setContent($content); |
73 | 73 | $element->setClass("list-group-item-text"); |
74 | - $this->element->setContent(array ( |
|
74 | + $this->element->setContent(array( |
|
75 | 75 | $elementHeader, |
76 | 76 | $element |
77 | 77 | )); |