@@ -20,12 +20,12 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | public function __construct($identifier) { |
| 22 | 22 | parent::__construct($identifier, "tr", ""); |
| 23 | - $this->_states=[ State::ACTIVE,State::POSITIVE,State::NEGATIVE,State::WARNING,State::ERROR,State::DISABLED ]; |
|
| 23 | + $this->_states=[State::ACTIVE, State::POSITIVE, State::NEGATIVE, State::WARNING, State::ERROR, State::DISABLED]; |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | public function setColCount($colCount) { |
| 27 | 27 | $count=$this->count(); |
| 28 | - for($i=$count; $i < $colCount; $i++) { |
|
| 28 | + for ($i=$count; $i<$colCount; $i++) { |
|
| 29 | 29 | $item=$this->addItem(NULL); |
| 30 | 30 | $item->setTagName($this->_tdTagName); |
| 31 | 31 | } |
@@ -68,13 +68,13 @@ discard block |
||
| 68 | 68 | if (!\is_array($values)) { |
| 69 | 69 | $values=\array_fill(0, $count, $values); |
| 70 | 70 | } else { |
| 71 | - if (JArray::isAssociative($values) === true) { |
|
| 71 | + if (JArray::isAssociative($values)===true) { |
|
| 72 | 72 | $values=\array_values($values); |
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | $count=\min(\sizeof($values), $count); |
| 76 | 76 | |
| 77 | - for($i=0; $i < $count; $i++) { |
|
| 77 | + for ($i=0; $i<$count; $i++) { |
|
| 78 | 78 | $cell=$this->content[$i]; |
| 79 | 79 | $cell->setValue($values[$i]); |
| 80 | 80 | } |
@@ -101,20 +101,20 @@ discard block |
||
| 101 | 101 | public function getColPosition($colIndex) { |
| 102 | 102 | $pos=0; |
| 103 | 103 | $rows=$this->_container->getContent(); |
| 104 | - for($i=0; $i < $this->_row; $i++) { |
|
| 104 | + for ($i=0; $i<$this->_row; $i++) { |
|
| 105 | 105 | $max=\min($colIndex, $rows[$i]->count()); |
| 106 | - for($j=0; $j < $max; $j++) { |
|
| 106 | + for ($j=0; $j<$max; $j++) { |
|
| 107 | 107 | $rowspan=$rows[$i]->getItem($j)->getRowspan(); |
| 108 | - if ($rowspan + $i > $this->_row) |
|
| 108 | + if ($rowspan+$i>$this->_row) |
|
| 109 | 109 | $pos++; |
| 110 | 110 | } |
| 111 | 111 | } |
| 112 | - if ($pos > $colIndex) |
|
| 112 | + if ($pos>$colIndex) |
|
| 113 | 113 | return NULL; |
| 114 | 114 | $count=$this->count(); |
| 115 | - for($i=0; $i < $count; $i++) { |
|
| 115 | + for ($i=0; $i<$count; $i++) { |
|
| 116 | 116 | $pos+=$this->content[$i]->getColspan(); |
| 117 | - if ($pos >= $colIndex + 1) |
|
| 117 | + if ($pos>=$colIndex+1) |
|
| 118 | 118 | return $i; |
| 119 | 119 | } |
| 120 | 120 | return null; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | public function conditionalCellFormat($callback, $format) { |
| 124 | 124 | $cells=$this->content; |
| 125 | - foreach ( $cells as $cell ) { |
|
| 125 | + foreach ($cells as $cell) { |
|
| 126 | 126 | $cell->conditionalCellFormat($callback, $format); |
| 127 | 127 | } |
| 128 | 128 | return $this; |
@@ -137,8 +137,8 @@ discard block |
||
| 137 | 137 | |
| 138 | 138 | public function containsStr($needle) { |
| 139 | 139 | $cells=$this->content; |
| 140 | - foreach ( $cells as $cell ) { |
|
| 141 | - if (\strpos($cell->getContent(), $needle) !== false) |
|
| 140 | + foreach ($cells as $cell) { |
|
| 141 | + if (\strpos($cell->getContent(), $needle)!==false) |
|
| 142 | 142 | return true; |
| 143 | 143 | } |
| 144 | 144 | return false; |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | |
| 152 | 152 | public function applyCells($callback) { |
| 153 | 153 | $cells=$this->content; |
| 154 | - foreach ( $cells as $cell ) { |
|
| 154 | + foreach ($cells as $cell) { |
|
| 155 | 155 | $cell->apply($callback); |
| 156 | 156 | } |
| 157 | 157 | return $this; |
@@ -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; |
@@ -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); |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | protected $class="dropdown-toggle"; |
| 18 | 18 | protected $mClass="dropdown"; |
| 19 | 19 | protected $mTagName="div"; |
| 20 | - protected $items=array (); |
|
| 20 | + protected $items=array(); |
|
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | 23 | * |
@@ -87,9 +87,9 @@ discard block |
||
| 87 | 87 | * @return HtmlDropdownItem |
| 88 | 88 | */ |
| 89 | 89 | public function addItem($caption, $href="#") { |
| 90 | - if($caption instanceof HtmlDropdownItem){ |
|
| 90 | + if ($caption instanceof HtmlDropdownItem) { |
|
| 91 | 91 | $item=$caption; |
| 92 | - }else{ |
|
| 92 | + } else { |
|
| 93 | 93 | $iid=$this->getItemsCount()+1; |
| 94 | 94 | $item=new HtmlDropdownItem($this->identifier."-dropdown-item-".$iid); |
| 95 | 95 | $item->setCaption($caption)->setHref($href); |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | public function addItems($items) { |
| 110 | 110 | $iid=$this->getItemsCount()+1; |
| 111 | 111 | if (\is_array($items)) { |
| 112 | - foreach ( $items as $item ) { |
|
| 112 | + foreach ($items as $item) { |
|
| 113 | 113 | if (is_string($item)) { |
| 114 | 114 | $this->addItem($item); |
| 115 | 115 | } else if (\is_array($item)) { |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | public function setItems($items) { |
| 139 | - $this->items=array (); |
|
| 139 | + $this->items=array(); |
|
| 140 | 140 | $this->addItems($items); |
| 141 | 141 | } |
| 142 | 142 | |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | */ |
| 172 | 172 | public function run(JsUtils $js) { |
| 173 | 173 | if ($this->getProperty("role")==="nav") { |
| 174 | - foreach ( $this->items as $dropdownItem ) { |
|
| 174 | + foreach ($this->items as $dropdownItem) { |
|
| 175 | 175 | $dropdownItem->runNav($js); |
| 176 | 176 | } |
| 177 | 177 | } |
@@ -263,9 +263,9 @@ discard block |
||
| 263 | 263 | /* (non-PHPdoc) |
| 264 | 264 | * @see \Ajax\bootstrap\html\base\BaseHtml::on() |
| 265 | 265 | */ |
| 266 | - public function on($event, $jsCode, $stopPropagation = false, $preventDefault = false) { |
|
| 267 | - foreach ($this->items as $item){ |
|
| 268 | - $item->on($event, $jsCode,$stopPropagation,$preventDefault); |
|
| 266 | + public function on($event, $jsCode, $stopPropagation=false, $preventDefault=false) { |
|
| 267 | + foreach ($this->items as $item) { |
|
| 268 | + $item->on($event, $jsCode, $stopPropagation, $preventDefault); |
|
| 269 | 269 | } |
| 270 | 270 | } |
| 271 | 271 | |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | public function __construct($identifier, $brand="Brand", $brandHref="#") { |
| 33 | 33 | parent::__construct($identifier); |
| 34 | 34 | $this->_template=include 'templates/tplNavbar.php'; |
| 35 | - $this->navZones=array (); |
|
| 35 | + $this->navZones=array(); |
|
| 36 | 36 | $this->class="navbar-default"; |
| 37 | 37 | $this->brand=$brand; |
| 38 | 38 | $this->brandHref=$brandHref; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | public function setBrandImage($imageSrc) { |
| 63 | - $this->brandImage=PhalconUtils::image(array ( |
|
| 63 | + $this->brandImage=PhalconUtils::image(array( |
|
| 64 | 64 | $imageSrc, |
| 65 | 65 | "alt" => $this->brand |
| 66 | 66 | )); |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | public function setNavZones($navZones) { |
| 109 | 109 | if (\is_array($navZones)) { |
| 110 | - foreach ( $navZones as $zoneType => $zoneArray ) { |
|
| 110 | + foreach ($navZones as $zoneType => $zoneArray) { |
|
| 111 | 111 | if (is_string($zoneType)) { |
| 112 | 112 | $zone=$this->addZone($zoneType); |
| 113 | 113 | $zone->fromArray($zoneArray); |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | if ($index<$nb) |
| 148 | 148 | $zone=$this->navZones [$index]; |
| 149 | 149 | } else { |
| 150 | - for($i=0; $i<$nb; $i++) { |
|
| 150 | + for ($i=0; $i<$nb; $i++) { |
|
| 151 | 151 | if ($this->navZones [$i]->getIdentifier()===$index) { |
| 152 | 152 | $zone=$this->navZones [$i]; |
| 153 | 153 | break; |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | public function run(JsUtils $js) { |
| 161 | - foreach ( $this->navZones as $zone ) { |
|
| 161 | + foreach ($this->navZones as $zone) { |
|
| 162 | 162 | $zone->run($js); |
| 163 | 163 | } |
| 164 | 164 | if ($this->hasScrollspy) { |
@@ -180,9 +180,9 @@ discard block |
||
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | public function setFluid($fluid) { |
| 183 | - if($fluid===true){ |
|
| 183 | + if ($fluid===true) { |
|
| 184 | 184 | $this->fluid="container-fluid"; |
| 185 | - }else{ |
|
| 185 | + } else { |
|
| 186 | 186 | $this->fluid="container"; |
| 187 | 187 | } |
| 188 | 188 | return $this; |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | class HtmlModal extends BaseHtml { |
| 15 | 15 | protected $title="Titre de ma boîte"; |
| 16 | 16 | protected $content=""; |
| 17 | - protected $buttons=array (); |
|
| 17 | + protected $buttons=array(); |
|
| 18 | 18 | protected $showOnStartup=false; |
| 19 | 19 | protected $draggable=false; |
| 20 | 20 | protected $validCondition=NULL; |
@@ -27,10 +27,10 @@ discard block |
||
| 27 | 27 | public function __construct($identifier, $title="", $content="", $buttonCaptions=array()) { |
| 28 | 28 | parent::__construct($identifier); |
| 29 | 29 | $this->_template=include 'templates/tplModal.php'; |
| 30 | - $this->buttons=array (); |
|
| 30 | + $this->buttons=array(); |
|
| 31 | 31 | $this->title=$title; |
| 32 | 32 | $this->content=$content; |
| 33 | - foreach ( $buttonCaptions as $button ) { |
|
| 33 | + foreach ($buttonCaptions as $button) { |
|
| 34 | 34 | $this->addButton($button); |
| 35 | 35 | } |
| 36 | 36 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * @param string $value |
| 66 | 66 | * @return HtmlButton |
| 67 | 67 | */ |
| 68 | - public function addOkayButton($value="Okay",$jsCode="") { |
|
| 68 | + public function addOkayButton($value="Okay", $jsCode="") { |
|
| 69 | 69 | $btn=$this->addButton($value, "btn-primary"); |
| 70 | 70 | $btn->onClick("if(".$this->getValidCondition()."){ ".$jsCode."$('#".$this->identifier."').modal('hide');}"); |
| 71 | 71 | return $btn; |
@@ -114,8 +114,8 @@ discard block |
||
| 114 | 114 | * @param string $viewName |
| 115 | 115 | * @param $params The parameters to pass to the view |
| 116 | 116 | */ |
| 117 | - public function renderView(JsUtils $js,$initialController,$viewName, $params=array()) { |
|
| 118 | - $this->content=$js->renderContent($initialController, $viewName,$params); |
|
| 117 | + public function renderView(JsUtils $js, $initialController, $viewName, $params=array()) { |
|
| 118 | + $this->content=$js->renderContent($initialController, $viewName, $params); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -126,8 +126,8 @@ discard block |
||
| 126 | 126 | * @param string $actionName the action name |
| 127 | 127 | * @param array $params |
| 128 | 128 | */ |
| 129 | - public function forward(JsUtils $js,$initialControllerInstance,$controllerName,$actionName,$params=NULL){ |
|
| 130 | - $this->content=$js->forward($initialControllerInstance, $controllerName, $actionName,$params); |
|
| 129 | + public function forward(JsUtils $js, $initialControllerInstance, $controllerName, $actionName, $params=NULL) { |
|
| 130 | + $this->content=$js->forward($initialControllerInstance, $controllerName, $actionName, $params); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /* |
@@ -135,10 +135,10 @@ discard block |
||
| 135 | 135 | * @see BaseHtml::run() |
| 136 | 136 | */ |
| 137 | 137 | public function run(JsUtils $js) { |
| 138 | - if($this->content instanceof BaseHtml){ |
|
| 138 | + if ($this->content instanceof BaseHtml) { |
|
| 139 | 139 | $this->content->run($js); |
| 140 | 140 | } |
| 141 | - $this->_bsComponent=$js->bootstrap()->modal("#".$this->identifier, array ( |
|
| 141 | + $this->_bsComponent=$js->bootstrap()->modal("#".$this->identifier, array( |
|
| 142 | 142 | "show" => $this->showOnStartup |
| 143 | 143 | )); |
| 144 | 144 | if ($this->draggable) |
@@ -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 |
@@ -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 |