Drupal 如何提供编辑/审查/发布模型?

发布于 2024-08-10 09:56:59 字数 160 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烟若柳尘 2024-08-17 09:56:59

有一些模块允许在单个站点上使用此功能。

  • workflow 模块允许您在创建、编辑、发布内容类型等时调用挂钩。我在生产网站上使用它来在创建新内容时通知我,以便我可以发布它。
  • 另一个模块是修订审核模块。您可以允许用户编辑节点,但新修订会进入队列等待批准,而不是立即发布。
  • There are some modules that allow this functionality on a single site.

  • The workflow module allows you to invoke hooks when content types are created, edited, published, ect. I use this on a production site to notify me when new content is created so I can publish it.
  • Another module is the revision moderation module. You can allow users to edit nodes, but new revisions go into a queue for approval instead of being published immediately.
  • 初相遇 2024-08-17 09:56:59
    1. 您可以在发布页面之前一次预览每个页面,但这通常是由用户控制的。听起来您想要更多的“作者提交给校对和发布的编辑”模型?

    2. 工作流模块就是您实现该功能所需的全部。它还将涉及几个用户角色(作家、编辑等)。这是一个可以多次完成的模型,您可以相当轻松地完成。

    2.5 此外,Modr8(中等)模块对您来说可能更简单:http://drupal.org/project/modr8

    1. 运行测试站点更适合站点(代码)开发,而不是仅仅用于发布内容。
    1. 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?

    2. 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

    1. Running a test site is more appropriate for site (code) development, not so much for just publishing content.
    茶花眉 2024-08-17 09:56:59

    工作流程模块将帮助您实现这一目标。它与操作模块交互。

    我设置了两个角色:作者和编辑,作者提交内容,然后编辑可以审阅和发布内容,如果他们不想发布,可以将其设置为需要工作,这意味着作者需要重做和发布然后在再次审核之前再次提交内容。

    操作模块意味着当内容在工作流中移动时,适当的角色可以访问内容。

    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.

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文