<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wireframe-framework / wireframe-renderer-latte example snippets
// during Wireframe init (this is the preferred way):
$wireframe->init([
'renderer' => ['WireframeRendererLatte', [
'latte' => [
// just an example (this is the default value)
'tempDirectory' => $this->wire('config')->paths->cache . '/WireframeRendererLatte',
],
'ext' => 'latte', // file extension ('latte' is the default value)
]],
]);
// ... or after init (this incurs a slight overhead):
$wireframe->setRenderer('WireframeRendererLatte', [
// optional settings array
]);
// site/ready.php
$wire->addHookAfter('WireframeRendererLatte::initLatte', function(HookEvent $event) {
$event->return->addFilter('shortify', function (string $s): string {
return mb_substr($s, 0, 10); // shortens the text to 10 characters
});
});
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.