mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
88 lines
1.9 KiB
PHP
88 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Domain\TemplateManagement;
|
|
|
|
use App\Domain\FormManagement\FormMetaInformation;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*
|
|
* @deprecated
|
|
*/
|
|
final class TemplatePathFormAndView implements TemplatePathFormAndViewInterface
|
|
{
|
|
const FORM_FOLDER = FormMetaInformation::FOLDER;
|
|
|
|
const VIEW_FOLDER = 'view';
|
|
|
|
/**
|
|
* @var TemplatePathInformation
|
|
*/
|
|
private $form;
|
|
|
|
/**
|
|
* @var TemplatePathInformation
|
|
*/
|
|
private $view;
|
|
|
|
/**
|
|
* @param string $file
|
|
* @param string $folder
|
|
* @param string $type
|
|
*/
|
|
public function __construct(string $file, string $folder)
|
|
{
|
|
$this->setForm($file, $folder);
|
|
$this->setView($file, $folder);
|
|
}
|
|
|
|
/**
|
|
* @param string $file
|
|
* @param string $folder
|
|
*/
|
|
private function setForm(string $file, string $folder): void
|
|
{
|
|
$this->form = new TemplatePathInformation($file, $folder, self::FORM_FOLDER);
|
|
}
|
|
|
|
/**
|
|
* @param string $file
|
|
* @param string $folder
|
|
*/
|
|
private function setView(string $file, string $folder): void
|
|
{
|
|
$this->view = new TemplatePathInformation($file, $folder, self::VIEW_FOLDER);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \App\Domain\TemplateManagement\TemplatePathFormAndViewInterface::getForm()
|
|
*/
|
|
public function getForm(): TemplatePathInformationInterface
|
|
{
|
|
return $this->form;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \App\Domain\TemplateManagement\TemplatePathFormAndViewInterface::getView()
|
|
*/
|
|
public function getView(): TemplatePathInformation
|
|
{
|
|
return $this->view;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \App\Domain\TemplateManagement\ReloadTypeInterface::reloadType()
|
|
*/
|
|
public function reloadType(string $type): void
|
|
{
|
|
$this->view->reloadType($type);
|
|
$this->form->reloadType($type);
|
|
}
|
|
}
|