| Conditions | 4 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function groupingNextLine( $values) |
||
| 40 | { |
||
| 41 | if ($this->grouppingActive === FALSE) return ''; |
||
| 42 | |||
| 43 | $dbcol = $this->groupingColumn; |
||
| 44 | if ($this->groupingVal == '' || $this->groupingVal != $values->$dbcol ) |
||
| 45 | { |
||
| 46 | $this->groupingVal = $values->$dbcol; |
||
| 47 | $html = '<tr><th colspan="'. $this->groupingColSpan .'">'. $this->groupingPrintData($this->groupingVal) .'</th></tr>'; |
||
| 48 | return $html; |
||
| 49 | } |
||
| 50 | return ''; |
||
| 51 | |||
| 55 | } |