Drupal 7:无法在 template.php 中覆盖

发布于 2024-12-10 11:45:46 字数 227 浏览 0 评论 0原文

我尝试在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事未完 2024-12-17 11:45:46

只是一个友好的提示,您应该使用 & 通过引用传递变量。操作员,菜单树是一个相当昂贵的循环。

function unitheme_menu_tree(&$variables) {
}

Just a friendly tip, you should pass the variable by reference with the & operator, the menu tree is a rather costly loop.

function unitheme_menu_tree(&$variables) {
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文