This repository has been archived by the owner on Aug 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
ext_tables.php
71 lines (62 loc) · 2.39 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
<?php
defined('TYPO3_MODE') or exit;
// ############################################################################
// Backend
// ############################################################################
if (TYPO3_MODE == 'BE') {
// ####################################################
// Module category "WEB"
// ####################################################
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'Metaseo.' . $_EXTKEY,
'web',
'pageseo',
'', # Position
array('BackendPageSeo' => 'main,metadata,geo,searchengines,url,pagetitle,pagetitlesim'), # Controller array
array(
'access' => 'user,group',
'icon' => 'EXT:' . $_EXTKEY . '/Resources/Public/Backend/Icons/ModuleSeo.svg',
'labels' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/ModuleSeo/locallang.xlf',
)
);
// ####################################################
// Module category "SEO"
// ####################################################
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
$_EXTKEY,
'metaseo',
'',
'',
array(),
array(
'access' => 'user,group',
'icon' => '',
'iconIdentifier' => 'module-seo',
'labels' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/ModuleMain/locallang.xlf',
)
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'Metaseo.' . $_EXTKEY,
'metaseo',
'controlcenter',
'',
array('BackendControlCenter' => 'main'),
array(
'access' => 'user,group',
'icon' => 'EXT:' . $_EXTKEY . '/Resources/Public/Backend/Icons/ModuleControlCenter.svg',
'labels' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/ModuleControlCenter/locallang.xlf',
)
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'Metaseo.' . $_EXTKEY,
'metaseo',
'sitemap',
'after:controlcenter',
array('BackendSitemap' => 'main,sitemap'),
array(
'access' => 'user,group',
'icon' => 'EXT:' . $_EXTKEY . '/Resources/Public/Backend/Icons/ModuleSitemap.svg',
'labels' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/ModuleSitemap/locallang.xlf',
)
);
}