forked from websedit/we_cookie_consent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Achim Strohm
committed
Feb 8, 2024
1 parent
6002046
commit 85e59d1
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
// Submodulename mod1 | ||
use Websedit\WeCookieConsent\Controller\BackendController; | ||
|
||
return [ | ||
'web_wecookieconsentmod1' => [ | ||
'parent' => 'web', | ||
//'position' => ['after' => 'web_info'], | ||
'access' => 'user', | ||
'workspaces' => 'live', | ||
'iconIdentifier' => 'we_cookie_consent-mod-mod1', | ||
'path' => '/module/web/WeCookieConsentMod1', | ||
'labels' => 'LLL:EXT:we_cookie_consent/Resources/Private/Language/locallang_mod1.xlf', | ||
'extensionName' => 'WeCookieConsent', | ||
'controllerActions' => [ | ||
BackendController::class => [ | ||
'gtmWizard', | ||
'jsonDownload' | ||
], | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
services: | ||
_defaults: | ||
autowire: true | ||
autoconfigure: true | ||
public: true | ||
|
||
Websedit\WeCookieConsent\: | ||
resource: '../Classes/*' | ||
exclude: '../Classes/Domain/Model/*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true"> | ||
<f:be.container> | ||
<div class="typo3-fullDoc"> | ||
<div id="typo3-docheader"> | ||
<div class="typo3-docheader-functions"> | ||
<div class="left"> | ||
<f:be.buttons.csh/> | ||
<f:be.menus.actionMenu> | ||
<f:be.menus.actionMenuItem label="GTM Exporter" controller="" action="gtmWizard"/> | ||
</f:be.menus.actionMenu> | ||
</div> | ||
<div class="right"> | ||
<f:be.pagePath/> | ||
<f:be.pageInfo/> | ||
</div> | ||
</div> | ||
<div class="typo3-docheader-buttons"> | ||
<div class="left"> | ||
|
||
</div> | ||
<div class="right"> | ||
<f:be.buttons.shortcut/> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
<div id="typo3-docbody"> | ||
<div id="typo3-inner-docbody"> | ||
<f:flashMessages/> | ||
<f:render section="Content"/> | ||
</div> | ||
</div> | ||
</div> | ||
</f:be.container> | ||
</html> |