如何更改hook_user?
我需要更改钩子用户。我已在 user.module 的第 326 行插入代码。成功了。db_query('INSERT INTO {beep} (uid) VALUES (%d)', $array['uid']);
不要破解核心!请帮助我。
i need change hook user.I've inserted code in line 326 of user.module. it's work .db_query('INSERT INTO {beep} (uid) VALUES (%d)', $array['uid']);
Do not hack core! Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
制作一个实现 hook_user() 的自定义模块,并将代码包装在条件中,以便在您需要时触发:
查看此处 http://drupal.org/developing/modules 了解有关创建您自己的模块的详细信息。
Make a custom module that implements hook_user() and wrap your code in a conditional so that it fires when you want it to:
Look here http://drupal.org/developing/modules for details on creating your own modules.