mollie / magento2-analytics
Mollie Payment Analytics Module for Magento 2
Installs: 5 717
Dependents: 0
Suggesters: 1
Security: 0
Stars: 0
Watchers: 5
Forks: 2
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.4
- mollie/magento2: >=2.26.0
README
Mollie Analytics Addon for Magento 2.3.x and higher
This plugin is an addon on the Mollie Magento 2 payment module and can't be installed seperatly without the Mollie Payment plugin installed.
Installation
We recommend that you make a backup of your webshop files, as well as the database.
Step-by-step to install the Magento® 2 extension through Composer:
- Make sure the Mollie Magento 2 payment module is installed.
- Connect to your server running Magento® 2 using SSH or other method (make sure you have access to the command line).
- Locate your Magento® 2 project root.
- Install the Magento® 2 extension through composer and wait till it's completed:
composer require mollie/magento2-analytics
- Once completed run the Magento® module enable command:
bin/magento module:enable Mollie_Analytics
- After that run the Magento® upgrade and clean the caches:
php bin/magento setup:upgrade
php bin/magento cache:flush
- If Magento® is running in production mode you also need to redeploy the static content:
php bin/magento setup:static-content:deploy
Usage
When enabled, this module will extract the client ID from the Google Analytics cookie and save it. When the user finishes the transaction this will get appended to the success URL: &clientId=<value>
. You can retrieve this by using javascript:
const urlParams = new URLSearchParams(window.location.search); const clientId = urlParams.get('clientId'); console.log('Receive client id:', clientId);
Another way to retrieve the ID is by using the repository:
class DoSomeStuff { /** * @var \Mollie\Analytics\Api\AnalyticsRepositoryInterface */ private $repository; public function __construct( \Mollie\Analytics\Api\AnalyticsRepositoryInterface $repository ) { $this->repository = $repository; } public function getClientId(int $cartId): ?string { return $this->repository->getByCartId($cartId)->getClientId(); } }
License
BSD (Berkeley Software Distribution) License. Copyright (c) 2011-2021, Mollie B.V.