TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:14 +02:00
commit ff4622ba97
138 changed files with 9045 additions and 0 deletions
+63
View File
@@ -0,0 +1,63 @@
<?php
return [
'ctrl' => [
'title' => 'dashboard.db:be_dashboard',
'label' => 'title',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
'adminOnly' => true,
'rootLevel' => 1,
'delete' => 'deleted',
'hideTable' => true,
'enablecolumns' => [
'disabled' => 'hidden',
'starttime' => 'starttime',
'endtime' => 'endtime',
],
'default_sortby' => 'crdate DESC',
'typeicon_classes' => [
'default' => 'content-dashboard',
],
],
'columns' => [
// The owner of the dashboard
'cruser_id' => [
'config' => [
'type' => 'passthrough',
],
],
'identifier' => [
'label' => 'dashboard.db:identifier',
'config' => [
'type' => 'input',
'size' => 30,
'max' => 255,
'required' => true,
],
],
'title' => [
'label' => 'dashboard.db:title',
'config' => [
'type' => 'input',
'size' => 30,
'max' => 255,
'required' => true,
],
],
],
'types' => [
'1' => [
'showitem' => '
--div--;core.form.tabs:general,
identifier,title,
--div--;core.form.tabs:access,
hidden, --palette--;;timeRestriction,
--div--;core.form.tabs:extended,
',
],
],
'palettes' => [
'timeRestriction' => ['showitem' => 'starttime, endtime'],
],
];