19 lines
464 B
PHP
19 lines
464 B
PHP
|
<?php
|
||
|
|
||
|
use Kirby\Cms\FileBlueprint;
|
||
|
|
||
|
/**
|
||
|
* FileBlueprint
|
||
|
*/
|
||
|
return [
|
||
|
'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' => [
|
||
|
],
|
||
|
];
|