xiaowang/kirby/config/api/models/FileBlueprint.php

19 lines
425 B
PHP
Raw Normal View History

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
];