| 1 | <?php |
||
| 5 | class Exporter implements ExporterInterface |
||
| 6 | { |
||
| 7 | private $exporters = array(); |
||
| 8 | |||
| 9 | /** |
||
| 10 | * {@inheritdoc} |
||
| 11 | */ |
||
| 12 | public function export($filename, $format, $data, $fields) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function supports($format) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Add an exporter |
||
| 39 | * |
||
| 40 | * @param ExporterInterface $exporter |
||
| 41 | */ |
||
| 42 | public function addExporter(ExporterInterface $exporter) |
||
| 46 | } |
||
| 47 |