@@ -34,8 +34,9 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | public function addImage($src="", $alt="", $size=NULL) { |
| 36 | 36 | $image=new HtmlImg("img-", $src, $alt); |
| 37 | - if (isset($size)) |
|
| 38 | - $image->setSize($size); |
|
| 37 | + if (isset($size)) { |
|
| 38 | + $image->setSize($size); |
|
| 39 | + } |
|
| 39 | 40 | $this->content["image"]=$image; |
| 40 | 41 | return $image; |
| 41 | 42 | } |
@@ -45,8 +46,9 @@ discard block |
||
| 45 | 46 | foreach ( $metas as $meta ) { |
| 46 | 47 | $this->addMeta($meta); |
| 47 | 48 | } |
| 48 | - } else |
|
| 49 | - $this->addMeta($metas); |
|
| 49 | + } else { |
|
| 50 | + $this->addMeta($metas); |
|
| 51 | + } |
|
| 50 | 52 | return $this; |
| 51 | 53 | } |
| 52 | 54 | |
@@ -73,8 +75,9 @@ discard block |
||
| 73 | 75 | $result=new HtmlSemDoubleElement("", "span", "", $caption); |
| 74 | 76 | $this->addContent($result); |
| 75 | 77 | $result->setFloated($direction); |
| 76 | - } else |
|
| 77 | - $result=$this->addContent($caption); |
|
| 78 | + } else { |
|
| 79 | + $result=$this->addContent($caption); |
|
| 80 | + } |
|
| 78 | 81 | return $result; |
| 79 | 82 | } |
| 80 | 83 | |
@@ -105,17 +105,20 @@ discard block |
||
| 105 | 105 | $max=\min($colIndex, $rows[$i]->count()); |
| 106 | 106 | for($j=0; $j < $max; $j++) { |
| 107 | 107 | $rowspan=$rows[$i]->getItem($j)->getRowspan(); |
| 108 | - if ($rowspan + $i > $this->_row) |
|
| 109 | - $pos++; |
|
| 108 | + if ($rowspan + $i > $this->_row) { |
|
| 109 | + $pos++; |
|
| 110 | + } |
|
| 110 | 111 | } |
| 111 | 112 | } |
| 112 | - if ($pos > $colIndex) |
|
| 113 | - return NULL; |
|
| 113 | + if ($pos > $colIndex) { |
|
| 114 | + return NULL; |
|
| 115 | + } |
|
| 114 | 116 | $count=$this->count(); |
| 115 | 117 | for($i=0; $i < $count; $i++) { |
| 116 | 118 | $pos+=$this->content[$i]->getColspan(); |
| 117 | - if ($pos >= $colIndex + 1) |
|
| 118 | - return $i; |
|
| 119 | + if ($pos >= $colIndex + 1) { |
|
| 120 | + return $i; |
|
| 121 | + } |
|
| 119 | 122 | } |
| 120 | 123 | return null; |
| 121 | 124 | } |
@@ -138,8 +141,9 @@ discard block |
||
| 138 | 141 | public function containsStr($needle) { |
| 139 | 142 | $cells=$this->content; |
| 140 | 143 | foreach ( $cells as $cell ) { |
| 141 | - if (\strpos($cell->getContent(), $needle) !== false) |
|
| 142 | - return true; |
|
| 144 | + if (\strpos($cell->getContent(), $needle) !== false) { |
|
| 145 | + return true; |
|
| 146 | + } |
|
| 143 | 147 | } |
| 144 | 148 | return false; |
| 145 | 149 | } |
@@ -22,8 +22,9 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | public function __construct($identifier, $tagName="tbody", $rowCount=NULL, $colCount=NULL) { |
| 24 | 24 | parent::__construct($identifier, $tagName, ""); |
| 25 | - if (isset($rowCount) && isset($colCount)) |
|
| 26 | - $this->setRowCount($rowCount, $colCount); |
|
| 25 | + if (isset($rowCount) && isset($colCount)) { |
|
| 26 | + $this->setRowCount($rowCount, $colCount); |
|
| 27 | + } |
|
| 27 | 28 | } |
| 28 | 29 | |
| 29 | 30 | /** |
@@ -129,8 +130,9 @@ discard block |
||
| 129 | 130 | $values=\array_fill(0, $count, $values); |
| 130 | 131 | $isArray=false; |
| 131 | 132 | } |
| 132 | - if (JArray::dimension($values) == 1 && $isArray) |
|
| 133 | - $values=[ $values ]; |
|
| 133 | + if (JArray::dimension($values) == 1 && $isArray) { |
|
| 134 | + $values=[ $values ]; |
|
| 135 | + } |
|
| 134 | 136 | |
| 135 | 137 | $count=\min(\sizeof($values), $count); |
| 136 | 138 | |
@@ -174,8 +176,9 @@ discard block |
||
| 174 | 176 | $count=$this->count(); |
| 175 | 177 | for($i=0; $i < $count; $i++) { |
| 176 | 178 | $index=$this->content[$i]->getColPosition($colIndex); |
| 177 | - if ($index !== NULL) |
|
| 178 | - $this->getCell($i, $index)->$function(); |
|
| 179 | + if ($index !== NULL) { |
|
| 180 | + $this->getCell($i, $index)->$function(); |
|
| 181 | + } |
|
| 179 | 182 | } |
| 180 | 183 | return $this; |
| 181 | 184 | } |
@@ -206,8 +209,9 @@ discard block |
||
| 206 | 209 | */ |
| 207 | 210 | public function getColCount() { |
| 208 | 211 | $result=0; |
| 209 | - if ($this->count() > 0) |
|
| 210 | - $result=$this->getItem(0)->getColCount(); |
|
| 212 | + if ($this->count() > 0) { |
|
| 213 | + $result=$this->getItem(0)->getColCount(); |
|
| 214 | + } |
|
| 211 | 215 | return $result; |
| 212 | 216 | } |
| 213 | 217 | |
@@ -66,15 +66,17 @@ |
||
| 66 | 66 | |
| 67 | 67 | public function getColspan() { |
| 68 | 68 | $colspan=1; |
| 69 | - if (\array_key_exists("colspan", $this->properties)) |
|
| 70 | - $colspan=$this->getProperty("colspan"); |
|
| 69 | + if (\array_key_exists("colspan", $this->properties)) { |
|
| 70 | + $colspan=$this->getProperty("colspan"); |
|
| 71 | + } |
|
| 71 | 72 | return $colspan; |
| 72 | 73 | } |
| 73 | 74 | |
| 74 | 75 | public function getRowspan() { |
| 75 | 76 | $rowspan=1; |
| 76 | - if (\array_key_exists("rowspan", $this->properties)) |
|
| 77 | - $rowspan=$this->getProperty("rowspan"); |
|
| 77 | + if (\array_key_exists("rowspan", $this->properties)) { |
|
| 78 | + $rowspan=$this->getProperty("rowspan"); |
|
| 79 | + } |
|
| 78 | 80 | return $rowspan; |
| 79 | 81 | } |
| 80 | 82 | |
@@ -20,8 +20,9 @@ discard block |
||
| 20 | 20 | public function __construct($identifier, $width=NULL) { |
| 21 | 21 | parent::__construct($identifier, "div"); |
| 22 | 22 | $this->setClass("column"); |
| 23 | - if (isset($width)) |
|
| 24 | - $this->setWidth($width); |
|
| 23 | + if (isset($width)) { |
|
| 24 | + $this->setWidth($width); |
|
| 25 | + } |
|
| 25 | 26 | } |
| 26 | 27 | |
| 27 | 28 | /** |
@@ -48,10 +49,11 @@ discard block |
||
| 48 | 49 | |
| 49 | 50 | public function addDivider($vertical=true, $content=NULL) { |
| 50 | 51 | $divider=new HtmlDivider("", $content); |
| 51 | - if ($vertical) |
|
| 52 | - $divider->setVertical(); |
|
| 53 | - else |
|
| 54 | - $divider->setHorizontal(); |
|
| 52 | + if ($vertical) { |
|
| 53 | + $divider->setVertical(); |
|
| 54 | + } else { |
|
| 55 | + $divider->setHorizontal(); |
|
| 56 | + } |
|
| 55 | 57 | $this->wrap("", $divider); |
| 56 | 58 | return $divider; |
| 57 | 59 | } |
@@ -29,10 +29,11 @@ |
||
| 29 | 29 | if(isset($numCols)){ |
| 30 | 30 | $numCols=min(16,$numCols); |
| 31 | 31 | $numCols=max(1,$numCols); |
| 32 | - if($colSizing) |
|
| 33 | - $width=(int)(16/$numCols); |
|
| 34 | - else |
|
| 35 | - $this->_colSize=16/$numCols; |
|
| 32 | + if($colSizing) { |
|
| 33 | + $width=(int)(16/$numCols); |
|
| 34 | + } else { |
|
| 35 | + $this->_colSize=16/$numCols; |
|
| 36 | + } |
|
| 36 | 37 | for ($i=0;$i<$numCols;$i++){ |
| 37 | 38 | $this->addItem($width); |
| 38 | 39 | } |
@@ -36,8 +36,9 @@ |
||
| 36 | 36 | |
| 37 | 37 | private function getPart($part, $index=NULL) { |
| 38 | 38 | if (\array_key_exists($part, $this->content)) { |
| 39 | - if (isset($index)) |
|
| 40 | - return $this->content[$part][$index]; |
|
| 39 | + if (isset($index)) { |
|
| 40 | + return $this->content[$part][$index]; |
|
| 41 | + } |
|
| 41 | 42 | return $this->content[$part]; |
| 42 | 43 | } |
| 43 | 44 | return NULL; |
@@ -28,8 +28,9 @@ |
||
| 28 | 28 | if (isset($extra)) { |
| 29 | 29 | $result->addExtraContent($extra); |
| 30 | 30 | } |
| 31 | - } else |
|
| 32 | - $result->addCardContent($value); |
|
| 31 | + } else { |
|
| 32 | + $result->addCardContent($value); |
|
| 33 | + } |
|
| 33 | 34 | return $result; |
| 34 | 35 | } |
| 35 | 36 | |
@@ -36,8 +36,9 @@ discard block |
||
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | public function getTab($index) { |
| 39 | - if ($index>0&&$index<sizeof($this->tabs)) |
|
| 40 | - return $this->tabs [$index]; |
|
| 39 | + if ($index>0&&$index<sizeof($this->tabs)) { |
|
| 40 | + return $this->tabs [$index]; |
|
| 41 | + } |
|
| 41 | 42 | } |
| 42 | 43 | |
| 43 | 44 | public function show($index) { |
@@ -53,8 +54,9 @@ discard block |
||
| 53 | 54 | */ |
| 54 | 55 | public function onShow($index, $jsCode) { |
| 55 | 56 | $tab=$this->getTab($index); |
| 56 | - if (isset($tab)) |
|
| 57 | - return $tab->onShow($jsCode); |
|
| 57 | + if (isset($tab)) { |
|
| 58 | + return $tab->onShow($jsCode); |
|
| 59 | + } |
|
| 58 | 60 | } |
| 59 | 61 | |
| 60 | 62 | /** |
@@ -65,8 +67,9 @@ discard block |
||
| 65 | 67 | */ |
| 66 | 68 | public function onShown($index, $jsCode) { |
| 67 | 69 | $tab=$this->getTab($index); |
| 68 | - if (isset($tab)) |
|
| 69 | - return $tab->onShown($jsCode); |
|
| 70 | + if (isset($tab)) { |
|
| 71 | + return $tab->onShown($jsCode); |
|
| 72 | + } |
|
| 70 | 73 | } |
| 71 | 74 | |
| 72 | 75 | /** |
@@ -77,8 +80,9 @@ discard block |
||
| 77 | 80 | */ |
| 78 | 81 | public function onHide($index, $jsCode) { |
| 79 | 82 | $tab=$this->getTab($index); |
| 80 | - if (isset($tab)) |
|
| 81 | - return $tab->onShow($jsCode); |
|
| 83 | + if (isset($tab)) { |
|
| 84 | + return $tab->onShow($jsCode); |
|
| 85 | + } |
|
| 82 | 86 | } |
| 83 | 87 | |
| 84 | 88 | /** |
@@ -89,7 +93,8 @@ discard block |
||
| 89 | 93 | */ |
| 90 | 94 | public function onHidden($index, $jsCode) { |
| 91 | 95 | $tab=$this->getTab($index); |
| 92 | - if (isset($tab)) |
|
| 93 | - return $tab->onShow($jsCode); |
|
| 96 | + if (isset($tab)) { |
|
| 97 | + return $tab->onShow($jsCode); |
|
| 98 | + } |
|
| 94 | 99 | } |
| 95 | 100 | } |
| 96 | 101 | \ No newline at end of file |