Drupal 7:无法在 template.php 中覆盖
我尝试在drupal 7中覆盖theme_menu_tree。
我的函数(如下所示)非常简单,但似乎drupal跳过了它,甚至在那里放了一个“die”。我后来清除了缓存,但没有用。
有人成功重写 template.php 中的函数吗?
function unitheme_menu_tree($variables) {
die("die!");
}
I try to override theme_menu_tree in drupal 7.
My function (shown below) is very simple, but it seems drupal skips it, even put a "die" there. I have clear the cache afterward, but it is no use.
Has anyone successfully override a function in template.php?
function unitheme_menu_tree($variables) {
die("die!");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是一个友好的提示,您应该使用 & 通过引用传递变量。操作员,菜单树是一个相当昂贵的循环。
Just a friendly tip, you should pass the variable by reference with the & operator, the menu tree is a rather costly loop.