, (*1)
Better-PHP-View
This is a renderer for rendering PHP view scripts into a PSR-7 Response object. It works well with Slim Framework 3., (*2)
This Version
This version is a fork from the original PHP-view https://github.com/slimphp/PHP-View, (*3)
This version also adds optional escaping using zend-escaper (https://github.com/zendframework/zend-escaper) and the ability to include other views using $PHPview->fetch('TEMPLATE NAME');, (*4)
Included templates must reside on the same template directory., (*5)
Included templates also has access to the attributes passed on the main template., (*6)
To use the escape function, just add the type of escaping when calling $PHPview->render ex. $PHPview->render($response,'template.php',['args' => 'value'],'html'), (*7)
If escape type is left out, nothing will be escaped. It will only escape the values of the associative arrays., (*8)
Cross-site scripting (XSS) risks (optional on this version)
Note that PHP-View has no built-in mitigation from XSS attacks. It is the developer's responsibility to use htmlspecialchars() or a component like zend-escaper. Alternatively, consider Twig-View., (*9)
Templates
You may use $this inside your php templates. $this will be the actual PhpRenderer object will allow you to render sub-templates, (*10)
Installation
Install with Composer:, (*11)
composer require uniibu/better-php-view:dev-master
Usage with Slim 3 (this version)
use Slim\Views\PhpRenderer;
include "vendor/autoload.php";
$app = new Slim\App();
$container = $app->getContainer();
$container['renderer'] = new PhpRenderer("./templates");
$app->get('/hello/{name}', function ($request, $response, $args) {
return $this->renderer->render($response, "/hello.php", $args, 'html');
});
$app->run();
Usage with any PSR-7 Project
//Construct the View
$phpView = new PhpRenderer("./path/to/templates");
//Render a Template
$response = $phpView->render(new Response(), "/path/to/template.php", $yourData, 'html');
'html' = zend->escapeHtml, (*12)
'attr' = zend->escapeHtmlAttr, (*13)
'url' = zend->escapeUrl, (*14)
'js' = zend->escapeJs, (*15)
'css' = zend->escapeCss, (*16)
Template Variables (this version)
You can now add variables and escape type to your renderer that will be available to all templates you render., (*17)
// via the constructor
$templateVariables = [
"title" => "Title"
];
$phpView = new PhpRenderer("./path/to/templates", $templateVariables, 'html');
// or setter
$phpView->setAttributes($templateVariables);
// or individually
$phpView->addAttribute($key, $value);
Data passed in via ->render() takes precedence over attributes., (*18)
$templateVariables = [
"title" => "Title"
];
$phpView = new PhpRenderer("./path/to/templates", $templateVariables, 'js');
//...
$phpView->render($response, $template, [
"title" => "My Title"
], 'attr');
// In the view above, the $title will be "My Title" and not "Title"
Exceptions
\RuntimeException - if template does not exist, (*19)
\InvalidArgumentException - if $data contains 'template', (*20)