Skip to content

Commit

Permalink
Release version 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Achim Strohm committed Feb 8, 2024
1 parent 6002046 commit 85e59d1
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions Configuration/Backend/Modules.php
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'
],
],
],
];
9 changes: 9 additions & 0 deletions Configuration/Services.yaml
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/*'
35 changes: 35 additions & 0 deletions Resources/Private/Backend/Layouts-T3V10/Default.html
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>

0 comments on commit 85e59d1

Please sign in to comment.