Let's do with Drupal – Simplified Admin Panel

As you (if you’v at least installed and explored Drupal) know, Drupal‘s Admin panel is not comfortable for clients. It’s mostly developer centric and not similar to other common content managing panels. But, sometimes clients may need to manage some type of content. Recently I’ve faced this situation and made a simple, generic admin panel that only offers managing selective contents. Now I am going to tell you the how I’v done it. If you follow the steps, it should take hardly 30 minutes.

Assumptions

I’m assuming that –

  • You have already worked with Drupal and understand it’s basic terminology.
  • You understand and can manage Roles, Permissions and Blocks.
  • You have worked (at least can work) with Views module.

The Solution

Suppose the node-type we will let the client manage (add/edit/delete) is “property”. Now, within few steps, we’ll build a Manage Property panel. We’ll use Admin and Client to mean the role of you and your client. Let’s start.

  1. Create a view using views module (type will be “node”) and name it “manage_properties”.
  2. In Filters section, add node-type = property. Add additional filters if needed e.g. is_published, user etc.
  3. You can add some exposed filters (e.g. node title, category etc.) so that the client can search/filter contents easily.
  4. In Fields section, Add node title first. Then add 2-3 other fields that will help client to identify and find out property. e.g. property type, location etc. At last, add Edit link and Delete link fields. Change label of Edit link as “Actions”
  5. In Basic setting of view, set title = Manage Properties, Style = Table, Use pager = Yes, Distinct = Yes, Access = Role (select client’s and admin’s role from Access options)
  6. From Style options, place Edit and Delete links in Actions column together. Check Sortable checkbox for title and other appropriate columns.
  7. You can sort results by post_date, DESC from Sorting section.
  8. We’re almost done. Now add a page display of view and set the path of this display as ‘manage/properties’. If you want, you can add this page to menu as well.
  9. Set the Add Property link In Header of page view. Style it (e.g. right aligned, bold etc.).
  10. Save the view and check the output. Tune up for your clients use.

Ok. Now the page is ready. Create similar panels for other content types that your client needs to manage.
The next concern is, how the client will reach to these pages? There are two easy ways. Either create a menu and add these pages to that menu. Or Place a block on sidebar (or anywhere) containing the links of these pages.

Checklist

Please go through the following checklist when you think you’r done-

  • This menu/links block (navigation for created manage pages) are visible and accessible by only Client and Admin role, not for the whole world.
  • All links (add/edit/delete) are working. After edit/delete, redirecting to this panel.
  • Client’s role has permission to edit/delete (at least edit/delete own contents) this node-type.

More Let’s do with Drupal are coming up! keep checking.

3 Comments

  1. Dude.. I am not much into reading, however in some way I obtained to learn a number of articles on your blog. Its amazing how fascinating it’s for me to visit you very often.
    This helped me to make my admin panel within 40 mins 🙂

Leave a Reply to Amzad Hossain Cancel reply

Your email address will not be published. Required fields are marked *