PHP code example of media32 / slim-view-plates
1. Go to this page and download the library: Download media32/slim-view-plates library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
media32 / slim-view-plates example snippets
$view = new \Media32\Slim\View\Plates();
$app = new \Slim\Slim(array(
'view' => $view
));
$view->parserExtensions = array(
new \Media32\Slim\View\PlatesExtension()
);