27 lines
596 B
PHP
27 lines
596 B
PHP
|
<?php
|
||
|
|
||
|
use Kirby\Cms\FileBlueprint;
|
||
|
|
||
|
/**
|
||
|
* FileBlueprint
|
||
|
*/
|
||
|
return [
|
||
|
'fields' => [
|
||
|
'name' => function (FileBlueprint $blueprint) {
|
||
|
return $blueprint->name();
|
||
|
},
|
||
|
'options' => function (FileBlueprint $blueprint) {
|
||
|
return $blueprint->options();
|
||
|
},
|
||
|
'tabs' => function (FileBlueprint $blueprint) {
|
||
|
return $blueprint->tabs();
|
||
|
},
|
||
|
'title' => function (FileBlueprint $blueprint) {
|
||
|
return $blueprint->title();
|
||
|
},
|
||
|
],
|
||
|
'type' => 'Kirby\Cms\FileBlueprint',
|
||
|
'views' => [
|
||
|
],
|
||
|
];
|