Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Drupal 的新手。我正在使用 Megamenu 下拉菜单在我正在处理的站点中显示主菜单。但我需要覆盖 Megamenu 模块文件中的一个函数(megamenu_theme_menu_tree),以向 megamenu 输出添加一些 html。编辑模块文件对我有用,但我不确定它是正确的方法。
还有其他方法吗?
请帮忙
谢谢
在文件主题/[your_theme]/template.php 中,尝试创建一个函数来覆盖它。对于命名功能,这里解释
顺便说一句,你永远不应该将一个函数覆盖到它的模块中。您必须创建自定义模块来覆盖它。例如,如果您需要更新 Megamenu,保留自定义代码会更容易。