nouveau-theatre-de-besancon/site/plugins/front-comments/test.php
2024-09-10 17:14:38 +02:00

14 lines
273 B
PHP

<?php
Kirby::plugin('adrienpayet/front-comments', [
'options' => [
'cache' => true,
],
'hooks' => [
'page.update:after' => function ($newPage) {
kirby()
->cache('adrienpayet.front-comments')
->set('foo', 'bar');
}
]
]);