Drupal 如何提供编辑/审查/发布模型?
Drupal 如何支持在发布网站之前更新和审查网站的方法?
它是否只允许您在发布之前一次预览一个页面,或者是否有办法创建一个包含多个页面的网站,对其进行审核然后发布?
创建两个 Drupal 站点并定期将一个站点的内容推送到另一个站点(作为一种发布方法)是最好还是最简单的?
How does Drupal support a means to update and review a website before it is published?
Does it only allow you to preview a page at a time before you publish it or is there a way to create a site with multiple pages, review it and then publish it?
Is it best or easiest to create two Drupal Sites and push the contents of one to the other regularly (as a publish method)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一些模块允许在单个站点上使用此功能。
There are some modules that allow this functionality on a single site.
您可以在发布页面之前一次预览每个页面,但这通常是由用户控制的。听起来您想要更多的“作者提交给校对和发布的编辑”模型?
工作流模块就是您实现该功能所需的全部。它还将涉及几个用户角色(作家、编辑等)。这是一个可以多次完成的模型,您可以相当轻松地完成。
2.5 此外,Modr8(中等)模块对您来说可能更简单:http://drupal.org/project/modr8
You can preview each page at a time before publishing it, but that is generally-user controlled. Sounds like you want more of a 'writer submits to editor who proofs and publishes' model?
Workflow module is all you need for that functionality. It will also involve a couple user roles (writer, editor, etc.). This is a model done many times, you can do it fairly easily.
2.5 Also Modr8 (Moderate) module may be simpler for you: http://drupal.org/project/modr8
工作流程模块将帮助您实现这一目标。它与操作模块交互。
我设置了两个角色:作者和编辑,作者提交内容,然后编辑可以审阅和发布内容,如果他们不想发布,可以将其设置为需要工作,这意味着作者需要重做和发布然后在再次审核之前再次提交内容。
操作模块意味着当内容在工作流中移动时,适当的角色可以访问内容。
The workflow module will help you achieve this. It interacts with the actions module.
I set up two roles: writer and editor, the writers submit their content and then the editors can review and publish the content, if they don't want to publish it they can set it as needs work which means the writer need to redo and then submit the content again before it is reviewed again.
The action module means that the content is accessible by the appropriate roles as the content moves through the workflow.