2021-04-19 13:30:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2021-04-20 11:20:34 +02:00
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
2022-01-17 10:59:18 +01:00
|
|
|
*
|
2021-04-20 11:20:34 +02:00
|
|
|
* https://www.d3data.de
|
2021-04-19 13:30:52 +02:00
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
2021-04-20 11:20:34 +02:00
|
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
2021-04-19 13:30:52 +02:00
|
|
|
*/
|
|
|
|
|
2021-04-20 09:57:44 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2021-04-19 13:30:52 +02:00
|
|
|
namespace D3\DataWizard\Application\Model\ExportRenderer;
|
|
|
|
|
|
|
|
use MathieuViossat\Util\ArrayToTextTable;
|
|
|
|
|
|
|
|
class Pretty implements RendererInterface
|
|
|
|
{
|
2021-04-20 09:50:49 +02:00
|
|
|
/**
|
|
|
|
* @param $rows
|
|
|
|
* @param $fieldNames
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2022-01-17 10:59:18 +01:00
|
|
|
public function getContent($rows, $fieldNames): string
|
2021-04-19 13:30:52 +02:00
|
|
|
{
|
2021-11-25 23:42:41 +01:00
|
|
|
$renderer = $this->getArrayToTextTableInstance($rows);
|
2021-04-19 13:30:52 +02:00
|
|
|
return $renderer->getTable();
|
|
|
|
}
|
|
|
|
|
2021-11-25 23:42:41 +01:00
|
|
|
/**
|
|
|
|
* @param $rows
|
|
|
|
* @return ArrayToTextTable
|
|
|
|
*/
|
2021-12-20 13:41:24 +01:00
|
|
|
public function getArrayToTextTableInstance($rows): ArrayToTextTable
|
2021-11-25 23:42:41 +01:00
|
|
|
{
|
|
|
|
return oxNew(ArrayToTextTable::class, $rows);
|
|
|
|
}
|
|
|
|
|
2021-04-20 09:50:49 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2021-04-19 13:30:52 +02:00
|
|
|
public function getFileExtension(): string
|
|
|
|
{
|
|
|
|
return 'txt';
|
|
|
|
}
|
2021-10-29 11:37:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getTitleTranslationId(): string
|
|
|
|
{
|
|
|
|
return "D3_DATAWIZARD_EXPORT_FORMAT_PRETTY";
|
|
|
|
}
|
2022-01-17 10:59:18 +01:00
|
|
|
}
|