PHP code example of karelwintersky / arris.presenter
1. Go to this page and download the library: Download karelwintersky/arris.presenter 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/ */
karelwintersky / arris.presenter example snippets
$t = new \Arris\Presenter\Template(smarty_options: [], template_options: [], logger: null);
{hook run='pre_content' foo=$foo}
->registerHook('pre_content', function ($foo = 'aaa'){
return "pre content hook with arg: {$foo}";
})
{hook run='pre_content' foo=$foo}
{hook run='pre_content'}