English 中文(简体)
How does Drupal provide an edit/review/publish model?
原标题:
  • 时间:2009-11-10 00:55:16
  •  标签:
  • drupal
  • web

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)?

最佳回答

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.
  • 问题回答
    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.

    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.





    相关问题
    Drupal Multi-language: Simple strings not translated

    I m adding additional languages to a Drupal site that I m building. Getting the translation of content working is fairly easy using the Internationalisation module. Yet, simple things such as date ...

    Setting up a WYSIWYG editor for Drupal site users [closed]

    Looking through the Drupal contrib modules, and after a few Google searches, it becomes evident that there are any number of choices and combos available to set up a WYSIWYG editor in Drupal. I m ...

    Change size of user/password login box

    I don t know how to change the size of the login username/password boxes on the drupal site that I m trying to build. I m stumbling through the theming, and don t know where to find the file that ...

    How does Drupal provide an edit/review/publish model?

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

    Term for rotating header

    I m looking for terminology that describes this behavior: The header of a web-page contains a different image every time you visit it. Update: It is not an advertisement, but images related to the ...

    Has anyone checked out Drupal 7? [closed]

    Has anyone checked out a copy of Drupal 7 yet? What do people think? I m pretty excited about the PDO and all of the designers I work with a very excited about the new admin interface/structure. Do ...

    热门标签