Files
lichterei-web/site/plugins/gallery/index.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

17 lines
420 B
PHP
Executable File

<?php
Kirby::plugin('starterkit/gallery', [
'hooks' => [
'kirbytags:after' => function ($text, $data, $options) {
if ($page = $data['parent']->gallery()->toPage()) {
$gallery = snippet('gallery', ['gallery' => $page], true);
} else {
$gallery = '';
}
return str_replace('{{ gallery }}', $gallery, $text);
}
]
]);