Templates
Slim does not have a view layer like traditional MVC frameworks. Instead,Slim’s “view” is the HTTP response. Each Slim application route is responsiblefor preparing and returning an appropriate PSR-7 response object.
Slim’s “view” is the HTTP response.
That being said, the Slim project provides the Twig-View andPHP-View components to help you render templates to a PSR7Response object.
The slim/twig-view component
The Twig-View PHP component helps you render Twigtemplates in your application. This component is available on Packagist, andit’s easy to install with Composer like this:
composer require slim/twig-view
Next, you need to register the component as a service on the Slim app’scontainer like this:
<?php
// Create app
$app = new \Slim\App();
// Get container
$container = $app->getContainer();
// Register component on container
$container['view'] = function ($container) {
$view = new \Slim\Views\Twig('path/to/templates', [
'cache' => 'path/to/cache'
]);
// Instantiate and add Slim specific extension
$router = $container->get('router');
$uri = \Slim\Http\Uri::createFromEnvironment(new \Slim\Http\Environment($_SERVER));
$view->addExtension(new \Slim\Views\TwigExtension($router, $uri));
return $view;
};
Note : “cache” could be set to false to disable it, see also ‘auto_reload’ option, useful in development environment. For more information, see Twig environment options
Now you can use the slim/twig-view
component service inside an app routeto render a template and write it to a PSR-7 Response object like this:
// Render Twig template in route
$app->get('/hello/{name}', function ($request, $response, $args) {
return $this->view->render($response, 'profile.html', [
'name' => $args['name']
]);
})->setName('profile');
// Run app
$app->run();
In this example, $this->view
invoked inside the route callback is a referenceto the \Slim\Views\Twig
instance returned by the view
container service.The \Slim\Views\Twig
instance’s render()
method accepts a PSR-7 Responseobject as its first argument, the Twig template path as its second argument,and an array of template variables as its final argument. The render()
methodreturns a new PSR-7 Response object whose body is the rendered Twig template.
The path_for() method
The slim/twig-view
component exposes a custom path_for()
functionto your Twig templates. You can use this function to generate completeURLs to any named route in your Slim application. The path_for()
function accepts two arguments:
- A route name
- A hash of route placeholder names and replacement valuesThe second argument’s keys should correspond to the selected route’s patternplaceholders. This is an example Twig template that draws a link URLfor the “profile” named route shown in the example Slim application above.
{% extends "layout.html" %}
{% block body %}
<h1>User List</h1>
<ul>
<li><a href="{{ path_for('profile', { 'name': 'josh' }) }}">Josh</a></li>
</ul>
{% endblock %}
Extending twig
Twig can be extended with additional filters, functions, global variables, tagsand more.
To register a filter, add the following after registering the view componentwith the container:
$filter = new Twig_SimpleFilter('rot13', function ($string) {
return str_rot13($string);
});
$container->get('view')->getEnvironment()->addFilter($filter);
This adds a “rot13” filter to twig:
{# outputs "Slim Framework" #}
{{ 'Fyvz Senzrjbex'|rot13}}
To register a function, add the following after registering the view componentwith the container:
$function = new Twig_SimpleFunction('shortest', function ($a, $b) {
return strlen($a) <= strlen($b) ? $a : $b;
});
$container->get('view')->getEnvironment()->addFunction($function);
This adds a “shortest” function to twig:
{# outputs "Slim" #}
{{ shortest('Slim', 'Framework') }}
The twig documentationcontains more details on Twig extensions.
The slim/php-view component
The PHP-View PHP component helps you render PHP templates.This component is available on Packagist and can be installed usingComposer like this:
composer require slim/php-view
To register this component as a service on Slim App’s container, do this:
<?php
// Create app
$app = new \Slim\App();
// Get container
$container = $app->getContainer();
// Register component on container
$container['view'] = function ($container) {
return new \Slim\Views\PhpRenderer('path/to/templates/with/trailing/slash/');
};
Use the view component to render a PHP view like this:
// Render PHP template in route
$app->get('/hello/{name}', function ($request, $response, $args) {
return $this->view->render($response, 'profile.html', [
'name' => $args['name']
]);
})->setName('profile');
// Run app
$app->run();
Other template systems
You are not limited to the Twig-View
and PHP-View
components. Youcan use any PHP template system provided that you ultimately write the renderedtemplate output to the PSR-7 Response object’s body.