Views: From the Beginning John Fiala Twitter: jcfiala Vintage Digital.

Slides:



Advertisements
Similar presentations
@beckyddesign Beckydavisdesign.com Take Control of Your Site with WordPress.
Advertisements

Module 2 Navigation.     Homepage Homepage  Navigation pane that holds the Applications and Modules  Click the double down arrow on the right of.
User Friendly Entity Reference Select Lists
Drupal Blocks David Manela, Mark Ritzman, Chad Campbell.
James Gollan d.o: gollyg twitter: gollyg. Overview Files in Drupal 7 The media suite of modules Site recipe: Adding media to your site.
Basics of Drupal: Part 3 Rochelle Terman
Basics of Drupal for Researchers, part 3 Quinn Dombrowski, Research IT
Installing CiviCRM onto Wordpress. How does it work?
131 Agenda Overview Review Roles Lists Libraries Columns.
WordPress Web. WordPress Blogging system with full content management Personal publishing system Built on PHP scripting language and MySQL relational.
© 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice SISP Training Documentation Template.
Drupal syndication UA Webmasters May 8, 2013 Margrit McIntosh.
Content Types and Views Information Systems 337 Prof. Harry Plantinga.
Drupal Commerce Better than Uber Andrew Root: druroot.
Drupal Overview Prepared by : Agustin D. Gumogda Jr. Instructor.
1 Database Systems Introduction to Microsoft Access Part 2.
© 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice SISP 6.1 Delta Training Documentation.
) Main Menu: You can access all aspects of the database from this screen 2) Contacts: You can access the “contact database management” side of.
Introduction to Views Stanford Drupal Camp April 6, 2013.
Classifications Schemes and Class Scheme Items in the Curation Tool: Interface Design Audrey Lipps, User-Centered Design
WikiPlus Configurations Configure WikiPlus elements to your needs.
Drupal Recipe: Before and After Gallery Lisa Forgan and Chris Neglia, using notes from Drupal Camp Colorado Copyright 2009, Page 1 Solutions LLC.
Microsoft Access Database Creation and Management.
Khalid Baheyeldin, Toronto, Mar 13, 2007 Building Drupal sites using CCK, Views and Panels Khalid Baheyeldin Drupal Users Group, Toronto.
General Introduction This slideshow is designed to provide students with a basic hands-on introduction to the social learning site:
Pragmatic Drupal Development John Fiala Developer.
The main menu options and their usage are: Dashboard This will display your main Dashboard ‘homepage’. In the top left of your Dashboard you’ll see some.
Advanced Informer Features
FAST STUDENT Your Chance to Learn!. FAST STUDENT Your Chance to Learn!
Custom Report Generator Part One - Basic
What’s New in ProMonitor 9
The Business Source Databases Advanced Searching
Basics of Drupal for Researchers, part 3
Objectives Create a folder in Google Drive.
Developer 2000 CSE 4504/6504 Lab.
Using the Migrate Module for Fewer Headaches when Relaunching a Site
Mastering Autodesk Revit MEP 2016
About SharePoint Server 2007 My Sites
What is new In Pangea 6.11 Pangea 6.11.
LMEvents SharePoint Portal How-to Guide
TE004 Smart Change Management with Sage CRM Component Manager
Access Creating a Database
Panelize all the Things!
Developers Presented by Larry Garfield
Centrally Managed Content with JSON Views and the Feeds Module
WordPress Development
THIS IS JEOPARDY. THIS IS JEOPARDY With Your Host... Paul Berman.
Access Creating a Database
Creating Charts & Dashboards
Boeing Supply Chain Platform (BSCP) Detailed Training
Central Document Library Quick Reference User Guide View User Guide
KELLER WILLIAMS REALTY
B2B Portal Training Materials
PowerPoint Mockup of CMS Code Generator
INFM 603 Main Class Project
Working with Server-side Scripts
Design & User Experience What’s New in the Panels Universe
A technical look at the new capabilities
Citation Map Visualizing citation data in the Web of Science
Used & Signed UPload Matt Supko March 8, 2018.
AGILENT TECHNOLOGIES RESTRICTED
WordPress Development
Introduction to Database Programs
HP ALM Defects Module To protect the confidential and proprietary information included in this material, it may not be disclosed or provided to any third.
Inside a PMI Online Course
Introduction to Database Programs
B2B Portal Training Materials
Access Click on file and then you want a new database.
WordPress Development
Presentation transcript:

Views: From the Beginning John Fiala Twitter: jcfiala Vintage Digital

Views in Brief ● Views allows you to control how lists and tables of content are presented, without having to write any code. ● Views comes with Views UI and Views exporter, but many modules exist to extend it. ● Although Views are stored in the database, they can be exported to code by hand or with Features

Views is more than Nodes ● You can make a view out of: – Nodes – Comments – Files (uploaded ones) – Node Revisions – Terms (Taxonomy module) – Users

Features and Context ● Features is a way to store Views in code easily along with associated fields, nodes, and the like. ● Context is a little like the blocks screen on steroids. Given a set of conditions, display your blocks where you need them.

Views Basics ● Style determines how the view is presented ● Fields indicates which fields are displayed in what order ● Sort criteria restricts the order ● Filter restricts which items are shown ● Basic Settings helps define a view generally.

Views Displays ● Views come with a Default Display, but additional displays can be added easily, and then customized by overriding parts of the Default. ● Block and Page are obvious ● Attach lets you add two views together ● Feed creates an RSS feed, like a Page ● Other displays can be provided by modules, like the Calendar module

So, Let's Make Some Views ● Demo

Arguments 1 ● An Argument is like a Filter, only the Argument's restriction depends on where the view is appearing on the site – specific page or context – and a Filter's restriction is fixed when the view is created. ● A filter says, “Only show type 'Artist'” ● An argument says “Show Artist 34 because we're on node/34”

Arguments 2 ● Page Views can get arguments from the path easily with the % wildcard. ● Other views can look at the current node, current user, or even delve into PHP for fancy results.

Argument View Demo

Relationships ● Relationships let you follow a connection between two items and bring the second item into the view. ● So, you could bring in the Artist Name from the Artist that an Album is referencing.

Relationship Demo

Useful Views Additions ● Views Bulk Operations ● Views Custom Field ● Views Attach ● Views Slideshow / Views Carousel ● Views Calc ● Ubercart Views ● Views OR ● Calendar