File: /home/wbwebdes/domains/mailing.wb-cloud.nl/private_html/admin/plugins/Common/IExportable.php
<?php
namespace phpList\plugin\Common;
/**
* CommonPlugin for phplist.
*
* This file is a part of CommonPlugin.
*
* @category phplist
*
* @author Duncan Cameron
* @copyright 2011-2018 Duncan Cameron
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, Version 3
*/
/**
* This is an interface for classes that can export their results.
*/
interface IExportable
{
public function exportFileName();
public function exportRows();
public function exportFieldNames();
public function exportValues(array $row);
}