@@ -38,8 +38,9 @@ discard block |
||
| 38 | 38 | foreach ( $objects as $object ) { |
| 39 | 39 | $this->addResult([ "title" => $object ]); |
| 40 | 40 | } |
| 41 | - } else |
|
| 42 | - $this->elements=\array_merge($this->elements, $objects); |
|
| 41 | + } else { |
|
| 42 | + $this->elements=\array_merge($this->elements, $objects); |
|
| 43 | + } |
|
| 43 | 44 | return $this; |
| 44 | 45 | } |
| 45 | 46 | |
@@ -47,8 +48,9 @@ discard block |
||
| 47 | 48 | $result=array (); |
| 48 | 49 | foreach ( $this->elements as $element ) { |
| 49 | 50 | if ($element instanceof SearchResult) { |
| 50 | - if ($element->search($query, $field) !== false) |
|
| 51 | - $result[]=$element->asArray(); |
|
| 51 | + if ($element->search($query, $field) !== false) { |
|
| 52 | + $result[]=$element->asArray(); |
|
| 53 | + } |
|
| 52 | 54 | } else { |
| 53 | 55 | if (\array_key_exists($field, $element)) { |
| 54 | 56 | $value=$element[$field]; |
@@ -66,8 +68,9 @@ discard block |
||
| 66 | 68 | |
| 67 | 69 | public function search($query, $field="title") { |
| 68 | 70 | $result=$this->_search($query, $field); |
| 69 | - if ($result === false) |
|
| 70 | - $result=NULL; |
|
| 71 | + if ($result === false) { |
|
| 72 | + $result=NULL; |
|
| 73 | + } |
|
| 71 | 74 | return new SearchResults($result); |
| 72 | 75 | } |
| 73 | 76 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | private $elements; |
| 9 | 9 | |
| 10 | 10 | public function __construct($objects=NULL) { |
| 11 | - $this->elements=array (); |
|
| 11 | + $this->elements=array(); |
|
| 12 | 12 | if (isset($objects)) { |
| 13 | 13 | if (\is_array($objects)) { |
| 14 | 14 | $this->addResults($objects); |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | $this->elements[]=$object; |
| 24 | 24 | return $this; |
| 25 | 25 | } |
| 26 | - if (\is_array($object) === false) { |
|
| 27 | - $object=[ "title" => $object ]; |
|
| 26 | + if (\is_array($object)===false) { |
|
| 27 | + $object=["title" => $object]; |
|
| 28 | 28 | } |
| 29 | 29 | $this->elements[]=new SearchResult($object); |
| 30 | 30 | return $this; |
@@ -34,9 +34,9 @@ discard block |
||
| 34 | 34 | if (!\is_array($objects)) { |
| 35 | 35 | return $this->addResult($objects); |
| 36 | 36 | } |
| 37 | - if (JArray::dimension($objects) === 1) { |
|
| 38 | - foreach ( $objects as $object ) { |
|
| 39 | - $this->addResult([ "title" => $object ]); |
|
| 37 | + if (JArray::dimension($objects)===1) { |
|
| 38 | + foreach ($objects as $object) { |
|
| 39 | + $this->addResult(["title" => $object]); |
|
| 40 | 40 | } |
| 41 | 41 | } else |
| 42 | 42 | $this->elements=\array_merge($this->elements, $objects); |
@@ -44,21 +44,21 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | public function _search($query, $field="title") { |
| 47 | - $result=array (); |
|
| 48 | - foreach ( $this->elements as $element ) { |
|
| 47 | + $result=array(); |
|
| 48 | + foreach ($this->elements as $element) { |
|
| 49 | 49 | if ($element instanceof SearchResult) { |
| 50 | - if ($element->search($query, $field) !== false) |
|
| 50 | + if ($element->search($query, $field)!==false) |
|
| 51 | 51 | $result[]=$element->asArray(); |
| 52 | 52 | } else { |
| 53 | 53 | if (\array_key_exists($field, $element)) { |
| 54 | 54 | $value=$element[$field]; |
| 55 | - if (\stripos($value, $query) !== false) { |
|
| 55 | + if (\stripos($value, $query)!==false) { |
|
| 56 | 56 | $result[]=$element; |
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | - if (\sizeof($result) > 0) { |
|
| 61 | + if (\sizeof($result)>0) { |
|
| 62 | 62 | return $result; |
| 63 | 63 | } |
| 64 | 64 | return false; |
@@ -66,13 +66,13 @@ discard block |
||
| 66 | 66 | |
| 67 | 67 | public function search($query, $field="title") { |
| 68 | 68 | $result=$this->_search($query, $field); |
| 69 | - if ($result === false) |
|
| 69 | + if ($result===false) |
|
| 70 | 70 | $result=NULL; |
| 71 | 71 | return new SearchResults($result); |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | public function __toString() { |
| 75 | - $result="\"results\": " . \json_encode($this->elements); |
|
| 75 | + $result="\"results\": ".\json_encode($this->elements); |
|
| 76 | 76 | return $result; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | public function getResponse() { |
| 84 | - return "{" . $this . "}"; |
|
| 84 | + return "{".$this."}"; |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -34,8 +34,9 @@ |
||
| 34 | 34 | * @see BaseHtml::run() |
| 35 | 35 | */ |
| 36 | 36 | public function run(JsUtils $js) { |
| 37 | - if(isset($this->_bsComponent)===false) |
|
| 38 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
| 37 | + if(isset($this->_bsComponent)===false) { |
|
| 38 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
| 39 | + } |
|
| 39 | 40 | $this->addEventsOnRun($js); |
| 40 | 41 | return $this->_bsComponent; |
| 41 | 42 | } |
@@ -6,11 +6,11 @@ discard block |
||
| 6 | 6 | use Ajax\JsUtils; |
| 7 | 7 | use Ajax\common\html\HtmlCollection; |
| 8 | 8 | |
| 9 | -class HtmlAccordionMenu extends HtmlMenu{ |
|
| 9 | +class HtmlAccordionMenu extends HtmlMenu { |
|
| 10 | 10 | protected $params=array(); |
| 11 | 11 | |
| 12 | - public function __construct( $identifier, $items=array() ){ |
|
| 13 | - parent::__construct( $identifier, $items); |
|
| 12 | + public function __construct($identifier, $items=array()) { |
|
| 13 | + parent::__construct($identifier, $items); |
|
| 14 | 14 | $this->addToProperty("class", "accordion"); |
| 15 | 15 | $this->setVertical(); |
| 16 | 16 | } |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | protected function createItem($value) { |
| 23 | 23 | $title=$value; |
| 24 | 24 | $content=""; |
| 25 | - if(\is_array($value)){ |
|
| 26 | - $title=@$value[0];$content=@$value[1]; |
|
| 25 | + if (\is_array($value)) { |
|
| 26 | + $title=@$value[0]; $content=@$value[1]; |
|
| 27 | 27 | } |
| 28 | 28 | $itemO=new HtmlAccordionMenuItem("item-".$this->identifier."-".$this->count(), $title, $content); |
| 29 | 29 | return $itemO->setClass("item"); |
@@ -34,13 +34,13 @@ discard block |
||
| 34 | 34 | * @see BaseHtml::run() |
| 35 | 35 | */ |
| 36 | 36 | public function run(JsUtils $js) { |
| 37 | - if(isset($this->_bsComponent)===false) |
|
| 38 | - $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
|
| 37 | + if (isset($this->_bsComponent)===false) |
|
| 38 | + $this->_bsComponent=$js->semantic()->accordion("#".$this->identifier, $this->params); |
|
| 39 | 39 | $this->addEventsOnRun($js); |
| 40 | 40 | return $this->_bsComponent; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - public function setExclusive($value){ |
|
| 43 | + public function setExclusive($value) { |
|
| 44 | 44 | $this->params["exclusive"]=$value; |
| 45 | 45 | } |
| 46 | 46 | } |
@@ -181,9 +181,9 @@ |
||
| 181 | 181 | protected function createItem($value) { |
| 182 | 182 | $count=$this->count(); |
| 183 | 183 | $itemO=new HtmlSemDoubleElement("item-" . $this->identifier . "-" . $count, "a", "section"); |
| 184 | - if (\is_array($value)) |
|
| 185 | - $itemO->fromArray($value); |
|
| 186 | - else { |
|
| 184 | + if (\is_array($value)) { |
|
| 185 | + $itemO->fromArray($value); |
|
| 186 | + } else { |
|
| 187 | 187 | $itemO->setContent($value); |
| 188 | 188 | } |
| 189 | 189 | return $itemO; |
@@ -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 (HtmlSemDoubleElement $e) { |
|
| 55 | + $this->_hrefFunction=function(HtmlSemDoubleElement $e) { |
|
| 56 | 56 | return $e->getContent(); |
| 57 | 57 | }; |
| 58 | 58 | if (isset($hrefFunction)) { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @return HtmlBreadcrumb |
| 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 object $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; |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | |
| 14 | 14 | class HtmlSemSingleElement extends HtmlSingleElement { |
| 15 | 15 | use BaseTrait; |
| 16 | - public function __construct($identifier, $tagName="br",$baseClass="ui") { |
|
| 16 | + public function __construct($identifier, $tagName="br", $baseClass="ui") { |
|
| 17 | 17 | parent::__construct($identifier, $tagName); |
| 18 | 18 | $this->_baseClass=$baseClass; |
| 19 | 19 | $this->setClass($baseClass); |
@@ -10,10 +10,10 @@ |
||
| 10 | 10 | * @author jc |
| 11 | 11 | * @version 1.001 |
| 12 | 12 | */ |
| 13 | -abstract class HtmlSemCollection extends HtmlCollection{ |
|
| 13 | +abstract class HtmlSemCollection extends HtmlCollection { |
|
| 14 | 14 | use BaseTrait; |
| 15 | - public function __construct( $identifier, $tagName="div",$baseClass=""){ |
|
| 16 | - parent::__construct( $identifier, $tagName); |
|
| 15 | + public function __construct($identifier, $tagName="div", $baseClass="") { |
|
| 16 | + parent::__construct($identifier, $tagName); |
|
| 17 | 17 | $this->_baseClass=$baseClass; |
| 18 | 18 | $this->setClass($baseClass); |
| 19 | 19 | } |
@@ -18,12 +18,12 @@ discard block |
||
| 18 | 18 | * @version 1.001 |
| 19 | 19 | */ |
| 20 | 20 | class HtmlSegment extends HtmlSemDoubleElement { |
| 21 | - use AttachedTrait,TextAlignmentTrait; |
|
| 21 | + use AttachedTrait, TextAlignmentTrait; |
|
| 22 | 22 | |
| 23 | 23 | public function __construct($identifier, $content="") { |
| 24 | 24 | parent::__construct($identifier, "div", "ui segment"); |
| 25 | - $this->_variations=\array_merge($this->_variations, [ Variation::PADDED,Variation::COMPACT ]); |
|
| 26 | - $this->_states=\array_merge($this->_states, [ State::LOADING ]); |
|
| 25 | + $this->_variations=\array_merge($this->_variations, [Variation::PADDED, Variation::COMPACT]); |
|
| 26 | + $this->_states=\array_merge($this->_states, [State::LOADING]); |
|
| 27 | 27 | $this->content=$content; |
| 28 | 28 | } |
| 29 | 29 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | public function setSens($sens="vertical") { |
| 40 | - return $this->addToPropertyCtrl("class", $sens, array ("vertical","horizontal" )); |
|
| 40 | + return $this->addToPropertyCtrl("class", $sens, array("vertical", "horizontal")); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | public function setEmphasis($value=Emphasis::SECONDARY) { |
@@ -61,11 +61,11 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | public function asContainer() { |
| 64 | - return $this->addToPropertyCtrl("class", "container", array ("container" )); |
|
| 64 | + return $this->addToPropertyCtrl("class", "container", array("container")); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - public function addGrid($numRows=1, $numCols=NULL){ |
|
| 68 | - $grid=new HtmlGrid("Grid-".$this->identifier,$numRows,$numCols); |
|
| 67 | + public function addGrid($numRows=1, $numCols=NULL) { |
|
| 68 | + $grid=new HtmlGrid("Grid-".$this->identifier, $numRows, $numCols); |
|
| 69 | 69 | $this->content=$grid; |
| 70 | 70 | return $grid; |
| 71 | 71 | } |
@@ -12,8 +12,9 @@ discard block |
||
| 12 | 12 | $image=new HtmlImg("img-", $src, $alt); |
| 13 | 13 | $image->setClass(""); |
| 14 | 14 | parent::__construct($identifier, "div", "ui image", $image); |
| 15 | - if (isset($size)) |
|
| 16 | - $this->setSize($size); |
|
| 15 | + if (isset($size)) { |
|
| 16 | + $this->setSize($size); |
|
| 17 | + } |
|
| 17 | 18 | } |
| 18 | 19 | |
| 19 | 20 | public function setCircular() { |
@@ -21,8 +22,9 @@ discard block |
||
| 21 | 22 | } |
| 22 | 23 | |
| 23 | 24 | public function asAvatar($caption=NULL) { |
| 24 | - if (isset($caption)) |
|
| 25 | - $this->wrap("", $caption); |
|
| 25 | + if (isset($caption)) { |
|
| 26 | + $this->wrap("", $caption); |
|
| 27 | + } |
|
| 26 | 28 | return $this->addToProperty("class", "avatar"); |
| 27 | 29 | } |
| 28 | 30 | |
@@ -10,64 +10,64 @@ |
||
| 10 | 10 | |
| 11 | 11 | class HtmlReveal extends HtmlSemDoubleElement { |
| 12 | 12 | |
| 13 | - public function __construct($identifier, $visibleContent,$hiddenContent,$type=RevealType::FADE,$attributeType=NULL) { |
|
| 13 | + public function __construct($identifier, $visibleContent, $hiddenContent, $type=RevealType::FADE, $attributeType=NULL) { |
|
| 14 | 14 | parent::__construct($identifier, "div", "ui reveal"); |
| 15 | 15 | $this->setElement(0, $visibleContent); |
| 16 | 16 | $this->setElement(1, $hiddenContent); |
| 17 | - $this->setType($type,$attributeType); |
|
| 17 | + $this->setType($type, $attributeType); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | - private function setElement($index,$content){ |
|
| 21 | - if(!$content instanceof HtmlSingleElement){ |
|
| 22 | - $content=new HtmlLabel("",$content); |
|
| 20 | + private function setElement($index, $content) { |
|
| 21 | + if (!$content instanceof HtmlSingleElement) { |
|
| 22 | + $content=new HtmlLabel("", $content); |
|
| 23 | 23 | } |
| 24 | - if($content instanceof HtmlSemDoubleElement){ |
|
| 25 | - $content=new HtmlSemDoubleElement($this->identifier."-".$index,"div","",$content); |
|
| 26 | - }elseif ($content instanceof HtmlImg){ |
|
| 24 | + if ($content instanceof HtmlSemDoubleElement) { |
|
| 25 | + $content=new HtmlSemDoubleElement($this->identifier."-".$index, "div", "", $content); |
|
| 26 | + }elseif ($content instanceof HtmlImg) { |
|
| 27 | 27 | $this->addToPropertyCtrl("class", "image", array("image")); |
| 28 | 28 | } |
| 29 | - $content->addToProperty("class",(($index===0)?"visible":"hidden")." content"); |
|
| 29 | + $content->addToProperty("class", (($index===0) ? "visible" : "hidden")." content"); |
|
| 30 | 30 | $this->content[$index]=$content; |
| 31 | 31 | return $this; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - public function setVisibleContent($visibleContent){ |
|
| 34 | + public function setVisibleContent($visibleContent) { |
|
| 35 | 35 | return $this->setElement(0, $visibleContent); |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - public function setHiddenContent($hiddenContent){ |
|
| 38 | + public function setHiddenContent($hiddenContent) { |
|
| 39 | 39 | return $this->setElement(1, $hiddenContent); |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - public function getVisibleContent(){ |
|
| 42 | + public function getVisibleContent() { |
|
| 43 | 43 | return $this->content[0]; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public function getHiddenContent(){ |
|
| 46 | + public function getHiddenContent() { |
|
| 47 | 47 | return $this->content[1]; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - public function setType($type,$attribute=NULL){ |
|
| 50 | + public function setType($type, $attribute=NULL) { |
|
| 51 | 51 | $this->addToPropertyCtrl("class", $type, RevealType::getConstants()); |
| 52 | - if(isset($attribute)){ |
|
| 52 | + if (isset($attribute)) { |
|
| 53 | 53 | $this->addToPropertyCtrl("class", $attribute, Direction::getConstants()); |
| 54 | 54 | } |
| 55 | 55 | return $this; |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - public function setFade($attribute=NULL){ |
|
| 59 | - return $this->setType(RevealType::FADE,$attribute); |
|
| 58 | + public function setFade($attribute=NULL) { |
|
| 59 | + return $this->setType(RevealType::FADE, $attribute); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - public function setMove($attribute=NULL){ |
|
| 63 | - return $this->setType(RevealType::MOVE,$attribute); |
|
| 62 | + public function setMove($attribute=NULL) { |
|
| 63 | + return $this->setType(RevealType::MOVE, $attribute); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - public function setRotate($attribute=NULL){ |
|
| 67 | - return $this->setType(RevealType::ROTATE,$attribute); |
|
| 66 | + public function setRotate($attribute=NULL) { |
|
| 67 | + return $this->setType(RevealType::ROTATE, $attribute); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - public function setCircular(){ |
|
| 70 | + public function setCircular() { |
|
| 71 | 71 | return $this->addToProperty("class", "circular"); |
| 72 | 72 | } |
| 73 | 73 | |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | } |
| 24 | 24 | if($content instanceof HtmlSemDoubleElement){ |
| 25 | 25 | $content=new HtmlSemDoubleElement($this->identifier."-".$index,"div","",$content); |
| 26 | - }elseif ($content instanceof HtmlImg){ |
|
| 26 | + } elseif ($content instanceof HtmlImg){ |
|
| 27 | 27 | $this->addToPropertyCtrl("class", "image", array("image")); |
| 28 | 28 | } |
| 29 | 29 | $content->addToProperty("class",(($index===0)?"visible":"hidden")." content"); |
@@ -19,8 +19,9 @@ |
||
| 19 | 19 | if (isset($type)) { |
| 20 | 20 | if ($type == "page") { |
| 21 | 21 | $this->asPageHeader($niveau); |
| 22 | - } else |
|
| 23 | - $this->asContentHeader($niveau); |
|
| 22 | + } else { |
|
| 23 | + $this->asContentHeader($niveau); |
|
| 24 | + } |
|
| 24 | 25 | } |
| 25 | 26 | $this->content=$content; |
| 26 | 27 | } |
@@ -17,14 +17,14 @@ discard block |
||
| 17 | 17 | * @version 1.001 |
| 18 | 18 | */ |
| 19 | 19 | class HtmlHeader extends HtmlSemDoubleElement { |
| 20 | - use TextAlignmentTrait,AttachedTrait; |
|
| 20 | + use TextAlignmentTrait, AttachedTrait; |
|
| 21 | 21 | protected $image; |
| 22 | 22 | |
| 23 | 23 | public function __construct($identifier, $niveau=1, $content=NULL, $type="page") { |
| 24 | 24 | parent::__construct($identifier, "div", "ui header"); |
| 25 | 25 | $this->_template='<%tagName% id="%identifier%" %properties%>%image%%wrapContentBefore%%content%%wrapContentAfter%</%tagName%>'; |
| 26 | 26 | if (isset($type)) { |
| 27 | - if ($type == "page") { |
|
| 27 | + if ($type=="page") { |
|
| 28 | 28 | $this->asPageHeader($niveau); |
| 29 | 29 | } else |
| 30 | 30 | $this->asContentHeader($niveau); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | public function asPageHeader($niveau) { |
| 36 | - $this->tagName="h" . $niveau; |
|
| 36 | + $this->tagName="h".$niveau; |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | public function asContentHeader($niveau) { |
@@ -46,25 +46,25 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | public function asIcon($icon, $title, $subHeader=NULL) { |
| 48 | 48 | $this->addToProperty("class", "icon"); |
| 49 | - $this->image=new HtmlIcon("icon-" . $this->identifier, $icon); |
|
| 49 | + $this->image=new HtmlIcon("icon-".$this->identifier, $icon); |
|
| 50 | 50 | return $this->asTitle($title, $subHeader); |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | public function asImage($src, $title, $subHeader=NULL) { |
| 54 | - $this->image=new HtmlImg("img-" . $this->identifier, $src, $title); |
|
| 54 | + $this->image=new HtmlImg("img-".$this->identifier, $src, $title); |
|
| 55 | 55 | return $this->asTitle($title, $subHeader); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | public function asTitle($title, $subHeader=NULL) { |
| 59 | 59 | if (!\is_object($title)) { |
| 60 | - $this->content=new HtmlDoubleElement("content-" . $this->identifier, "div"); |
|
| 60 | + $this->content=new HtmlDoubleElement("content-".$this->identifier, "div"); |
|
| 61 | 61 | $this->content->setContent($title); |
| 62 | 62 | } else { |
| 63 | 63 | $this->content=$title; |
| 64 | 64 | } |
| 65 | 65 | $this->content->setClass("content"); |
| 66 | 66 | if (isset($subHeader)) { |
| 67 | - $sub=new HtmlDoubleElement("subheader-" . $this->identifier, "div"); |
|
| 67 | + $sub=new HtmlDoubleElement("subheader-".$this->identifier, "div"); |
|
| 68 | 68 | $sub->setClass("sub header"); |
| 69 | 69 | $sub->setContent($subHeader); |
| 70 | 70 | $this->content->addContent($sub); |