Skip to content

Commit

Permalink
Merge pull request #2 from garvinhicking/patch-1
Browse files Browse the repository at this point in the history
[BUGFIX] Fixes TCA configuration for TYPO3v7+ compatibility
  • Loading branch information
franzholz authored Oct 15, 2019
2 parents 5fe714f + 986b9da commit a9281b1
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions Configuration/TCA/Overrides/tt_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@
'type' => 'script',
'title' => 'LLL:EXT:' . JFMULTICONTENT_EXT . '/locallang_db.xml:tt_content.tx_jfmulticontent.contents_add',
'icon' => 'add.gif',
'script' => 'wizard_add.php',
'module' => array(
'name' => 'wizard_add',
),
'params' => array(
'table' => 'tt_content',
'pid' => '###STORAGE_PID###',
Expand All @@ -120,7 +122,9 @@
'type' => 'script',
'title' => 'List',
'icon' => 'list.gif',
'script' => 'wizard_list.php',
'module' => array(
'name' => 'wizard_list',
),
'params' => array(
'table' => 'tt_content',
'pid' => '###STORAGE_PID###',
Expand All @@ -130,7 +134,9 @@
'type' => 'popup',
'title' => 'LLL:EXT:' . JFMULTICONTENT_EXT . '/locallang_db.xml:tt_content.tx_jfmulticontent.contents_edit',
'icon' => 'edit2.gif',
'script' => 'wizard_edit.php',
'module' => array(
'name' => 'wizard_edit',
),
'popup_onlyOpenIfSelected' => 1,
'JSopenParams' => 'height=600,width=800,status=0,menubar=0,scrollbars=1',
),
Expand All @@ -156,7 +162,9 @@
'type' => 'script',
'title' => 'LLL:EXT:' . JFMULTICONTENT_EXT . '/locallang_db.xml:tt_content.tx_jfmulticontent.contents_add',
'icon' => 'add.gif',
'script' => 'wizard_add.php',
'module' => array(
'name' => 'wizard_add',
),
'params' => array(
'table' => 'tt_content',
'pid' => '###STORAGE_PID###',
Expand All @@ -167,7 +175,9 @@
'type' => 'script',
'title' => 'List',
'icon' => 'list.gif',
'script' => 'wizard_list.php',
'module' => array(
'name' => 'wizard_list',
),
'params' => array(
'table' => 'tt_content',
'pid' => '###STORAGE_PID###',
Expand All @@ -177,7 +187,9 @@
'type' => 'popup',
'title' => 'LLL:EXT:' . JFMULTICONTENT_EXT . '/locallang_db.xml:tt_content.tx_jfmulticontent.contents_edit',
'icon' => 'edit2.gif',
'script' => 'wizard_edit.php',
'module' => array(
'name' => 'wizard_edit',
),
'popup_onlyOpenIfSelected' => 1,
'JSopenParams' => 'height=600,width=800,status=0,menubar=0,scrollbars=1',
),
Expand Down

0 comments on commit a9281b1

Please sign in to comment.