Piwik\DataTable\Renderer\Csv::renderDataTable PHP Метод

renderDataTable() защищенный Метод

Converts the output of the given simple data table
protected renderDataTable ( DataTable | Piwik\DataTable\Simple $table, array &$allColumns = [] ) : string
$table Piwik\DataTable | Piwik\DataTable\Simple
$allColumns array
Результат string
    protected function renderDataTable($table, &$allColumns = array())
    {
        if ($table instanceof Simple) {
            $row = $table->getFirstRow();
            if ($row !== false) {
                $columnNameToValue = $row->getColumns();
                if (count($columnNameToValue) == 1) {
                    // simple tables should only have one column, the value
                    $allColumns['value'] = true;
                    $value = array_values($columnNameToValue);
                    $str = 'value' . $this->lineEnd . $this->formatValue($value[0]);
                    return $str;
                }
            }
        }
        $csv = $this->makeArrayFromDataTable($table, $allColumns);
        // now we make sure that all the rows in the CSV array have all the columns
        foreach ($csv as &$row) {
            foreach ($allColumns as $columnName => $true) {
                if (!isset($row[$columnName])) {
                    $row[$columnName] = '';
                }
            }
        }
        $str = $this->buildCsvString($allColumns, $csv);
        return $str;
    }