Drupal phptemplate_menu_tree

发布于 2024-10-19 13:58:32 字数 308 浏览 2 评论 0原文

我正在使用 Drupal 7,我正在尝试测试 phptemplate_menu_tree,我创建了一个名为 template.php 的文件并添加以下内容:

<?php
// $Id: template.php,v 1.01 2011/2/24 12:47:27 dries Exp $

function phptemplate_menu_tree($variables) {
    return '<ul> <li> test </li> </ul>';
}

但它不起作用。

I am using Drupal 7, I am trying to test phptemplate_menu_tree, I created a file named, template.php and add following:

<?php
// $Id: template.php,v 1.01 2011/2/24 12:47:27 dries Exp $

function phptemplate_menu_tree($variables) {
    return '<ul> <li> test </li> </ul>';
}

But it is not working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

青春有你 2024-10-26 13:58:33

看来在drupal 7中,他们已经删除了engine_theme (phptemplate_menu_tree)钩子。将 engine_theme 挂钩重命名为 template-name_theme (mytemplate_menu_tree) 挂钩使其正常工作。

It appears in drupal 7, they have dropped the engine_theme (phptemplate_menu_tree) hook. renaming the engine_theme hook to template-name_theme (mytemplate_menu_tree) hook make it worked.

天生の放荡 2024-10-26 13:58:33

您是否使用 devel.module 更新了主题注册表或通过在 admin/build/themes 重新保存表单来更新主题注册表?

Have you updated the theme registry with devel.module or by resaving the form at admin/build/themes?

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