开发者

Magento - how to write in the admin actions log?

开发者 https://www.devze.com 2023-02-10 06:07 出处:网络
As per title. Can\'t seem to find anything rel开发者_如何转开发evant.app/code/core/Enterprise/Logging is what I think your looking for.

As per title. Can't seem to find anything rel开发者_如何转开发evant.


app/code/core/Enterprise/Logging is what I think your looking for.

This is from the Model/Handler/Controllers.php file.

    //Add log entry details
    if ($data) {
        $change = Mage::getModel('enterprise_logging/event_changes');
        $processor->addEventChanges($change->setSourceName('params')
            ->setOriginalData(array())
            ->setResultData($data));
    }

I've never used it but hope it helps?

0

精彩评论

暂无评论...
验证码 换一张
取 消