2021-10-29 18:05:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Kirby\Cms\PageBlueprint;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PageBlueprint
|
|
|
|
*/
|
|
|
|
return [
|
|
|
|
'fields' => [
|
2022-03-22 15:39:39 +01:00
|
|
|
'name' => fn (PageBlueprint $blueprint) => $blueprint->name(),
|
|
|
|
'num' => fn (PageBlueprint $blueprint) => $blueprint->num(),
|
|
|
|
'options' => fn (PageBlueprint $blueprint) => $blueprint->options(),
|
|
|
|
'preview' => fn (PageBlueprint $blueprint) => $blueprint->preview(),
|
|
|
|
'status' => fn (PageBlueprint $blueprint) => $blueprint->status(),
|
|
|
|
'tabs' => fn (PageBlueprint $blueprint) => $blueprint->tabs(),
|
|
|
|
'title' => fn (PageBlueprint $blueprint) => $blueprint->title(),
|
2021-10-29 18:05:46 +02:00
|
|
|
],
|
|
|
|
'type' => 'Kirby\Cms\PageBlueprint',
|
|
|
|
'views' => [
|
|
|
|
],
|
|
|
|
];
|