IPB - 挂钩到usercpForms_core.php

时间:2012-12-08 09:47:07

标签: hook signature ipb

我在Invision Power Board中创建了一个钩子,对用户签名有了新的限制。我必须将验证代码添加到usercpForms_core.php中实现的saveSignature()函数中。有没有办法做到这一点?我必须使用哪种挂钩类型?我试图使用Library Hook扩展usercpForms_core类,但它不起作用。

1 个答案:

答案 0 :(得分:0)

您必须为此类创建Library hook。例如,它是我xml的一部分

<hook_file_real>userProfileInfo</hook_file_real>
  <hook_type>libraryHooks</hook_type>
  <hook_classname>userProfileInfo</hook_classname>

      

            public function saveProfileInfo()
            {
                // SOME CODE

                return parent::saveProfileInfo();
            }   
      }]]></hooks_source>