julienmonnerie/kirby/config/api/models/UserBlueprint.php

18 lines
419 B
PHP
Raw Normal View History

2022-06-17 17:51:59 +02:00
<?php
use Kirby\Cms\UserBlueprint;
/**
* UserBlueprint
*/
return [
2022-08-31 15:02:43 +02:00
'fields' => [
'name' => fn (UserBlueprint $blueprint) => $blueprint->name(),
'options' => fn (UserBlueprint $blueprint) => $blueprint->options(),
'tabs' => fn (UserBlueprint $blueprint) => $blueprint->tabs(),
'title' => fn (UserBlueprint $blueprint) => $blueprint->title(),
],
2025-04-21 18:57:21 +02:00
'type' => UserBlueprint::class,
'views' => [],
2022-06-17 17:51:59 +02:00
];