Hello

I am actually trying to implement a friendly "explore" view of all my content. This view will allow several manipulations :

  • Listing content
  • Editing content
  • Deleting content

In fact it has a bit the same function as the core page listing all the content but customized in the way I need it.

My problem here is that I can't find out how to add some friendly tools for the user through a "formular" interface.

What I am trying to do is as following :

  • A filter allowing the user to select through a select box the content he want to display
  • Checkboxes allowing you to check all the needed contents and apply to all of them a single action selectable in select list

Actually, my question could be symmarized as "how can I make a view which has the same functions as the "content" page in drupals core ?"

Thank in advance for your help

Comments

nevets’s picture

For filtering add filters on selected fields and expose the filters you want people to be able to control. For the apply to all selected content see Views Bulk Operations.

Anonymous’s picture

That's right, when you add filter an example node/title then on click on Expose that will work.

mikou’s picture

That's perfect. I knew there might be a module for that. There is always a module for what you need in Drupal. I love you guys, I love Drupal ;).
Bulk operation is what I needed. I'll try it and let you know if any problem...

mikou’s picture

Hi and thanks again for bulk operations module

I still have a little something I do not understand and here it goes :

How to hide a content type in a view for a user which doesn't has any permissions on it. (My view is a list made with bulk operations).
I'm looking for something like a view "filter" by "permissions". But there is not such a filter.

thank you in advance