如何以编程方式创建论坛主题?
我刚刚通过以下链接了解了如何以编程方式创建论坛和容器
http://www.unibia.com/unibianet/drupal/how-create-drupal-forums-and-containers-programmatically
但从未见过任何以编程方式创建论坛主题的帖子(google) ,我是否应该使用 node_save() 还是任何替代方案。
请帮助我,
谢谢, 埃德温
I just gone through how to create forums and containers programmatically with the below link
http://www.unibia.com/unibianet/drupal/how-create-drupal-forums-and-containers-programmatically
But never see any post(google) which create forum topic pro-grammatically, whether i should go with node_save() or any alternative.
please help me guys,
Thanks,
Edvin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以编程方式创建新节点的一种快速、安全且简单的方法是使用 node_save():
A quick, safe and easy way to create new nodes programmatically is to use node_save():
Drupal 7 示例:
创建新论坛
创建新主题
创建主题评论
Drupal 7 Examples :
To create new Forum
To create new Topic
To create topic comments
论坛主题实际上只是一个节点,因此 node_save 是最好的选择,因为将调用所有需要的挂钩。
A forum topic is really just a node, so node_save is the best option as all the needed hooks will be called.
使用 D7 实体 API
Using D7 Entity API