| 1 | <?php |
||
| 2 | |||
| 3 | class tbody extends tfoot |
||
| 4 | { |
||
| 5 | protected static function jsonTbody() |
||
| 6 | { |
||
| 7 | $outColumns = array_column(self::$cols, 1); |
||
| 8 | |||
| 9 | $json = []; |
||
| 10 | |||
| 11 | if ((self::$t['rows'] = count(self::$data)) > 0) { |
||
| 12 | foreach (self::$data as $r) { |
||
| 13 | $rOut = []; |
||
| 14 | foreach ($outColumns as $dbCol) { |
||
| 15 | $rOut[] = array_key_exists($dbCol, $r) ? $r[$dbCol] : ''; |
||
| 16 | } |
||
| 17 | $json[] = $rOut; |
||
| 18 | } |
||
| 19 | } else { |
||
| 20 | $attr = ['colspan' => count(self::$cols), 'class' => 'no-results']; |
||
| 21 | $json[] = [[self::config('EMPTY_TABLE_MSG'), $attr]]; |
||
| 22 | } |
||
| 23 | return $json; |
||
| 24 | } |
||
| 25 | |||
| 26 | protected static function rowsTbody() |
||
| 27 | { |
||
| 28 | $trs = ''; |
||
| 29 | foreach (self::jsonTbody() as $r) { |
||
| 30 | if (isset($r[0][1], $r[0][1]['class']) && |
||
| 31 | $r[0][1]['class'] === 'no-results' |
||
| 32 | ) { |
||
| 33 | $trs .= '<tr><td' . self::attributes($r[0][1]) . '>' |
||
| 34 | . $r[0][0] . '</td></tr>'; |
||
| 35 | } else { |
||
| 36 | $trs .= '<tr><td>' . implode('</td><td>', $r) |
||
| 37 | . '</td></tr>'; |
||
| 38 | } |
||
| 39 | } |
||
| 40 | return $trs; |
||
| 41 | } |
||
| 42 | |||
| 43 | protected static function export() |
||
| 44 | { |
||
| 45 | $data = self::$exportDataAsDisplayed ? |
||
| 46 | self::$data : |
||
| 47 | self::select(self::$t['q']); |
||
| 48 | $outColumns = $outHeader = []; |
||
| 49 | foreach (self::$cols as $c) { |
||
| 50 | if (isset($c[2]['sort']) && $c[2]['sort'] === false) { |
||
| 51 | continue; |
||
| 52 | } |
||
| 53 | $outColumns[] = $c[1]; |
||
| 54 | $outHeader[] = $c[0]; |
||
| 55 | } |
||
| 56 | $eData = [$outHeader]; |
||
| 57 | if (count($data) > 0) { |
||
| 58 | foreach ($data as $row) { |
||
| 59 | $rowData = []; |
||
| 60 | foreach ($row as $dbName => $value) { |
||
| 61 | if (in_array($dbName, $outColumns)) { |
||
| 62 | $rowData[] = is_array($value) ? $value[0] : $value; |
||
| 63 | } |
||
| 64 | } |
||
| 65 | $eData[] = $rowData; |
||
| 66 | } |
||
| 67 | } |
||
| 68 | self::exportFile($eData); |
||
| 69 | } |
||
| 70 | |||
| 71 | private static function exportFile($eData) |
||
| 72 | { |
||
| 73 | $filename = self::exportFilename(); |
||
| 74 | switch (self::$export) { |
||
| 75 | case 'Excel': |
||
| 76 | case 'CSV': |
||
| 77 | $escape = function($v) { |
||
| 78 | return str_replace("\t", "	", $v); |
||
| 79 | }; |
||
| 80 | header('Content-Type:application/csv'); |
||
| 81 | header('Content-Disposition:attachment; filename=' . |
||
| 82 | $filename . '.csv'); |
||
| 83 | |||
| 84 | if (($output = fopen('php://output', 'w'))) { |
||
| 85 | foreach ($eData as $v) { |
||
| 86 | self::$export === 'CSV' ? |
||
| 87 | fputcsv($output, $v) : |
||
| 88 | fputs($output, implode("\t", array_map($escape, $v)) . "\r\n"); |
||
| 89 | } |
||
| 90 | fclose($output); |
||
| 91 | } |
||
| 92 | break; |
||
| 93 | } |
||
| 94 | } |
||
| 95 | |||
| 96 | private static function exportFilename() |
||
| 97 | { |
||
| 98 | $fnReplace = []; |
||
| 99 | $fnReplace[':app'] = self::config('APP'); |
||
| 100 | $fnReplace[':items'] = self::$t['items']; |
||
| 101 | $format = str_replace(':', '.', '%d.%m.%Y %H:%i:%s'); |
||
| 102 | $timeQuery = 'SELECT DATE_FORMAT(Now(), "' . $format . '") AS `now`;'; |
||
| 103 | $fnReplace[':datetime'] = self::select($timeQuery); |
||
| 104 | return strtr(self::config('EXPORT_FILE_NAME'), $fnReplace); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 105 | } |
||
| 106 | } |
||
| 107 |