designtopack/public/site/plugins/refresh-cache-button/index.php

26 lines
608 B
PHP
Raw Normal View History

<?php
Kirby::plugin('adrienpayet/refresh-cache-button', [
'areas' => [
'site' => function () {
return [
'buttons'=> [
'refresh-cache' => function($page) {
return [
'component' => 'refresh-cache-button',
'props' => [
'pageUri' => $page->uri(),
'pageStatus' => $page->status(),
'lastCacheUpdate' => $page->lastCacheUpdate()->value(),
]
];
}
]
];
}
],
'routes' => [
require_once(__DIR__ . '/src/routes/refresh-cache.php')
]
]);