Book Image

Learning Drupal 8

By : Nick Abbott
Book Image

Learning Drupal 8

By: Nick Abbott

Overview of this book

Drupal 8 sets a new standard for ease of use, while offering countless new ways to tailor and deploy your content to the Web. Drupal 8 allows user to easily customize data structures, listings, and pages, and take advantage of new capabilities for displaying data on mobile devices, building APIs, and adapting to multilingual needs. The book takes you step by step through building a Drupal 8 website. Start with the basics, such as setting up a local “stack” development environment and installing your first Drupal 8 site, then move on to image and media handling, and extending Drupal modules. Push your knowledge by getting to grips with the modular nature of Drupal, and learning to extend it by adding new functionalities to create your new modules. By the end of the book, you will be able to develop and manage a modern and responsive website using Drupal.
Table of Contents (21 chapters)
Learning Drupal 8
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Users and roles


Drupal allows an unlimited number of user accounts—site users each with a unique username, e-mail address, and password—and it employs roles to which you can attach permissions. A site user's capabilities are dictated by the role(s) the user is a member of and the permissions that are assigned to those role(s).

Each role, including the special Anonymous and Authenticated user roles, is granted one or more named permissions allowing them to perform certain tasks.

A list of the currently defined roles is found by navigating to People | Roles (admin/people/roles):

Here, you'll see a list of the roles available on your site by default:

Let's see how these roles are defined:

  • Anonymous user: This is anyone who is not logged in, that is, public visitors to your site

  • Authenticated user: This is used for logged in users

  • Administrator: This is a special Drupal role that is granted a high level of permission—often dangerously high for many users and really only meant for senior site administrators...