diff --git a/public/typo3conf/ext/ep_theme/Configuration/TCA/Overrides/pages.php b/public/typo3conf/ext/ep_theme/Configuration/TCA/Overrides/pages.php index 8698471c..557274a0 100644 --- a/public/typo3conf/ext/ep_theme/Configuration/TCA/Overrides/pages.php +++ b/public/typo3conf/ext/ep_theme/Configuration/TCA/Overrides/pages.php @@ -56,6 +56,13 @@ call_user_func(function() { 'type' => 'check' ] ], + 'tx_eptheme_new_tab' => [ + 'exclude' => 0, + 'label' => 'Seite in neuem Tab/Fenster öffnen', + 'config' => [ + 'type' => 'check' + ] + ], 'tx_eptheme_bodyclass' => [ 'exclude' => 0, 'label' => 'CSS Klasse(n) für Body Tag', @@ -111,7 +118,7 @@ call_user_func(function() { 'pages', '--div--;Kontext, tx_eptheme_context_pacode,tx_eptheme_context_country,tx_eptheme_context_region, - tx_eptheme_hide_searchbar,tx_eptheme_bodyclass, + tx_eptheme_hide_searchbar,tx_eptheme_new_tab,tx_eptheme_bodyclass, --div--;Slider, tx_eptheme_slides, --div--;Badge, diff --git a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Topnav.html b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Topnav.html index a5bfcd1a..d1f8dc88 100644 --- a/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Topnav.html +++ b/public/typo3conf/ext/ep_theme/Resources/Private/Partials/Topnav.html @@ -14,7 +14,7 @@
  • {menuitem.title -> ep:topnavItem()}
  • diff --git a/public/typo3conf/ext/ep_theme/ext_tables.sql b/public/typo3conf/ext/ep_theme/ext_tables.sql index cfb1abd8..e8f28969 100644 --- a/public/typo3conf/ext/ep_theme/ext_tables.sql +++ b/public/typo3conf/ext/ep_theme/ext_tables.sql @@ -149,6 +149,7 @@ CREATE TABLE pages tx_eptheme_context_concept int(11) unsigned DEFAULT '0', tx_eptheme_context_product int(11) unsigned DEFAULT '0', tx_eptheme_hide_searchbar tinyint(4) unsigned DEFAULT '0' NOT NULL, + tx_eptheme_new_tab tinyint(4) unsigned DEFAULT '0' NOT NULL, tx_eptheme_bodyclass varchar(255) DEFAULT '' NOT NULL, tx_eptheme_slides int(11) unsigned DEFAULT '0', tx_eptheme_badge int(11) unsigned DEFAULT '0'