将内容类型表单导出到 drupal6 中的模块中
有没有办法导出内容类型的表单结构并将其放入模块中,就像我们在视图中所做的那样? (当然还有所有的cck) $form['项目']=.....
is there a way to export the form structure of content type and put it in a module as same as we can do in views? (and all the cck ofcourse)
$form['item']=.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅功能模块。创建功能时,您可以包含节点类型、CCK、视图、ImageCache 预设甚至模块依赖项。
See the Features module. When you create a feature, you can include node types, CCK, views, ImageCache presets and even module dependencies.
这听起来像是您在这里寻找的更多详细信息:
http://www.tinpixel.com/node/ 53
我还在我的网站上使用了以下代码,该函数是 install_profile api 模块使用的方法的一个分支,我在我的网站上使用它而不是加载完整的模块:
http://drupal.org/project/install_profile_api
This sounds like what you are looking for here in more detail:
http://www.tinpixel.com/node/53
I also use the following code on my sites, the function is a fork from the method used by the install_profile api module and I use this on my sites rather than loading the full module:
http://drupal.org/project/install_profile_api