2021-10-29 18:05:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Kirby\Cms\FileBlueprint;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FileBlueprint
|
|
|
|
*/
|
|
|
|
return [
|
2022-08-31 16:08:03 +02:00
|
|
|
'fields' => [
|
|
|
|
'name' => fn (FileBlueprint $blueprint) => $blueprint->name(),
|
|
|
|
'options' => fn (FileBlueprint $blueprint) => $blueprint->options(),
|
|
|
|
'tabs' => fn (FileBlueprint $blueprint) => $blueprint->tabs(),
|
|
|
|
'title' => fn (FileBlueprint $blueprint) => $blueprint->title(),
|
|
|
|
],
|
|
|
|
'type' => 'Kirby\Cms\FileBlueprint',
|
|
|
|
'views' => [
|
|
|
|
],
|
2021-10-29 18:05:46 +02:00
|
|
|
];
|