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

Aggregator


The Aggregator module allows you to collect information from external sources and publish it on your website. This could include RSS, RDF, or Atom feeds. For example, if you wanted to publish a list of headlines and article summaries from an external news site, you could use the Aggregator module.

Navigate to Extend (admin/modules) now and enable the Aggregator module.

Once enabled, the module provides new screens for us to manage external site feeds. You'll find the configuration page listed under the WEB SERVICES section of the administrative configuration page at: Configuration (admin/config):

You will be taken to the overall Feed overview page where existing feeds are listed and you can add new ones.

As an example, we can set up a headline feed from the BBC news website, which provides an RSS feed at http://feeds.bbci.co.uk/news/rss.xml?edition=uk.

Click on Add feed and fill in the following details:

Save the new feed, and you will see a confirmation message that the feed has been...