Add evo_megamenu_json extension and seed the megamenu
- new project-neutral extension evo_megamenu_json (Evomedien): a Megamenu plugin holding entries, columns, items, teaser cards and a featured slot as nested records; presentation settings travel with the payload so the front end reads behaviour instead of hard-coding it; published as page.10.fields.megaMenu, driven by the site settings megamenu.contentUid and megamenu.storagePid - vitec:seed-megamenu fills one element from the live structure: 5 entries, 26 columns, 95 items, 4 story cards; items without a page yet are flagged pending so the front end falls back to the column link - vitec:debug-sets prints the resolved site set order - read-only diagnostics: check_megamenu_schema.php, check_typoscript_templates.php - docs: schema updates run via extension:setup (database:updateschema no longer exists in v14), and a JSON Accept header activates headless-mixed, which strips every set-added page field
This commit is contained in:
@@ -0,0 +1,184 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* One item in the main navigation bar - the thing a visitor hovers.
|
||||
*
|
||||
* `link` is a real target: the bar item stays clickable and leads to the
|
||||
* overview page, the panel only opens on hover. `layout` decides which of
|
||||
* the two panel shapes renders - a column grid, or a small link column
|
||||
* next to teaser cards.
|
||||
*/
|
||||
|
||||
$ll = 'LLL:EXT:evo_megamenu_json/Resources/Private/Language/locallang_db.xlf:tx_evomegamenujson_entry.';
|
||||
|
||||
return [
|
||||
'ctrl' => [
|
||||
'title' => 'LLL:EXT:evo_megamenu_json/Resources/Private/Language/locallang_db.xlf:tx_evomegamenujson_entry',
|
||||
'label' => 'title',
|
||||
'label_alt' => 'layout',
|
||||
'label_alt_force' => true,
|
||||
'tstamp' => 'tstamp',
|
||||
'crdate' => 'crdate',
|
||||
'delete' => 'deleted',
|
||||
'sortby' => 'sorting',
|
||||
'hideTable' => true,
|
||||
'versioningWS' => true,
|
||||
'languageField' => 'sys_language_uid',
|
||||
'transOrigPointerField' => 'l10n_parent',
|
||||
'transOrigDiffSourceField' => 'l10n_diffsource',
|
||||
'enablecolumns' => [
|
||||
'disabled' => 'hidden',
|
||||
],
|
||||
'iconfile' => 'EXT:evo_megamenu_json/Resources/Public/Icons/entry.svg',
|
||||
'searchFields' => 'title',
|
||||
],
|
||||
'types' => [
|
||||
'1' => [
|
||||
'showitem' => '
|
||||
--div--;' . $ll . 'tab.general,
|
||||
hidden, title, link, layout,
|
||||
--div--;' . $ll . 'tab.columns,
|
||||
menu_columns,
|
||||
--div--;' . $ll . 'tab.teasers,
|
||||
menu_teasers,
|
||||
--div--;' . $ll . 'tab.featured,
|
||||
featured_enable, featured_kicker, featured_title, featured_text, featured_link, featured_image,
|
||||
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:language,
|
||||
sys_language_uid, l10n_parent
|
||||
',
|
||||
],
|
||||
],
|
||||
'columns' => [
|
||||
'sys_language_uid' => [
|
||||
'exclude' => true,
|
||||
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.language',
|
||||
'config' => ['type' => 'language'],
|
||||
],
|
||||
'l10n_parent' => [
|
||||
'displayCond' => 'FIELD:sys_language_uid:>:0',
|
||||
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.l18n_parent',
|
||||
'config' => [
|
||||
'type' => 'select',
|
||||
'renderType' => 'selectSingle',
|
||||
'default' => 0,
|
||||
'items' => [['label' => '', 'value' => 0]],
|
||||
'foreign_table' => 'tx_evomegamenujson_entry',
|
||||
'foreign_table_where' => 'AND {#tx_evomegamenujson_entry}.{#pid}=###CURRENT_PID### AND {#tx_evomegamenujson_entry}.{#sys_language_uid} IN (-1,0)',
|
||||
],
|
||||
],
|
||||
'l10n_diffsource' => ['config' => ['type' => 'passthrough']],
|
||||
'hidden' => [
|
||||
'exclude' => true,
|
||||
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.hidden',
|
||||
'config' => ['type' => 'check', 'renderType' => 'checkboxToggle', 'default' => 0],
|
||||
],
|
||||
'parentid' => ['config' => ['type' => 'passthrough']],
|
||||
'parenttable' => ['config' => ['type' => 'passthrough']],
|
||||
|
||||
'title' => [
|
||||
'label' => $ll . 'title',
|
||||
'description' => $ll . 'title.description',
|
||||
'config' => ['type' => 'input', 'size' => 40, 'eval' => 'trim', 'required' => true],
|
||||
],
|
||||
'link' => [
|
||||
'label' => $ll . 'link',
|
||||
'description' => $ll . 'link.description',
|
||||
'config' => [
|
||||
'type' => 'link',
|
||||
'allowedTypes' => ['page', 'url', 'record'],
|
||||
'size' => 40,
|
||||
],
|
||||
],
|
||||
'layout' => [
|
||||
'label' => $ll . 'layout',
|
||||
'description' => $ll . 'layout.description',
|
||||
'config' => [
|
||||
'type' => 'select',
|
||||
'renderType' => 'selectSingle',
|
||||
'default' => 'columns',
|
||||
'items' => [
|
||||
['label' => $ll . 'layout.columns', 'value' => 'columns'],
|
||||
['label' => $ll . 'layout.teasers', 'value' => 'teasers'],
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'menu_columns' => [
|
||||
'label' => $ll . 'menu_columns',
|
||||
'description' => $ll . 'menu_columns.description',
|
||||
'config' => [
|
||||
'type' => 'inline',
|
||||
'foreign_table' => 'tx_evomegamenujson_column',
|
||||
'foreign_field' => 'parentid',
|
||||
'foreign_sortby' => 'sorting',
|
||||
'maxitems' => 12,
|
||||
'appearance' => [
|
||||
'collapseAll' => true,
|
||||
'expandSingle' => true,
|
||||
'useSortable' => true,
|
||||
'showSynchronizationLink' => false,
|
||||
'showAllLocalizationLink' => false,
|
||||
'showPossibleLocalizationRecords' => false,
|
||||
'newRecordLinkAddTitle' => true,
|
||||
'levelLinksPosition' => 'top',
|
||||
],
|
||||
],
|
||||
],
|
||||
'menu_teasers' => [
|
||||
'displayCond' => 'FIELD:layout:=:teasers',
|
||||
'label' => $ll . 'menu_teasers',
|
||||
'description' => $ll . 'menu_teasers.description',
|
||||
'config' => [
|
||||
'type' => 'inline',
|
||||
'foreign_table' => 'tx_evomegamenujson_teaser',
|
||||
'foreign_field' => 'parentid',
|
||||
'foreign_sortby' => 'sorting',
|
||||
'maxitems' => 8,
|
||||
'appearance' => [
|
||||
'collapseAll' => true,
|
||||
'expandSingle' => true,
|
||||
'useSortable' => true,
|
||||
'newRecordLinkAddTitle' => true,
|
||||
'levelLinksPosition' => 'top',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'featured_enable' => [
|
||||
'label' => $ll . 'featured_enable',
|
||||
'description' => $ll . 'featured_enable.description',
|
||||
'config' => ['type' => 'check', 'renderType' => 'checkboxToggle', 'default' => 0],
|
||||
],
|
||||
'featured_kicker' => [
|
||||
'displayCond' => 'FIELD:featured_enable:=:1',
|
||||
'label' => $ll . 'featured_kicker',
|
||||
'config' => ['type' => 'input', 'size' => 30, 'eval' => 'trim', 'max' => 60],
|
||||
],
|
||||
'featured_title' => [
|
||||
'displayCond' => 'FIELD:featured_enable:=:1',
|
||||
'label' => $ll . 'featured_title',
|
||||
'config' => ['type' => 'input', 'size' => 40, 'eval' => 'trim'],
|
||||
],
|
||||
'featured_text' => [
|
||||
'displayCond' => 'FIELD:featured_enable:=:1',
|
||||
'label' => $ll . 'featured_text',
|
||||
'config' => ['type' => 'text', 'cols' => 40, 'rows' => 3],
|
||||
],
|
||||
'featured_link' => [
|
||||
'displayCond' => 'FIELD:featured_enable:=:1',
|
||||
'label' => $ll . 'featured_link',
|
||||
'config' => ['type' => 'link', 'allowedTypes' => ['page', 'url', 'record', 'file'], 'size' => 40],
|
||||
],
|
||||
'featured_image' => [
|
||||
'displayCond' => 'FIELD:featured_enable:=:1',
|
||||
'label' => $ll . 'featured_image',
|
||||
'config' => [
|
||||
'type' => 'file',
|
||||
'maxitems' => 1,
|
||||
'allowed' => 'common-image-types',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user