2020-03-11 23:04:01 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2020-03-12 11:45:11 -04:00
|
|
|
* Hummingbird Anime List Client
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* PHP version 7.3
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* @package HummingbirdAnimeClient
|
2020-03-11 23:04:01 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2020-03-12 11:45:11 -04:00
|
|
|
* @copyright 2015 - 2020 Timothy J. Warren
|
2020-03-11 23:04:01 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-03-12 11:45:11 -04:00
|
|
|
* @version 4.2
|
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2020-03-11 23:04:01 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\Ion\View;
|
|
|
|
|
|
|
|
use Aura\Html\HelperLocator;
|
|
|
|
use Aviat\Ion\Di\ContainerInterface;
|
|
|
|
use Aviat\Ion\Di\Exception\ContainerException;
|
|
|
|
use Aviat\Ion\Di\Exception\NotFoundException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* View class for outputting HTML
|
|
|
|
*/
|
|
|
|
class HtmlView extends HttpView {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HTML generator/escaper helper
|
|
|
|
*
|
|
|
|
* @var HelperLocator
|
|
|
|
*/
|
|
|
|
protected $helper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Response mime type
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $contentType = 'text/html';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the Html View
|
|
|
|
*
|
|
|
|
* @param ContainerInterface $container
|
|
|
|
* @throws ContainerException
|
|
|
|
* @throws NotFoundException
|
|
|
|
*/
|
|
|
|
public function __construct(ContainerInterface $container)
|
|
|
|
{
|
|
|
|
parent::__construct($container);
|
|
|
|
$this->helper = $container->get('html-helper');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render a basic html Template
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @param array $data
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function renderTemplate(string $path, array $data): string
|
|
|
|
{
|
|
|
|
$data['helper'] = $this->helper;
|
|
|
|
$data['escape'] = $this->helper->escape();
|
|
|
|
$data['container'] = $this->container;
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
extract($data, \EXTR_OVERWRITE);
|
|
|
|
include_once $path;
|
|
|
|
$buffer = ob_get_clean();
|
|
|
|
|
|
|
|
|
|
|
|
// Very basic html minify, that won't affect content between html tags
|
|
|
|
$buffer = preg_replace('/>\s+</', '> <', $buffer);
|
|
|
|
|
|
|
|
return $buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// End of HtmlView.php
|