在 Drupal 中多次扩展模块
我基于 webform 模块为 Drupal 创建了一个很好的扩展。现在,我需要实现同样基于 webform 模块的不同功能。最好的方法是什么?
I created a nice extension for Drupal based on the webform module. Now, I need to implement different functionality that is also based on the webform module. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在模块中创建一个钩子,或者在 Webform 中查找可用的钩子(如果有)。如果您没有创建模块,请创建一个。这是在表单/节点/视图等任何阶段与 Drupal 交互的最佳方式。
Create a hook in your module or look for available hooks in Webform, if any. If you didn't create a module, create one. It's the best way to interact with Drupal at any stage of forms/nodes/views etc.
什么是“Drupal 扩展”?从来没有听说过这样的事情。现在,这个问题无法回答,抱歉,你需要问一个具体的问题。答案可能是编写另一个模块,按照 Kevin 的建议回调 webform,但它可能只是一个狡猾的 hook_form_alter。
What's a "Drupal extension"? Never heard of such a thing. Now, this question can't be answered, sorry, you need to ask a specific question. The answer might be to write another module which calls back to webform as Kevin suggested but it might be just a crafty hook_form_alter.