douzhuo5671 2016-07-19 06:37
浏览 45
已采纳

如何在prestashop中挂钩之后调用admin Carrier add

I want execute some code when admin carrier add after, how to call the hook name?

I found the hookActionObjectCarrierAddAfter but I can not get the params or carrier last insert.

  • 写回答

1条回答 默认 最新

  • dq05304 2016-07-19 08:11
    关注

    Inside your module you should use:

    class MyModule extends Module
    {
        public function install()
        {
            if (! parent::install() || ! $this->registerHook('actionObjectCarrierAddAfter'))
            {
                return false;
            }
        }
    
        public function hookActionObjectCarrierAddAfter($params)
        {
            $carrier = $params['object'];
    
            [...]
        }
    
    }
    

    This hook is called from the method add of class ObjectModel:

    public function add($auto_date = true, $null_values = false)
    {
        if (isset($this->id) && !$this->force_id) {
            unset($this->id);
        }
    
        // @hook actionObject*AddBefore
        Hook::exec('actionObjectAddBefore', array('object' => $this));
        Hook::exec('actionObject'.get_class($this).'AddBefore', array('object' => $this));
    
        // [...]
        // [...]
        // [...]
    
        // @hook actionObject*AddAfter
        Hook::exec('actionObjectAddAfter', array('object' => $this));
        Hook::exec('actionObject'.get_class($this).'AddAfter', array('object' => $this));
    
        return $result;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?