kiwicommerce / magento2-admin-activity

Magento 2 - Admin Activity by KiwiCommerce
https://kiwicommerce.co.uk/extensions/magento2-admin-activity/
93 stars 76 forks source link

I tried to install the latest verison in my magento 2.4.7 and i am getting the issue #23

Open ankushx opened 1 month ago

ankushx commented 1 month ago

Title

Preconditions

Steps to reproduce

Expected result

  1. [Screenshots, logs or description]

Actual result

  1. [Screenshots, logs or description]
paugnu commented 1 month ago

Hi @ankushx,

This is due to the php version. I'll need to update the module to make it compatible with the last version of php.

MihaiTudorRO commented 5 days ago

quick fix: Not fully tested:

on vendor/kiwicommerce/module-admin-activity/Model/Processor.php

Change line: $activity->setModule($this->helper->getActivityModuleName($this->eventConfig['module'])); to $activity->setModule($this->helper->getActivityModuleName($this->eventConfig['module'] ?? ''));

Change line: $activity->setActionType($this->eventConfig['action']); to $activity->setActionType($this->eventConfig['action'] ?? '');