2021-07-17 23:22:23 +02:00
|
|
|
<?php
|
2023-06-26 17:41:00 +02:00
|
|
|
|
2023-11-02 13:36:44 +01:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Component\d3GtmBasketComponentExtension;
|
2023-11-07 10:59:39 +01:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\ArticleDetailsController;
|
2023-11-02 13:36:44 +01:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\ArticleListController_AddToCartHelpMethods;
|
2023-08-17 08:51:02 +02:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\BasketController;
|
2023-11-07 15:23:40 +01:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\d3GtmAccountNoticeListController;
|
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\d3GtmAccountRecommlistController;
|
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\d3GtmAccountWishlistController;
|
2023-12-18 11:23:43 +01:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\d3GtmStartController;
|
2023-08-17 09:20:58 +02:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Controller\ThankYouController;
|
2023-06-26 17:41:00 +02:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Model\Basket as Basket;
|
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Model\Category as Category;
|
2023-08-17 10:59:57 +02:00
|
|
|
use D3\GoogleAnalytics4\Modules\Application\Model\Manufacturer as Manufacturer;
|
2023-01-19 15:31:56 +01:00
|
|
|
use D3\GoogleAnalytics4\Modules\Core\ViewConfig;
|
2023-11-02 13:36:44 +01:00
|
|
|
use OxidEsales\Eshop\Application\Component\BasketComponent as OEBasketComponent;
|
2023-11-07 15:23:40 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\AccountNoticeListController as OEAccountNoticeListController;
|
|
|
|
use OxidEsales\Eshop\Application\Controller\AccountRecommlistController as OEAccountRecommlistController;
|
|
|
|
use OxidEsales\Eshop\Application\Controller\AccountWishlistController as OEAccountWishlistController;
|
2023-11-07 10:59:39 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\ArticleDetailsController as OEArticleDetailsController;
|
2023-11-02 13:36:44 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\ArticleListController as OEArticleListController;
|
2023-08-17 08:51:02 +02:00
|
|
|
use OxidEsales\Eshop\Application\Controller\BasketController as OEBasketController;
|
2023-12-18 11:23:43 +01:00
|
|
|
use OxidEsales\Eshop\Application\Controller\StartController as OEStartController;
|
2023-08-17 09:20:58 +02:00
|
|
|
use OxidEsales\Eshop\Application\Controller\ThankYouController as OEThankYouController;
|
2023-06-26 17:41:00 +02:00
|
|
|
use OxidEsales\Eshop\Application\Model\Basket as OEBasket;
|
|
|
|
use OxidEsales\Eshop\Application\Model\Category as OECategory;
|
2023-08-15 11:59:27 +02:00
|
|
|
use OxidEsales\Eshop\Application\Model\Manufacturer as OEManufacturer;
|
2023-01-19 15:31:56 +01:00
|
|
|
use OxidEsales\Eshop\Core\ViewConfig as OEViewConfig;
|
2021-07-17 23:22:23 +02:00
|
|
|
|
|
|
|
$sMetadataVersion = '2.1';
|
2022-06-09 20:41:59 +02:00
|
|
|
$aModule = [
|
2023-01-19 15:31:56 +01:00
|
|
|
'id' => 'd3googleanalytics4',
|
|
|
|
'title' => 'Google Analytics 4',
|
2023-01-20 09:33:36 +01:00
|
|
|
'description' => "Dieses Modul bietet die Möglichkeit in Ihrem OXID eShop (6.x) die neue 'Property'
|
|
|
|
Google Analytics 4 (GA4) von Google zu integrieren.<br>
|
|
|
|
Hierfür stehen Ihnen verschiedene 'templates' zur verfügung,
|
|
|
|
mit denen Sie bestimmte Events tracken können.<br>
|
2023-01-20 11:04:22 +01:00
|
|
|
Beispiele dafür sind: view_item, add_to_basket, purchase, ...<br><br>
|
|
|
|
Die Integration und Verbindung zu Google wird mithilfe des gtag (Google Tag Manager) realisiert.<br><br>
|
|
|
|
Weiterführende Informationen: https://developers.google.com/analytics/devguides/collection/ga4<br>
|
|
|
|
<hr>
|
|
|
|
Die Entwicklung basiert auf einem Fork von Marat Bedoev - <a href='https://github.com/vanilla-thunder/oxid-module-gtm'>Github-Link</a>
|
2023-01-20 09:33:36 +01:00
|
|
|
",
|
2022-06-09 20:41:59 +02:00
|
|
|
'thumbnail' => 'thumbnail.png',
|
2023-09-13 16:02:49 +02:00
|
|
|
'version' => '1.13.0',
|
2023-01-19 15:31:56 +01:00
|
|
|
'author' => 'Data Development (Inh.: Thomas Dartsch)',
|
|
|
|
'email' => 'support@shopmodule.com',
|
|
|
|
'url' => 'https://www.oxidmodule.com/',
|
2022-06-09 20:41:59 +02:00
|
|
|
'extend' => [
|
2023-11-07 15:23:40 +01:00
|
|
|
OEViewConfig::class => ViewConfig::class,
|
|
|
|
OECategory::class => Category::class,
|
|
|
|
OEBasket::class => Basket::class,
|
|
|
|
OEBasketController::class => BasketController::class,
|
|
|
|
OEManufacturer::class => Manufacturer::class,
|
|
|
|
OEThankYouController::class => ThankYouController::class,
|
|
|
|
OEArticleListController::class => ArticleListController_AddToCartHelpMethods::class,
|
|
|
|
OEBasketComponent::class => d3GtmBasketComponentExtension::class,
|
|
|
|
OEArticleDetailsController::class => ArticleDetailsController::class,
|
|
|
|
OEAccountNoticeListController::class => d3GtmAccountNoticeListController::class,
|
|
|
|
OEAccountRecommlistController::class => d3GtmAccountRecommlistController::class,
|
2023-12-18 11:23:43 +01:00
|
|
|
OEAccountWishlistController::class => d3GtmAccountWishlistController::class,
|
|
|
|
OEStartController::class => d3GtmStartController::class
|
2023-11-07 10:59:39 +01:00
|
|
|
],
|
|
|
|
'templates' => [
|
2023-11-07 15:23:40 +01:00
|
|
|
// own callable files
|
|
|
|
'addtocart.tpl' => 'd3/googleanalytics4/Application/views/ga4/add_to_cart.tpl',
|
|
|
|
|
|
|
|
// complete overwritten file of OXID-Originals
|
|
|
|
// the path of the template-name is the original path to the file in OXID-context from tpl/->
|
|
|
|
'page/account/d3gtmnoticelist.tpl' => 'd3/googleanalytics4/Application/views/tpl/page/account/d3gtmnoticelist.tpl',
|
|
|
|
'page/account/d3gtmrecommendationlist.tpl' => 'd3/googleanalytics4/Application/views/tpl/page/account/d3gtmrecommendationlist.tpl',
|
|
|
|
'page/account/d3gtmwishlist.tpl' => 'd3/googleanalytics4/Application/views/tpl/page/account/d3gtmwishlist.tpl',
|
2021-07-17 23:22:23 +02:00
|
|
|
],
|
2022-06-09 20:41:59 +02:00
|
|
|
'blocks' => [
|
2021-07-17 23:22:23 +02:00
|
|
|
// tag manager js
|
|
|
|
[
|
|
|
|
'template' => 'layout/base.tpl',
|
2022-06-09 20:41:59 +02:00
|
|
|
'block' => 'head_meta_robots',
|
2023-05-24 11:09:36 +02:00
|
|
|
'file' => '/Application/views/blocks/_gtm_js.tpl',
|
|
|
|
'position' => 150
|
2021-07-17 23:22:23 +02:00
|
|
|
],
|
|
|
|
// tag manager nojs
|
|
|
|
[
|
|
|
|
'template' => 'layout/base.tpl',
|
2022-06-09 20:41:59 +02:00
|
|
|
'block' => 'theme_svg_icons',
|
|
|
|
'file' => '/Application/views/blocks/_gtm_nojs.tpl'
|
2021-07-17 23:22:23 +02:00
|
|
|
],
|
|
|
|
// details
|
|
|
|
[
|
|
|
|
'template' => 'page/details/inc/productmain.tpl',
|
2022-06-09 20:41:59 +02:00
|
|
|
'block' => 'details_productmain_title',
|
2023-05-23 10:49:05 +02:00
|
|
|
'file' => '/Application/views/blocks/view_item.tpl',
|
2023-01-16 15:25:59 +01:00
|
|
|
'position' => 150
|
2021-07-17 23:22:23 +02:00
|
|
|
],
|
|
|
|
// checkout
|
|
|
|
[
|
|
|
|
'template' => 'page/checkout/basket.tpl',
|
2022-06-09 20:41:59 +02:00
|
|
|
'block' => 'checkout_basket_main',
|
2023-06-26 17:41:00 +02:00
|
|
|
'file' => '/Application/views/blocks/view_cart.tpl'
|
2021-07-17 23:22:23 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'template' => 'page/checkout/thankyou.tpl',
|
2022-06-09 20:41:59 +02:00
|
|
|
'block' => 'checkout_thankyou_main',
|
2023-06-26 17:41:00 +02:00
|
|
|
'file' => '/Application/views/blocks/purchase.tpl'
|
2023-01-10 14:22:49 +01:00
|
|
|
],
|
|
|
|
// Lists
|
|
|
|
// view_item_list
|
|
|
|
[
|
2023-05-30 16:41:59 +02:00
|
|
|
'template' => 'page/list/list.tpl',
|
|
|
|
'block' => 'page_list_productlist',
|
2023-01-26 15:31:45 +01:00
|
|
|
'file' => '/Application/views/ga4/view_item_list.tpl',
|
|
|
|
'position' => 150
|
2023-01-10 15:49:54 +01:00
|
|
|
],
|
|
|
|
// view_search_result
|
|
|
|
[
|
|
|
|
'template' => 'page/search/search.tpl',
|
|
|
|
'block' => 'search_results',
|
2023-06-26 17:41:00 +02:00
|
|
|
'file' => '/Application/views/ga4/view_search_result.tpl',
|
2023-01-26 15:31:45 +01:00
|
|
|
'position' => 150
|
2023-01-11 14:43:13 +01:00
|
|
|
],
|
|
|
|
// add_to_cart
|
|
|
|
[
|
|
|
|
'template' => 'page/details/inc/productmain.tpl',
|
|
|
|
'block' => 'details_productmain_tobasket',
|
2023-11-07 10:59:39 +01:00
|
|
|
'file' => '/Application/views/blocks/details_productmain_tobasket.tpl',
|
2023-01-26 09:09:09 +01:00
|
|
|
'position' => 150
|
2023-08-17 08:51:02 +02:00
|
|
|
],
|
2023-11-02 13:36:44 +01:00
|
|
|
[
|
|
|
|
'template' => 'page/list/list.tpl',
|
|
|
|
'block' => 'page_list_listbody',
|
2023-11-07 10:59:39 +01:00
|
|
|
'file' => '/Application/views/blocks/page_list_listbody.tpl',
|
2023-11-02 13:36:44 +01:00
|
|
|
'position' => 150
|
|
|
|
],
|
2023-12-18 11:23:43 +01:00
|
|
|
[
|
|
|
|
'template' => 'page/shop/start.tpl',
|
|
|
|
'block' => 'start_welcome_text',
|
|
|
|
'file' => '/Application/views/blocks/start_welcome_text.tpl',
|
|
|
|
'position' => 150
|
|
|
|
],
|
2023-08-17 08:51:02 +02:00
|
|
|
// remove_from_cart
|
|
|
|
[
|
|
|
|
'template' => 'page/checkout/basket.tpl',
|
|
|
|
'block' => 'checkout_basket_main',
|
|
|
|
'file' => '/Application/views/ga4/remove_from_cart.tpl',
|
|
|
|
'position' => 150
|
2021-07-17 23:22:23 +02:00
|
|
|
]
|
|
|
|
],
|
2022-06-09 20:41:59 +02:00
|
|
|
'settings' => [
|
2021-07-17 23:22:23 +02:00
|
|
|
[
|
2023-01-27 08:59:06 +01:00
|
|
|
'group' => 'd3_gtm_settings',
|
|
|
|
'name' => 'd3_gtm_sContainerID',
|
2022-06-09 20:41:59 +02:00
|
|
|
'type' => 'str',
|
|
|
|
'value' => 'GTM-',
|
2021-07-17 23:22:23 +02:00
|
|
|
'position' => 0
|
|
|
|
],
|
|
|
|
[
|
2023-01-27 08:59:06 +01:00
|
|
|
'group' => 'd3_gtm_settings',
|
2023-01-27 09:07:22 +01:00
|
|
|
'name' => 'd3_gtm_blGA4enab',
|
2022-06-09 20:41:59 +02:00
|
|
|
'type' => 'bool',
|
|
|
|
'value' => true,
|
2021-07-17 23:22:23 +02:00
|
|
|
'position' => 1
|
|
|
|
],
|
2022-06-09 20:41:59 +02:00
|
|
|
[
|
2023-01-27 08:59:06 +01:00
|
|
|
'group' => 'd3_gtm_settings',
|
|
|
|
'name' => 'd3_gtm_blEnableDebug',
|
2022-06-09 20:41:59 +02:00
|
|
|
'type' => 'bool',
|
|
|
|
'value' => false,
|
|
|
|
'position' => 999
|
2023-01-17 14:42:17 +01:00
|
|
|
],
|
|
|
|
[
|
2023-01-27 08:59:06 +01:00
|
|
|
'group' => 'd3_gtm_settings_cookiemanager',
|
|
|
|
'name' => 'd3_gtm_settings_hasOwnCookieManager',
|
2023-01-17 14:42:17 +01:00
|
|
|
'type' => 'bool',
|
|
|
|
'value' => false,
|
|
|
|
'position' => 999
|
|
|
|
],
|
|
|
|
[
|
2023-01-27 08:59:06 +01:00
|
|
|
'group' => 'd3_gtm_settings_cookiemanager',
|
2023-09-13 15:09:27 +02:00
|
|
|
'name' => 'd3_gtm_settings_controlParameter',
|
2023-01-17 14:42:17 +01:00
|
|
|
'type' => 'str',
|
2023-09-13 15:13:35 +02:00
|
|
|
'value' => '',
|
2023-01-17 14:42:17 +01:00
|
|
|
'position' => 999
|
|
|
|
],
|
2023-05-15 15:06:25 +02:00
|
|
|
[
|
|
|
|
'group' => 'd3_gtm_settings_cookiemanager',
|
2023-05-23 14:33:35 +02:00
|
|
|
'name' => 'd3_gtm_settings_HAS_STD_MANAGER',
|
2023-05-15 15:06:25 +02:00
|
|
|
'type' => 'select',
|
|
|
|
'value' => 'none',
|
2023-09-07 15:08:06 +02:00
|
|
|
'constraints' => 'NONE|CONSENTMANAGER|USERCENTRICS|COOKIEFIRST|COOKIEBOT',
|
2023-05-15 15:06:25 +02:00
|
|
|
],
|
2021-07-17 23:22:23 +02:00
|
|
|
]
|
|
|
|
];
|