Book Image

Drupal for Education and E-Learning

Book Image

Drupal for Education and E-Learning

Overview of this book

Table of Contents (22 chapters)
Drupal for Education and E-Learning
Credits
About the Author
About the Reviewers
Preface
Index

Setting Up the Student Blog


In Chapter 4, as we set up the teacher blog, we created a blog post content type, and a view to display the teacher blog posts. To create the student blog, we need to do two things:

  1. Give users in the student role permissions over the blog post content type;

  2. Clone the teacher_blog view, and edit it to display student blog posts.

Assigning Permissions

To allow students to blog in the site, we need to allow users in the student role the ability to create blog posts. Click the Administer | User management | Roles link, or navigate to admin/user/roles. Click the link to edit permissions for the student role.

Note

For additional reference on assigning rights to content types, see Chapter 3 and Chapter 4.

Navigate down to the section for the node module. Select the options for create blog_post content, delete own blog_post content, and edit own blog_post content.

Click the Save permissions button to save the settings.

Students can now blog in the site.

Clone the Teacher Blog

Now...