pdfdokumente/Application/Model/Registries/registryGenericInterface.php

38 lines
882 B
PHP
Raw Normal View History

2020-05-30 00:45:18 +02:00
<?php
/**
2020-07-04 23:25:24 +02:00
* See LICENSE file for license details.
2020-05-30 00:45:18 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2020-07-04 23:25:24 +02:00
* @author D3 Data Development - Max Buhe <support@shopmodule.com>
* @link http://www.oxidmodule.com
2020-05-30 00:45:18 +02:00
*/
namespace D3\PdfDocuments\Application\Model\Registries;
2020-05-30 01:02:50 +02:00
interface registryGenericInterface
2020-05-30 00:45:18 +02:00
{
2020-06-02 10:04:19 +02:00
public function getRequiredGeneratorInterfaceClassName();
2020-05-30 00:45:18 +02:00
/**
* @param $className * generator fully qualified class name
*/
public function removeGenerator($className);
/**
* @param $className * generator fully qualified class name
*/
public function hasGenerator($className);
/**
* @param $className * generator fully qualified class name
*/
public function getGenerator($className);
/**
* @return array
*/
public function getList();
public function clearList();
}