创建了最简单的模块,它安装了,没有任何反应
我创建了一个模块,可以在 Drupal 的普通安装上运行,但在我正在开发的公司网站上根本不起作用。以前从未发生过这种情况,我已经用尽了我所知道的一切来查找可能出现的拼写错误。该模块仅将此作为测试:
function pathargs_nodapi(&$node, $op, $a3 = NULL, $a4 = NULL ) {
if($op == 'update') {
watchdog("debug", "insertings");
}
}
I have created a module that works on a vanilla installation of Drupal but doesn't work at all on the corp website that I am working on. Never had this happen before and I have exhausted all I know for whatever typos that could be made. The module only has this as a test:
function pathargs_nodapi(&$node, $op, $a3 = NULL, $a4 = NULL ) {
if($op == 'update') {
watchdog("debug", "insertings");
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想使用
而不是
You probably want to use
instead of