mirror of
https://github.com/Huber1/skigemeinschaft.git
synced 2026-05-13 12:27:34 +02:00
17 lines
419 B
PHP
17 lines
419 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' => FileBlueprint::class,
|
|
'views' => [],
|
|
];
|