This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
ext_tables.php
131 lines (122 loc) · 6.26 KB
/
ext_tables.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/***************************************************************
* Copyright notice
*
* (c) 2009-2011 by n@work GmbH and networkteam GmbH
*
* All rights reserved
*
* This script is part of the Caretaker project. The Caretaker project
* is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
/**
* This is a file of the caretaker project.
* http://forge.typo3.org/projects/show/extension-caretaker
*
* Project sponsored by:
* n@work GmbH - http://www.work.de
* networkteam GmbH - http://www.networkteam.com/
*
* $Id$
*/
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
// overview
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($_EXTKEY . '_pi_overview', 'FILE:EXT:' . $_EXTKEY . '/pi_overview/flexform_ds.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array(
'LLL:EXT:caretaker/Resources/Private/Language/locallang_db.xlf:tt_content.list_type_pi_overview',
$_EXTKEY . '_pi_overview',
), 'list_type');
if (TYPO3_MODE == 'BE') {
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_caretaker_pi_overview_wizicon'] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'pi_overview/class.tx_caretaker_pi_overview_wizicon.php';
}
// singleview
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($_EXTKEY . '_pi_singleview', 'FILE:EXT:' . $_EXTKEY . '/pi_singleview/flexform_ds.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array(
'LLL:EXT:caretaker/Resources/Private/Language/locallang_db.xlf:tt_content.list_type_pi_singleview',
$_EXTKEY . '_pi_singleview',
), 'list_type');
if (TYPO3_MODE == 'BE') {
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_caretaker_pi_singleview_wizicon'] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'pi_singleview/class.tx_caretaker_pi_singleview_wizicon.php';
}
// graphreport
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($_EXTKEY . '_pi_graphreport', 'FILE:EXT:' . $_EXTKEY . '/pi_graphreport/flexform_ds.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array(
'LLL:EXT:caretaker/Resources/Private/Language/locallang_db.xlf:tt_content.list_type_pi_graphreport',
$_EXTKEY . '_pi_graphreport',
), 'list_type');
if (TYPO3_MODE == 'BE') {
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_caretaker_pi_graphreport_wizicon'] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'pi_graphreport/class.tx_caretaker_pi_graphreport_wizicon.php';
}
// abstract
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPiFlexFormValue($_EXTKEY . '_pi_abstract', 'FILE:EXT:' . $_EXTKEY . '/pi_abstract/flexform_ds.xml');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(array(
'LLL:EXT:caretaker/Resources/Private/Language/locallang_db.xlf:tt_content.list_type_pi_abstract',
$_EXTKEY . '_pi_abstract',
), 'list_type');
if (TYPO3_MODE == 'BE') {
$TBE_MODULES_EXT['xMOD_db_new_content_el']['addElClasses']['tx_caretaker_pi_abstract_wizicon'] = \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'pi_abstract/class.tx_caretaker_pi_abstract_wizicon.php';
}
// register Extension TS templates
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'res/typoscript/plugin', 'Caretaker Plugin Template');
// register Extension TS templates
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'res/typoscript/page', 'Caretaker Page Template');
// Register Backend Modules
if (TYPO3_MODE == 'BE') {
if (version_compare(TYPO3_version, '8.0', '<')) {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule('txcaretakerNav', '', '', \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'mod_nav/');
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule('txcaretakerNav', 'txcaretakerOverview', '', \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath($_EXTKEY) . 'mod_overview/');
} else {
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
'txcaretakerNav', '', '', '',
array(
'name' => 'txcaretakerNav',
'access' => 'user,group',
'labels' => 'LLL:EXT:caretaker/mod_nav/locallang_mod.xml',
'routeTarget' => \Caretaker\Caretaker\Module\Navigation::class . '::mainAction',
)
);
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addModule(
'txcaretakerNav', 'txcaretakerOverview', '', '',
array(
'name' => 'txcaretakerNav_txcaretakerOverview',
'access' => 'user,group',
'icon' => 'EXT:caretaker/mod_overview/moduleicon.svg',
'labels' => 'LLL:EXT:caretaker/mod_overview/locallang_mod.xml',
'routeTarget' => \Caretaker\Caretaker\Module\Overview::class . '::mainAction',
'navigationFrameModule' => 'txcaretakerNav',
)
);
}
$caretaker_modconf = null;
if (isset($TBE_MODULES['file'])) {
$caretaker_modconf = $TBE_MODULES['txcaretakerNav'];
unset($TBE_MODULES['txcaretakerNav']);
}
// move module after 'file'
$temp_TBE_MODULES = array();
foreach ($TBE_MODULES as $key => $value) {
if ($key == 'file') {
$temp_TBE_MODULES[$key] = $value;
$temp_TBE_MODULES['txcaretakerNav'] = $caretaker_modconf;
} else {
$temp_TBE_MODULES[$key] = $value;
}
}
$TBE_MODULES = $temp_TBE_MODULES;
}
require(\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('caretaker') . '/ext_conf_include.php');