Drupal 主题复选框

发布于 2024-11-30 09:51:58 字数 304 浏览 0 评论 0原文

我正在尝试将主题与一些复选框的样式挂钩。我已经使用 form_alter 挂钩对每个复选框的标签进行了一些更改,现在我想与复选框主题函数交互以设置标签样式。

在表单数组中,它说

#theme (String, 20 characters ) select_as_checkboxes

这是我需要重写的函数吗?我该怎么做? 我尝试过类似的东西

function mymodule_select_as_checkboxes()

,但我无法让它工作

I'm trying to us the theme hook the style some checkboxes. I have used the form_alter hook to make some changes to the labels of each checkbox and now i would like to interact with the checkbox theme function to style the labels.

In the form array it says

#theme (String, 20 characters ) select_as_checkboxes

is this the function i need to override? And how do i do this?
I tried stuff like

function mymodule_select_as_checkboxes()

but i can't get it to work

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

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

发布评论

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

评论(1

遮云壑 2024-12-07 09:51:58

解决方案:

   function my_module_theme_registry_alter(&$theme_registry) {
      // Register theme_function to use the module custom function
      if (!empty($theme_registry['select_as_checkboxes'])) {
        $theme_registry['select_as_checkboxes']['function'] = 'my_module_select_as_checkboxes';
      }
    }

然后在函数 my_module_select_as_checkboxes 中创建您自己的函数或改编原始函数。

Solution:

   function my_module_theme_registry_alter(&$theme_registry) {
      // Register theme_function to use the module custom function
      if (!empty($theme_registry['select_as_checkboxes'])) {
        $theme_registry['select_as_checkboxes']['function'] = 'my_module_select_as_checkboxes';
      }
    }

Then in the function my_module_select_as_checkboxes create your own function or adapt the original one.

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