tags:

views:

11

answers:

1

I need to set up a content system in Drupal where accidentally deleted nodes can be retrieved. Is it possible to do it with any existing module?

If not, is there a module that let's me hide nodes instead of deleting them?

Thanks!

+2  A: 

You don't need a module for this, Drupal can do it out of the box. Simply use the unpublish option instead of deleting.

Also you should configure your permissions so users/admins can't delete nodes.

googletorp
Thanks, that was simple enough :)
Christoffer
Can I move a "Unpublish" button to the place where "Delete" is?
Christoffer
You could create an unpublish submit button. It would require some work with a custom module, using `hook_form_alter` to do it, but should be simple enough.
googletorp