philipsharp / slim-view-plates
Custom Slim Framework view for the Plates template system
Installs: 139
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 2
Forks: 7
Open Issues: 2
pkg:composer/philipsharp/slim-view-plates
Requires
- league/plates: 3.*
- slim/slim: 2.*
This package is not auto-updated.
Last update: 2025-11-04 12:08:33 UTC
README
This library provides a custom view for the Slim Framework to support the Plates template engine.
Usage
Add the provider to your composer.json file:
{
"require": {
"philipsharp/slim-view-plates": "5.*"
}
}
Enable it in your application
<?php $view = new \philipsharp\Slim\View\Plates(); $app = new \Slim\Slim(array( 'view' => $view ));
Configuration
Template File Extension
Set $view->fileExtension to the file extension used for all templates.
By default Plates expects the extension to be .php.
Templates Path
Set $view->templatesPath to the location of the templates.
By default Slim-View-Plates will use the Slim templates.path configuration value. This setting allows you to override that value for only the Plates templates.
Templates Folder
Add to the $view->templatesFolders array, where the key is the name of the
folder and the value is the path.
Advanced Usage
To access the Plates engine object for further customization, including loading
extensions, call $view->getInstance().