@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | $this->startIndex=$startIndex; |
53 | 53 | $this->autoActive=$autoActive; |
54 | 54 | $this->_contentSeparator="<div class='divider'> / </div>"; |
55 | - $this->_hrefFunction=function ($e) { |
|
55 | + $this->_hrefFunction=function($e) { |
|
56 | 56 | return $e->getContent(); |
57 | 57 | }; |
58 | 58 | if (isset($hrefFunction)) { |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * @return HtmlBreadcrumbs |
69 | 69 | */ |
70 | 70 | public function autoGetOnClick($targetSelector) { |
71 | - return $this->getOnClick($this->root, $targetSelector, array ("attr" => $this->attr )); |
|
71 | + return $this->getOnClick($this->root, $targetSelector, array("attr" => $this->attr)); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | public function contentAsString() { |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function setActive($index=null) { |
85 | 85 | if (!isset($index)) { |
86 | - $index=sizeof($this->content) - 1; |
|
86 | + $index=sizeof($this->content)-1; |
|
87 | 87 | } |
88 | 88 | $activeItem=$this->content[$index]; |
89 | 89 | $activeItem->addToProperty("class", "active"); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * @param Dispatcher $dispatcher the request dispatcher |
97 | 97 | * @return \Ajax\bootstrap\html\HtmlBreadcrumbs |
98 | 98 | */ |
99 | - public function fromDispatcher(JsUtils $js,$dispatcher, $startIndex=0) { |
|
99 | + public function fromDispatcher(JsUtils $js, $dispatcher, $startIndex=0) { |
|
100 | 100 | return $this->addItems($js->fromDispatcher($dispatcher)); |
101 | 101 | } |
102 | 102 | |
@@ -110,12 +110,12 @@ discard block |
||
110 | 110 | if (!isset($index)) { |
111 | 111 | $index=sizeof($this->content); |
112 | 112 | } |
113 | - if ($this->absolutePaths === true) { |
|
113 | + if ($this->absolutePaths===true) { |
|
114 | 114 | return $this->_hrefFunction($this->content[$index]); |
115 | 115 | } else { |
116 | - return $this->root . implode($separator, array_slice(array_map(function ($e) { |
|
116 | + return $this->root.implode($separator, array_slice(array_map(function($e) { |
|
117 | 117 | return $this->_hrefFunction($e); |
118 | - }, $this->content), $this->startIndex, $index + 1)); |
|
118 | + }, $this->content), $this->startIndex, $index+1)); |
|
119 | 119 | } |
120 | 120 | } |
121 | 121 | |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | $this->setActive(); |
150 | 150 | } |
151 | 151 | $count=$this->count(); |
152 | - for($i=1; $i < $count; $i++) { |
|
153 | - $this->content[$i]->wrap($this->getContentDivider($i - 1)); |
|
152 | + for ($i=1; $i<$count; $i++) { |
|
153 | + $this->content[$i]->wrap($this->getContentDivider($i-1)); |
|
154 | 154 | } |
155 | 155 | return parent::compile($js, $view); |
156 | 156 | } |
@@ -160,15 +160,15 @@ discard block |
||
160 | 160 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
161 | 161 | */ |
162 | 162 | public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
163 | - foreach ( $this->content as $element ) { |
|
163 | + foreach ($this->content as $element) { |
|
164 | 164 | $element->on($event, $jsCode, $stopPropagation, $preventDefault); |
165 | 165 | } |
166 | 166 | return $this; |
167 | 167 | } |
168 | 168 | |
169 | 169 | public function _ajaxOn($operation, $event, $url, $responseElement="", $parameters=array()) { |
170 | - foreach ( $this->content as $element ) { |
|
171 | - if ($element->getProperty($this->attr) != NULL){ |
|
170 | + foreach ($this->content as $element) { |
|
171 | + if ($element->getProperty($this->attr)!=NULL) { |
|
172 | 172 | $element->_ajaxOn($operation, $event, $url, $responseElement, $parameters); |
173 | 173 | } |
174 | 174 | } |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | */ |
184 | 184 | protected function createItem($value) { |
185 | 185 | $count=$this->count(); |
186 | - $itemO=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "a", "section"); |
|
186 | + $itemO=new HtmlSemDoubleElement("item-".$this->identifier."-".$count, "a", "section"); |
|
187 | 187 | if (\is_array($value)) |
188 | 188 | $itemO->fromArray($value); |
189 | 189 | else { |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | public function addIconAt($icon, $index) { |
196 | 196 | $item=$this->getItem($index); |
197 | 197 | if (isset($item)) { |
198 | - $icon=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
198 | + $icon=new HtmlIcon("icon-".$this->identifier, $icon); |
|
199 | 199 | $item->wrapContent($icon); |
200 | 200 | } |
201 | 201 | } |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | public function addItem($item) { |
204 | 204 | $count=$this->count(); |
205 | 205 | $itemO=parent::addItem($item); |
206 | - $this->addToPropertyCtrl("class", "section", array ("section" )); |
|
206 | + $this->addToPropertyCtrl("class", "section", array("section")); |
|
207 | 207 | $itemO->setProperty($this->attr, $this->getHref($count)); |
208 | 208 | return $itemO; |
209 | 209 | } |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | public function setAbsolutePaths($absolutePaths) { |
220 | 220 | $this->absolutePaths=$absolutePaths; |
221 | 221 | $size=\sizeof($this->content); |
222 | - for($i=0;$i<$size;$i++){ |
|
222 | + for ($i=0; $i<$size; $i++) { |
|
223 | 223 | $this->content[$i]->setProperty($this->attr, $this->getHref($i)); |
224 | 224 | } |
225 | 225 | return $this; |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | class HtmlPopup extends HtmlSemDoubleElement { |
13 | 13 | private $_container; |
14 | - public function __construct(BaseHtml $container,$identifier, $content="") { |
|
14 | + public function __construct(BaseHtml $container, $identifier, $content="") { |
|
15 | 15 | parent::__construct($identifier, "div"); |
16 | 16 | $this->_container=$container; |
17 | 17 | $this->setClass("ui popup"); |
@@ -19,9 +19,9 @@ discard block |
||
19 | 19 | $this->_params=array("on"=>"hover"); |
20 | 20 | } |
21 | 21 | |
22 | - public function addList($items=array(),$header=NULL){ |
|
23 | - if(!$this->content instanceof HtmlGrid){ |
|
24 | - $this->content=new HtmlGrid("Grid-".$this->identifier,0); |
|
22 | + public function addList($items=array(), $header=NULL) { |
|
23 | + if (!$this->content instanceof HtmlGrid) { |
|
24 | + $this->content=new HtmlGrid("Grid-".$this->identifier, 0); |
|
25 | 25 | } |
26 | 26 | $grid=$this->content; |
27 | 27 | |
@@ -29,12 +29,12 @@ discard block |
||
29 | 29 | $colCount++; |
30 | 30 | $grid->setColsCount($colCount); |
31 | 31 | |
32 | - $list=new HtmlList("",$items); |
|
32 | + $list=new HtmlList("", $items); |
|
33 | 33 | $list->asLink(); |
34 | - if(isset($header)){ |
|
35 | - $list->addHeader(4,$header); |
|
34 | + if (isset($header)) { |
|
35 | + $list->addHeader(4, $header); |
|
36 | 36 | } |
37 | - $grid->getCell(0,$colCount-1)->setContent($list); |
|
37 | + $grid->getCell(0, $colCount-1)->setContent($list); |
|
38 | 38 | $grid->setDivided()->setRelaxed(true); |
39 | 39 | return $list; |
40 | 40 | } |
@@ -42,14 +42,14 @@ discard block |
||
42 | 42 | /** |
43 | 43 | * A popup can have no maximum width and continue to flow to fit its content |
44 | 44 | */ |
45 | - public function setFlowing(){ |
|
45 | + public function setFlowing() { |
|
46 | 46 | return $this->addToProperty("class", "flowing"); |
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
50 | 50 | * A popup can provide more basic formatting |
51 | 51 | */ |
52 | - public function setBasic(){ |
|
52 | + public function setBasic() { |
|
53 | 53 | return $this->addToProperty("class", "basic"); |
54 | 54 | } |
55 | 55 | |
@@ -57,22 +57,22 @@ discard block |
||
57 | 57 | * {@inheritDoc} |
58 | 58 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::run() |
59 | 59 | */ |
60 | - public function run(JsUtils $js){ |
|
60 | + public function run(JsUtils $js) { |
|
61 | 61 | $this->_params["popup"]="#".$this->identifier; |
62 | - $js->semantic()->popup("#".$this->_container->getIdentifier(),$this->_params); |
|
62 | + $js->semantic()->popup("#".$this->_container->getIdentifier(), $this->_params); |
|
63 | 63 | } |
64 | 64 | |
65 | - public function setOn($event="click"){ |
|
65 | + public function setOn($event="click") { |
|
66 | 66 | $this->_params["on"]=$event; |
67 | 67 | return $this; |
68 | 68 | } |
69 | 69 | |
70 | - public function setInline($value=true){ |
|
70 | + public function setInline($value=true) { |
|
71 | 71 | $this->_params["inline"]=$value; |
72 | 72 | return $this; |
73 | 73 | } |
74 | 74 | |
75 | - public function setPosition($position){ |
|
75 | + public function setPosition($position) { |
|
76 | 76 | $this->_params["position"]=$position; |
77 | 77 | return $this; |
78 | 78 | } |
@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | use Ajax\semantic\traits\SemanticWidgetsTrait; |
12 | 12 | |
13 | 13 | class Semantic extends BaseGui { |
14 | - use SemanticComponentsTrait,SemanticHtmlElementsTrait,SemanticHtmlCollectionsTrait, |
|
15 | - SemanticHtmlModulesTrait,SemanticHtmlViewsTrait,SemanticWidgetsTrait; |
|
14 | + use SemanticComponentsTrait, SemanticHtmlElementsTrait, SemanticHtmlCollectionsTrait, |
|
15 | + SemanticHtmlModulesTrait, SemanticHtmlViewsTrait, SemanticWidgetsTrait; |
|
16 | 16 | |
17 | 17 | private $language; |
18 | 18 | |
@@ -21,12 +21,12 @@ discard block |
||
21 | 21 | } |
22 | 22 | |
23 | 23 | |
24 | - public function setLanguage($language){ |
|
25 | - if($language!==$this->language){ |
|
24 | + public function setLanguage($language) { |
|
25 | + if ($language!==$this->language) { |
|
26 | 26 | $file=\realpath(dirname(__FILE__)."/semantic/components/validation/languages/".$language.".js"); |
27 | - if(\file_exists($file)){ |
|
27 | + if (\file_exists($file)) { |
|
28 | 28 | $script=\file_get_contents($file); |
29 | - $this->js->exec($script,true); |
|
29 | + $this->js->exec($script, true); |
|
30 | 30 | $this->language=$language; |
31 | 31 | } |
32 | 32 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | trait JqueryActionsTrait { |
13 | - abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false,$immediatly=true); |
|
13 | + abstract public function _add_event($element, $js, $event, $preventDefault=false, $stopPropagation=false, $immediatly=true); |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Get or set the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element. |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * @param boolean $immediatly defers the execution if set to false |
39 | 39 | * @return string |
40 | 40 | */ |
41 | - public function after($element='this', $value='', $immediatly=false){ |
|
41 | + public function after($element='this', $value='', $immediatly=false) { |
|
42 | 42 | $element=Javascript::prep_element($element); |
43 | 43 | $value=Javascript::prep_value($value); |
44 | 44 | $str="$({$element}).after({$value});"; |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | |
64 | 64 | $animations="\t\t\t"; |
65 | 65 | if (\is_array($params)) { |
66 | - foreach ( $params as $param => $value ) { |
|
66 | + foreach ($params as $param => $value) { |
|
67 | 67 | $animations.=$param.': \''.$value.'\', '; |
68 | 68 | } |
69 | 69 | } |
@@ -356,8 +356,8 @@ discard block |
||
356 | 356 | * @param boolean $immediatly |
357 | 357 | * @return string |
358 | 358 | */ |
359 | - public function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="",$immediatly=true) { |
|
360 | - return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation,$immediatly); |
|
359 | + public function _doJQueryOn($event, $element, $elementToModify, $jqueryCall, $param="", $preventDefault=false, $stopPropagation=false, $jsCallback="", $immediatly=true) { |
|
360 | + return $this->_add_event($element, $this->_doJQuery($elementToModify, $jqueryCall, $param, $jsCallback), $event, $preventDefault, $stopPropagation, $immediatly); |
|
361 | 361 | } |
362 | 362 | |
363 | 363 | /** |
@@ -383,8 +383,8 @@ discard block |
||
383 | 383 | * @param boolean $immediatly |
384 | 384 | * @return String |
385 | 385 | */ |
386 | - public function _execOn($element, $event, $js, $preventDefault=false, $stopPropagation=false,$immediatly=true) { |
|
387 | - return $this->_add_event($element, $this->_exec($js), $event, $preventDefault, $stopPropagation,$immediatly); |
|
386 | + public function _execOn($element, $event, $js, $preventDefault=false, $stopPropagation=false, $immediatly=true) { |
|
387 | + return $this->_add_event($element, $this->_exec($js), $event, $preventDefault, $stopPropagation, $immediatly); |
|
388 | 388 | } |
389 | 389 | |
390 | 390 | /** |
@@ -393,8 +393,8 @@ discard block |
||
393 | 393 | * @return string |
394 | 394 | */ |
395 | 395 | private function _validate_speed($speed) { |
396 | - if (in_array($speed, array ( |
|
397 | - 'slow','normal','fast' |
|
396 | + if (in_array($speed, array( |
|
397 | + 'slow', 'normal', 'fast' |
|
398 | 398 | ))) { |
399 | 399 | $speed='"'.$speed.'"'; |
400 | 400 | } elseif (preg_match("/[^0-9]/", $speed)) { |
@@ -7,27 +7,27 @@ |
||
7 | 7 | |
8 | 8 | class HtmlTextarea extends HtmlDoubleElement { |
9 | 9 | |
10 | - public function __construct($identifier,$value=NULL,$placeholder=NULL,$rows=NULL) { |
|
10 | + public function __construct($identifier, $value=NULL, $placeholder=NULL, $rows=NULL) { |
|
11 | 11 | parent::__construct($identifier, "textarea"); |
12 | 12 | $this->setProperty("name", $identifier); |
13 | 13 | $this->setValue($value); |
14 | 14 | $this->setPlaceholder($placeholder); |
15 | - if(isset($rows)) |
|
15 | + if (isset($rows)) |
|
16 | 16 | $this->setRows($rows); |
17 | 17 | } |
18 | 18 | public function setValue($value) { |
19 | - if(isset($value)) |
|
19 | + if (isset($value)) |
|
20 | 20 | $this->setContent($value); |
21 | 21 | return $this; |
22 | 22 | } |
23 | 23 | |
24 | - public function setPlaceholder($value){ |
|
25 | - if(JString::isNotNull($value)) |
|
24 | + public function setPlaceholder($value) { |
|
25 | + if (JString::isNotNull($value)) |
|
26 | 26 | $this->setProperty("placeholder", $value); |
27 | 27 | return $this; |
28 | 28 | } |
29 | 29 | |
30 | - public function setRows($count){ |
|
30 | + public function setRows($count) { |
|
31 | 31 | $this->setProperty("rows", $count); |
32 | 32 | } |
33 | 33 | } |
34 | 34 | \ No newline at end of file |
@@ -10,14 +10,14 @@ discard block |
||
10 | 10 | use Ajax\semantic\html\base\traits\AttachedTrait; |
11 | 11 | |
12 | 12 | class HtmlHeader extends HtmlSemDoubleElement { |
13 | - use TextAlignmentTrait,AttachedTrait; |
|
13 | + use TextAlignmentTrait, AttachedTrait; |
|
14 | 14 | protected $image; |
15 | 15 | |
16 | 16 | public function __construct($identifier, $niveau=1, $content=NULL, $type="page") { |
17 | 17 | parent::__construct($identifier, "div", "ui header"); |
18 | 18 | $this->_template="<%tagName% %properties%>%image%%wrapContentBefore%%content%%wrapContentAfter%</%tagName%>"; |
19 | 19 | if (isset($type)) { |
20 | - if ($type == "page") { |
|
20 | + if ($type=="page") { |
|
21 | 21 | $this->asPageHeader($niveau); |
22 | 22 | } else |
23 | 23 | $this->asContentHeader($niveau); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | public function asPageHeader($niveau) { |
29 | - $this->tagName="h" . $niveau; |
|
29 | + $this->tagName="h".$niveau; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | public function asContentHeader($niveau) { |
@@ -39,25 +39,25 @@ discard block |
||
39 | 39 | |
40 | 40 | public function asIcon($icon, $title, $subHeader=NULL) { |
41 | 41 | $this->addToProperty("class", "icon"); |
42 | - $this->image=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
42 | + $this->image=new HtmlIcon("icon-".$this->identifier, $icon); |
|
43 | 43 | return $this->asTitle($title, $subHeader); |
44 | 44 | } |
45 | 45 | |
46 | 46 | public function asImage($src, $title, $subHeader=NULL) { |
47 | - $this->image=new HtmlImg("img-" . $this->identifier, $src, $title); |
|
47 | + $this->image=new HtmlImg("img-".$this->identifier, $src, $title); |
|
48 | 48 | return $this->asTitle($title, $subHeader); |
49 | 49 | } |
50 | 50 | |
51 | 51 | public function asTitle($title, $subHeader=NULL) { |
52 | 52 | if (!\is_object($title)) { |
53 | - $this->content=new HtmlDoubleElement("content-" . $this->identifier, "div"); |
|
53 | + $this->content=new HtmlDoubleElement("content-".$this->identifier, "div"); |
|
54 | 54 | $this->content->setContent($title); |
55 | 55 | } else { |
56 | 56 | $this->content=$title; |
57 | 57 | } |
58 | 58 | $this->content->setClass("content"); |
59 | 59 | if (isset($subHeader)) { |
60 | - $sub=new HtmlDoubleElement("subheader-" . $this->identifier, "div"); |
|
60 | + $sub=new HtmlDoubleElement("subheader-".$this->identifier, "div"); |
|
61 | 61 | $sub->setClass("sub header"); |
62 | 62 | $sub->setContent($subHeader); |
63 | 63 | $this->content->addContent($sub); |
@@ -7,20 +7,20 @@ discard block |
||
7 | 7 | use Ajax\semantic\html\base\constants\Sens; |
8 | 8 | use Ajax\JsUtils; |
9 | 9 | |
10 | -class HtmlSegmentGroups extends HtmlSemCollection{ |
|
10 | +class HtmlSegmentGroups extends HtmlSemCollection { |
|
11 | 11 | |
12 | 12 | |
13 | - public function __construct( $identifier, $items=array()){ |
|
14 | - parent::__construct( $identifier, "div","ui segments"); |
|
13 | + public function __construct($identifier, $items=array()) { |
|
14 | + parent::__construct($identifier, "div", "ui segments"); |
|
15 | 15 | $this->addItems($items); |
16 | 16 | } |
17 | 17 | |
18 | 18 | |
19 | - protected function createItem($value){ |
|
20 | - return new HtmlSegment("segment-".$this->count(),$value); |
|
19 | + protected function createItem($value) { |
|
20 | + return new HtmlSegment("segment-".$this->count(), $value); |
|
21 | 21 | } |
22 | 22 | |
23 | - protected function createCondition($value){ |
|
23 | + protected function createCondition($value) { |
|
24 | 24 | return !($value instanceof HtmlSegment); |
25 | 25 | } |
26 | 26 | |
@@ -29,21 +29,21 @@ discard block |
||
29 | 29 | * @param string $type one of "raised","stacked","piled" default : "" |
30 | 30 | * @return \Ajax\semantic\html\elements\HtmlSegmentGroups |
31 | 31 | */ |
32 | - public function setType($type){ |
|
32 | + public function setType($type) { |
|
33 | 33 | return $this->addToPropertyCtrl("class", $type, SegmentType::getConstants()); |
34 | 34 | } |
35 | 35 | |
36 | - public function setSens($sens=Sens::VERTICAL){ |
|
36 | + public function setSens($sens=Sens::VERTICAL) { |
|
37 | 37 | return $this->addToPropertyCtrl("class", $sens, Sens::getConstants()); |
38 | 38 | } |
39 | 39 | |
40 | - public function run(JsUtils $js){ |
|
41 | - $result= parent::run($js); |
|
40 | + public function run(JsUtils $js) { |
|
41 | + $result=parent::run($js); |
|
42 | 42 | return $result->setItemSelector(".ui.segment"); |
43 | 43 | } |
44 | 44 | |
45 | - public static function group($identifier,$items=array(),$type="",$sens=Sens::VERTICAL){ |
|
46 | - $group=new HtmlSegmentGroups($identifier,$items); |
|
45 | + public static function group($identifier, $items=array(), $type="", $sens=Sens::VERTICAL) { |
|
46 | + $group=new HtmlSegmentGroups($identifier, $items); |
|
47 | 47 | $group->setSens($sens); |
48 | 48 | return $group->setType($type); |
49 | 49 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $icon=JArray::getValue($value, "icon", 0); |
27 | 27 | $size=JArray::getValue($value, "size", 1); |
28 | 28 | } |
29 | - $iconO=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
29 | + $iconO=new HtmlIcon("icon-".$this->identifier, $icon); |
|
30 | 30 | if (isset($size)) { |
31 | 31 | $iconO->setSize($size); |
32 | 32 | } |
@@ -34,15 +34,15 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | protected function createCondition($value) { |
37 | - return ($value instanceof HtmlIcon) === false; |
|
37 | + return ($value instanceof HtmlIcon)===false; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function getIcon($index) { |
41 | 41 | return $this->content[$index]; |
42 | 42 | } |
43 | 43 | |
44 | - public function run(JsUtils $js){ |
|
45 | - $result= parent::run($js); |
|
44 | + public function run(JsUtils $js) { |
|
45 | + $result=parent::run($js); |
|
46 | 46 | return $result->setItemSelector("i"); |
47 | 47 | } |
48 | 48 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | abstract class HtmlAbsractItem extends HtmlSemDoubleElement { |
13 | 13 | |
14 | - public function __construct($identifier, $baseClass,$content=NULL) { |
|
14 | + public function __construct($identifier, $baseClass, $content=NULL) { |
|
15 | 15 | parent::__construct($identifier, "div", $baseClass); |
16 | 16 | $this->content=array(); |
17 | 17 | $this->initContent($content); |
@@ -19,53 +19,53 @@ discard block |
||
19 | 19 | |
20 | 20 | abstract protected function initContent($content); |
21 | 21 | |
22 | - public function setIcon($icon){ |
|
22 | + public function setIcon($icon) { |
|
23 | 23 | $this->content["icon"]=new HtmlIcon("icon-".$this->identifier, $icon); |
24 | 24 | } |
25 | 25 | |
26 | - public function setImage($image){ |
|
26 | + public function setImage($image) { |
|
27 | 27 | $image=new HtmlImg("icon-".$this->identifier, $image); |
28 | 28 | $image->asAvatar(); |
29 | 29 | $this->content["image"]=$image; |
30 | 30 | } |
31 | 31 | |
32 | - private function createContent(){ |
|
33 | - $this->content["content"]=new HtmlSemDoubleElement("content-".$this->identifier,"div","content"); |
|
32 | + private function createContent() { |
|
33 | + $this->content["content"]=new HtmlSemDoubleElement("content-".$this->identifier, "div", "content"); |
|
34 | 34 | return $this->content["content"]; |
35 | 35 | } |
36 | 36 | |
37 | - public function setTitle($title,$description=NULL,$baseClass="title"){ |
|
38 | - $title=new HtmlSemDoubleElement("","div",$baseClass,$title); |
|
39 | - if(\array_key_exists("content", $this->content)===false){ |
|
37 | + public function setTitle($title, $description=NULL, $baseClass="title") { |
|
38 | + $title=new HtmlSemDoubleElement("", "div", $baseClass, $title); |
|
39 | + if (\array_key_exists("content", $this->content)===false) { |
|
40 | 40 | $this->createContent(); |
41 | 41 | } |
42 | 42 | $this->content["content"]->addContent($title); |
43 | - if(isset($description)){ |
|
44 | - $description=new HtmlSemDoubleElement("","div","description",$description); |
|
43 | + if (isset($description)) { |
|
44 | + $description=new HtmlSemDoubleElement("", "div", "description", $description); |
|
45 | 45 | $this->content["content"]->addContent($description); |
46 | 46 | } |
47 | 47 | return $this; |
48 | 48 | } |
49 | 49 | |
50 | - public function getPart($partName="header"){ |
|
51 | - $content=\array_merge($this->content["content"]->getContent(),array(@$this->content["icon"],@$this->content["image"])); |
|
50 | + public function getPart($partName="header") { |
|
51 | + $content=\array_merge($this->content["content"]->getContent(), array(@$this->content["icon"], @$this->content["image"])); |
|
52 | 52 | return $this->getElementByPropertyValue("class", $partName, $content); |
53 | 53 | } |
54 | 54 | |
55 | - public function setActive($value=true){ |
|
56 | - if($value){ |
|
55 | + public function setActive($value=true) { |
|
56 | + if ($value) { |
|
57 | 57 | $this->setTagName("div"); |
58 | 58 | $this->removeProperty("href"); |
59 | 59 | $this->addToPropertyCtrl("class", "active", array("active")); |
60 | - }else{ |
|
60 | + } else { |
|
61 | 61 | $this->removePropertyValue("class", "active"); |
62 | 62 | } |
63 | 63 | return $this; |
64 | 64 | } |
65 | 65 | |
66 | - public function asLink($href=NULL,$part=NULL){ |
|
66 | + public function asLink($href=NULL, $part=NULL) { |
|
67 | 67 | $this->setTagName("a"); |
68 | - if(isset($href)) |
|
68 | + if (isset($href)) |
|
69 | 69 | $this->setProperty("href", $href); |
70 | 70 | return $this; |
71 | 71 | } |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | * @see \Ajax\semantic\html\base\HtmlSemDoubleElement::compile() |
78 | 78 | */ |
79 | 79 | public function compile(JsUtils $js=NULL, &$view=NULL) { |
80 | - if(\is_array($this->content) && JArray::isAssociative($this->content)) |
|
81 | - $this->content=JArray::sortAssociative($this->content, [ "icon","image","content" ]); |
|
80 | + if (\is_array($this->content) && JArray::isAssociative($this->content)) |
|
81 | + $this->content=JArray::sortAssociative($this->content, ["icon", "image", "content"]); |
|
82 | 82 | return parent::compile($js, $view); |
83 | 83 | } |
84 | 84 | } |
85 | 85 | \ No newline at end of file |