Book Image

Mastering Drupal 8 Views

By : Gregg Marshall
Book Image

Mastering Drupal 8 Views

By: Gregg Marshall

Overview of this book

Learn how to build complex displays of content—all without programming. Views were used on more than 80% of all Drupal 7 sites; now they are part of the Drupal 8 core. While most site builders and site owners are aware of views, they don't understand how to take full advantage of their power to create many amazing pages and blocks. If they use views, they might build 10 different view displays with different filters, without knowing that a contextual filter would require only a single display. Using our sample company, we'll take its existing content and evolve an ever more complex and powerful website for that company, starting with adapting the administration the user sees and moving on to making complex pages of information for site visitors. While the book is written for Drupal 8, the similarities between Views in Drupal 7 and 8 make this a useful reference for Drupal 7 site builders also.
Table of Contents (20 chapters)
Mastering Drupal 8 Views
Credits
Foreword
About the Author
Acknowledgements
About the Reviewer
www.PacktPub.com
Preface
Index

When the HTML code needs to change


"Okay, we've looked at the changes you can make to the CSS classes, and for fields, the HTML tag wrapping the field output. Another place that you already know we can put CSS if we have to is the field rewrites. In fact, I have seen you being very creative in using field rewrites to combine fields in ways I would never have thought of.

However, let's say you need to do something more than you can with a field rewrite or that you don't want to have this kind of logic in your view; your option then becomes modifying the theme template to change the HTML code at this level.

Of course, there are some modifications that require more logic, perhaps coupled with database manipulations that go beyond what can be done with templates. These should be done in a custom module rather than in a template. The rule of thumb is that you can put conditionals and loops into templates and can do a reasonable amount of string and math manipulations in templates, but once you...