PHP code example of fignon / fignon-smarty-engine
1. Go to this page and download the library: Download fignon/fignon-smarty-engine 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/ */
fignon / fignon-smarty-engine example snippets
//app.php (or index.php) depending of how you call you entry point
declare(strict_types=1);
include_once __DIR__ . "/../vendor/autoload.php";
use Fignon\Tunnel;
use App\Features\Features;
use Fignon\Extra\SmartyEngine;
$app = new Tunnel();
$app->set('env', 'development');
// ... other middlewares
// View engine initialization
$app->set('views', dirname(__DIR__) . '/templates');
$app->set('views cache', dirname(__DIR__) . '/var/cache');
$app->set('view engine options', [ // Smarty