mirror of
https://github.com/Huber1/skigemeinschaft.git
synced 2026-05-13 12:27:34 +02:00
14 lines
237 B
PHP
14 lines
237 B
PHP
<?php
|
|
|
|
use Kirby\Cms\PagePicker;
|
|
|
|
return [
|
|
'methods' => [
|
|
'pagepicker' => function (array $params = []) {
|
|
// inject the current model
|
|
$params['model'] = $this->model();
|
|
|
|
return (new PagePicker($params))->toArray();
|
|
}
|
|
]
|
|
];
|