DataWizard/Application/Model/ExportRenderer/RendererInterface.php

32 lignes
705 B
PHP
Brut Vue normale Historique

<?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.
*
* https://www.d3data.de
*
* @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-20 09:57:44 +02:00
declare(strict_types=1);
namespace D3\DataWizard\Application\Model\ExportRenderer;
interface RendererInterface
{
/**
* @param $rows
* @param $fieldNames
*
* @return string
*/
2021-04-19 14:36:25 +02:00
public function getContent($rows, $fieldNames) : string;
/**
* @return string
*/
2021-04-19 14:36:25 +02:00
public function getFileExtension() : string;
}