mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
31 lines
658 B
PHP
31 lines
658 B
PHP
<?php
|
|
|
|
namespace App\Domain\TemplateManagement;
|
|
|
|
use App\DBAL\Types\RESTResponseType;
|
|
|
|
/**
|
|
* 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;
|
|
|
|
/**
|
|
* @see RESTResponseType::$choices
|
|
*
|
|
* @return string Type of the template
|
|
*/
|
|
public function getType(): string;
|
|
}
|