ygdc/site/plugins/thumb/index.php

15 lines
246 B

<?php
Kirby::plugin('site/methods', [
'fileMethods' => [
/**
* @kql-allowed
*/
'thumbnail' => function ($width) {
return $this->thumb([
'width' => $width
// other stuff you need
]);
}
]
]);