2019-01-06 11:32:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Domain\TemplateManagement;
|
|
|
|
|
2019-01-06 15:15:47 +01:00
|
|
|
use App\DBAL\Types\RESTResponseType;
|
|
|
|
|
2019-01-06 11:32:05 +01:00
|
|
|
/**
|
|
|
|
* Manages all informations which are needed to process templates.
|
|
|
|
*
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
|
|
|
interface TemplatePathInformationInterface extends ReloadTypeInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return string A template inclusiv frame. (Standalone)
|
|
|
|
*/
|
|
|
|
public function getMoleculeTemplatePath(): string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string a template without a frame
|
|
|
|
*/
|
|
|
|
public function getAtomTemplatePath(): string;
|
2019-01-06 15:15:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @see RESTResponseType::$choices
|
|
|
|
*
|
|
|
|
* @return string Type of the template
|
|
|
|
*/
|
2019-01-16 21:22:18 +01:00
|
|
|
public function getCrud(): string;
|
2019-01-06 11:32:05 +01:00
|
|
|
}
|