Drupal 主题复选框
我正在尝试将主题与一些复选框的样式挂钩。我已经使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案:
然后在函数 my_module_select_as_checkboxes 中创建您自己的函数或改编原始函数。
Solution:
Then in the function my_module_select_as_checkboxes create your own function or adapt the original one.