@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | if(JArray::isAssociative($content)===false){ |
| 18 | 18 | $icon=@$content[0]; |
| 19 | 19 | $title=@$content[1]; |
| 20 | - }else{ |
|
| 20 | + } else{ |
|
| 21 | 21 | $icon=@$content["icon"]; |
| 22 | 22 | $title=@$content["title"]; |
| 23 | 23 | } |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | if(isset($title)){ |
| 28 | 28 | $this->setTitle($title); |
| 29 | 29 | } |
| 30 | - }else{ |
|
| 30 | + } else{ |
|
| 31 | 31 | $this->setContent($content); |
| 32 | 32 | } |
| 33 | 33 | } |
@@ -29,8 +29,9 @@ discard block |
||
| 29 | 29 | $this->_colSizing=false; |
| 30 | 30 | $this->setWide($numCols); |
| 31 | 31 | } |
| 32 | - if($createCols) |
|
| 33 | - $this->setRowsCount($numRows, $numCols); |
|
| 32 | + if($createCols) { |
|
| 33 | + $this->setRowsCount($numRows, $numCols); |
|
| 34 | + } |
|
| 34 | 35 | } |
| 35 | 36 | |
| 36 | 37 | public function asSegment() { |
@@ -82,8 +83,9 @@ discard block |
||
| 82 | 83 | public function addCol($width=NULL) { |
| 83 | 84 | $colCount=$this->colCount() + 1; |
| 84 | 85 | $this->setColsCount($colCount, true, $width); |
| 85 | - if ($this->hasOnlyCols($this->count())) |
|
| 86 | - return $this->content[$colCount - 1]; |
|
| 86 | + if ($this->hasOnlyCols($this->count())) { |
|
| 87 | + return $this->content[$colCount - 1]; |
|
| 88 | + } |
|
| 87 | 89 | return $this; |
| 88 | 90 | } |
| 89 | 91 | |
@@ -178,8 +180,9 @@ discard block |
||
| 178 | 180 | */ |
| 179 | 181 | public function rowCount() { |
| 180 | 182 | $count=$this->count(); |
| 181 | - if ($this->hasOnlyCols($count)) |
|
| 182 | - return 0; |
|
| 183 | + if ($this->hasOnlyCols($count)) { |
|
| 184 | + return 0; |
|
| 185 | + } |
|
| 183 | 186 | return $count; |
| 184 | 187 | } |
| 185 | 188 | |
@@ -189,10 +192,12 @@ discard block |
||
| 189 | 192 | */ |
| 190 | 193 | public function colCount() { |
| 191 | 194 | $count=$this->count(); |
| 192 | - if ($this->hasOnlyCols($count)) |
|
| 193 | - return $count; |
|
| 194 | - if ($count > 0) |
|
| 195 | - return $this->getItem(0)->count(); |
|
| 195 | + if ($this->hasOnlyCols($count)) { |
|
| 196 | + return $count; |
|
| 197 | + } |
|
| 198 | + if ($count > 0) { |
|
| 199 | + return $this->getItem(0)->count(); |
|
| 200 | + } |
|
| 196 | 201 | return 0; |
| 197 | 202 | } |
| 198 | 203 | |
@@ -203,8 +208,9 @@ discard block |
||
| 203 | 208 | * @return HtmlGridCol|HtmlGridRow |
| 204 | 209 | */ |
| 205 | 210 | public function getCell($row, $col) { |
| 206 | - if ($row < 2 && $this->hasOnlyCols($this->count())) |
|
| 207 | - return $this->getItem($col); |
|
| 211 | + if ($row < 2 && $this->hasOnlyCols($this->count())) { |
|
| 212 | + return $this->getItem($col); |
|
| 213 | + } |
|
| 208 | 214 | $row=$this->getItem($row); |
| 209 | 215 | if (isset($row)) { |
| 210 | 216 | $col=$row->getItem($col); |
@@ -253,8 +259,9 @@ discard block |
||
| 253 | 259 | * @return \Ajax\semantic\html\collections\HtmlGrid |
| 254 | 260 | */ |
| 255 | 261 | public function setPadded($value=NULL) { |
| 256 | - if (isset($value)) |
|
| 257 | - $this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" )); |
|
| 262 | + if (isset($value)) { |
|
| 263 | + $this->addToPropertyCtrl("class", $value, array ("vertically","horizontally" )); |
|
| 264 | + } |
|
| 258 | 265 | return $this->addToProperty("class", "padded"); |
| 259 | 266 | } |
| 260 | 267 | |
@@ -279,8 +286,9 @@ discard block |
||
| 279 | 286 | * @see \Ajax\common\html\HtmlCollection::createItem() |
| 280 | 287 | */ |
| 281 | 288 | protected function createItem($value) { |
| 282 | - if ($this->_createCols === false) |
|
| 283 | - $value=null; |
|
| 289 | + if ($this->_createCols === false) { |
|
| 290 | + $value=null; |
|
| 291 | + } |
|
| 284 | 292 | $item=new HtmlGridRow($this->identifier . "-row-" . ($this->count() + 1), $value, $this->_colSizing, $this->_implicitRows); |
| 285 | 293 | return $item; |
| 286 | 294 | } |
@@ -40,8 +40,9 @@ |
||
| 40 | 40 | * @return HtmlBsDoubleElement default : "list-group-item-default" |
| 41 | 41 | */ |
| 42 | 42 | public function setStyle($cssStyle) { |
| 43 | - if (!JString::startsWith($cssStyle, "list-group-item")) |
|
| 44 | - $cssStyle="list-group-item".$cssStyle; |
|
| 43 | + if (!JString::startsWith($cssStyle, "list-group-item")) { |
|
| 44 | + $cssStyle="list-group-item".$cssStyle; |
|
| 45 | + } |
|
| 45 | 46 | $this->element->addToPropertyCtrl("class", $cssStyle, CssRef::Styles("list-group-item")); |
| 46 | 47 | return $this->element; |
| 47 | 48 | } |