菜单项调用的节点模板文件
我正在使用 D6...并且在我的 node-blog.tpl.php 文件中添加了一个检查,检查用户是否是成人,如果不是,他应该被重定向到引荐页面,现在当我尝试查看我的主页时,用户被重定向回引荐页面。只是因为我为我的博客节点页面使用了菜单项?
我该如何解决这个问题?
为什么菜单项调用node-blog.tpl.php?
这就是 drupal 的流程还是我犯了一些错误..请帮忙?
提前致谢....
I am using D6... and in my node-blog.tpl.php file have added a check for whether the user is adult if not he should be redirected to the referrer page, now when i try to view my home page the user is redirected back to the referrer page.. just bcoz i have used a menu item for my blog node page?
how can i resolve this issue?
why is node-blog.tpl.php is called for menu items?
is this how drupal flow or am i making some mistake.. please help?
Thanks in Advance....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这种检查不应在您的 tpl 文件中实现。它应该在模块中通过实现 hook_nodeapi 或 hook_init 来完成。
http://api.drupal.org /api/drupal/developer--hooks--core.php/function/hook_nodeapi/6
或
http://api.drupal.org /api/drupal/modules--system--system.api.php/function/hook_init/7
This kind of check shouldn't be implemented in your tpl file. It should be done in a module by implementing either hook_nodeapi or hook_init.
http://api.drupal.org/api/drupal/developer--hooks--core.php/function/hook_nodeapi/6
OR
http://api.drupal.org/api/drupal/modules--system--system.api.php/function/hook_init/7