+ All Categories
Home > Software > Drupal 7 theming with Template Field Variables

Drupal 7 theming with Template Field Variables

Date post: 18-Dec-2014
Category:
Upload: jaza
View: 148 times
Download: 0 times
Share this document with a friend
Description:
The Template Field Variables module is a utility module for themers. Its only purpose is to make Drupal template development less painful. It provides "dead-simple variables" rather than Drupal's infamous "massive nested arrays". In this presentation the module author will walk you through how to make your life easier as a themer.
15
Drupal 7 theming with Template Field Variables Jeremy Epstein http://greenash.net.au/ Drupal Camp Sydney, Blue Mountains 29 Jun 2014
Transcript
Page 1: Drupal 7 theming with Template Field Variables

Drupal 7 theming withTemplate Field Variables

Jeremy Epsteinhttp://greenash.net.au/

Drupal Camp Sydney, Blue Mountains29 Jun 2014

Page 2: Drupal 7 theming with Template Field Variables

Template Field Variables:https://drupal.org/project/tpl_field_vars

Page 3: Drupal 7 theming with Template Field Variables

Default Drupal 7 node.tpl.php

Page 4: Drupal 7 theming with Template Field Variables

Fledgling Drupal themer

Image credit: http://oilersnation.com/2013/10/18/not-the-right-mix/page/1

Page 5: Drupal 7 theming with Template Field Variables

Wants a byline in a blockquote

Page 6: Drupal 7 theming with Template Field Variables

Gets this output

Page 7: Drupal 7 theming with Template Field Variables

Hey, how about this kitten-killer

Page 8: Drupal 7 theming with Template Field Variables

Image credit: http://wforweilun.blogspot.com.au/2010/01/kitten-killer-of-hangzhou.html

Page 9: Drupal 7 theming with Template Field Variables

The Right Way™ - a field--field-byline.tpl.php

Page 10: Drupal 7 theming with Template Field Variables

The Other Right Way™ - without having to override field.tpl.php

Page 11: Drupal 7 theming with Template Field Variables

Image credit: http://www.deviantart.com/art/Twitter-Fail-Whale-Wallpaper-174820888

Page 12: Drupal 7 theming with Template Field Variables

field--field-bla.tpl.php

Image credit: http://commons.wikimedia.org/wiki/File:SMirC-thumbsdown.svg

Page 13: Drupal 7 theming with Template Field Variables

Image credit: http://techcrunch.com/2011/05/02/pandora-is-now-10-billion-thumbs-strong/

Page 14: Drupal 7 theming with Template Field Variables

How to override node.tpl.phpNon rocket-scientists' edition

Page 15: Drupal 7 theming with Template Field Variables

Recommended