branch out of your comfort zone with twig templates larry
play

Branch Out of Your Comfort Zone with Twig Templates Larry - PowerPoint PPT Presentation

Branch Out of Your Comfort Zone with Twig Templates Larry Walangitan @larrywalangitan http://chromatichq.com @ChromaticHQ PHPTemplate Twig PHPTemplate vs Twig PHPTemplate vs Twig // node.tpl.php <?php if (!$page): ?> <h2<?php


  1. Branch Out of Your Comfort Zone with Twig Templates

  2. Larry Walangitan @larrywalangitan

  3. http://chromatichq.com @ChromaticHQ

  4. PHPTemplate

  5. Twig

  6. PHPTemplate vs Twig

  7. PHPTemplate vs Twig // node.tpl.php <?php if (!$page): ?> <h2<?php print $title_attributes; ?>> <a href="<?php print $node_url; ?>"><?php print $title; ?></a> </h2> <?php endif; ?> // node.html.twig {% if not page %} <h2{{ title_attributes.addClass('node__title') }}> <a href="{{ url }}”> {{ label }}</a> </h2> {% endif %}

  8. Roadmap Control Structures Creating Templates Filters Overriding Default Templates Links Theme Hook Suggestions Render Arrays Naming Conventions Debugging Variables Coding Standards Conditionals

  9. Creating Templates

  10. Creating Templates: Drupal 7 in `modules/*/..` aggregator-feed- comment-wrapper.tpl.php profile-listing.tpl.php source.tpl.php comment.tpl.php profile-wrapper.tpl.php aggregator-item.tpl.php field.tpl.php search-block-form.tpl.php aggregator-summary- forum-icon.tpl.php search-result.tpl.php item.tpl.php forum-list.tpl.php search-results.tpl.php aggregator-summary- forum-submitted.tpl.php page.tpl.php items.tpl.php forum-topic-list.tpl.php maintenance-page.tpl.php aggregator-wrapper.tpl.php forums.tpl.php region.tpl.php block-admin-display- node.tpl.php html.tpl.php form.tpl.php overlay.tpl.php axonomy-term.tpl.php block.tpl.php poll-bar--block.tpl.php toolbar.tpl.php book-all-books-block.tpl.php poll-bar.tpl.php user-picture.tpl.php book-export-html.tpl.php poll-results--block.tpl.php user-profile-category.tpl.php book-navigation.tpl.php poll-results.tpl.php user-profile-item.tpl.php book-node-export- poll-vote.tpl.php user-profile.tpl.php html.tpl.php profile-block.tpl.php

  11. Creating Templates: Drupal 7 * node.tpl.php * node--promoted.tpl.php template.php function THEME_preprocess_node(&$variables) { if ($variables['promote']) { $variables['theme_hook_suggestions'] = 'node__promoted'; } }

  12. Creating Templates: Drupal 8 theme/templates/*.html.twig | theme | - templates | | - block.html.twig | | - comment.html.twig | | - maintenance-page.html.twig | | - node.html.twig | | - page.html.twig | | - status-messages.html.twig | | - custom-template.html.twig

  13. Overriding Default Templates

  14. Overriding Default Templates: Drupal 7 * page.tpl.php * page—[node-type].tpl.php template.php function THEME_preprocess_page(&$variables) { if (isset($variables['node']->type)) { $variables['theme_hook_suggestions'][] = $variables[‘node']->type; } }

  15. Overriding Default Templates: Drupal 8 “ 1. Locate the template you wish to override. 2. Copy the template file from its base location into your theme folder. 3. (optionally) Rename the template according to the naming conventions. 4. Modify the template to your liking. ”

  16. Theme Hook Suggestions

  17. Theme Hook Suggestions: Drupal 7 template.php /** * Implements hook_preprocess_HOOK. */ 
 function THEME_preprocess_page(&$variables) { if (isset($variables['node']->type)) { $variables['theme_hook_suggestion'] = $variables[‘node']->type; } }

  18. Theme Hook Suggestions: Drupal 7 template.php $variables['theme_hook_suggestion'] != $variables['theme_hook_suggestions']

  19. Theme Hook Suggestions: Drupal 8 custom.theme function hook_theme_suggestions_alter(array &$suggestions, array &$variables, $hook) { // Alters named suggestions for all theme hooks. } function hook_theme_suggestions_HOOK(array &$variables) { // Provides alternate named suggestions for a specific theme hook. } function hook_theme_suggestions_HOOK_alter(array &$suggestions, array $variables) { // Alters named suggestions of a specific theme hook. // Can reorder or remove suggestions provided by hook_theme_suggestions_HOOK. }

  20. Theme Hook Suggestions: Drupal 8 custom.theme /** * Implements hook_theme_suggestions_HOOK_alter(). */ function custom_suggestions_user_alter(array &$suggestions, array &$variables) { if (!empty($variables['elements']['#view_mode'])) { $suggestions[] = 'user__' . $variables['elements']['#view_mode']; } } user--custom-view-mode.html.twig

  21. Naming Conventions

  22. Naming Conventions: Drupal 7 http://example.com/node/1 # Naming Conventions Hierarchy * page--front.tpl.php // but only if node/1/edit is the front page * page--node--1.tpl.php // prefix is not changed because the component is a number * page--node--%.tpl.php * page--node.tpl.php // and prefix is set to page__node * page.tpl.php // this is always a suggestion

  23. Naming Conventions: Drupal 7 http://example.com/node/1 # Naming Conventions Hierarchy * page--front.html.twig // but only if node/1/edit is the front page * page--node--1.html.twig * page--node.html.twig * page.html.twig

  24. Variables

  25. Variables: Drupal 7 template.php function THEME_preprocess_node(&$variables) { $variables['foo'] = 'bar'; } node.tpl.php <div id="foo-wrapper"> <?php print $foo; ?> </div>

  26. Variables: Drupal 8 custom.theme function custom_preprocess_node(&$variables) { $variables['foo'] = 'bar'; } node.html.twig <div id="foo-wrapper"> {{ foo }} </div>

  27. Variables: Comparison template.php || custom.theme function custom_preprocess_node(&$variables) { $variables['foo'] = 'bar'; } node.tpl.php node.html.twig <div id="foo-wrapper"> <div id="foo-wrapper"> {{ foo }} <?php print $foo; ?> </div> </div>

  28. Conditionals

  29. Conditionals: Drupal 7 <?php if ($url): ?> <a href="<?php print $url; ?>"><?php print $image; ?></a> <?php else: ?> <?php print $image; ?> <?php endif; ?>

  30. Conditionals: Drupal 8 {% if url %} <a href="{{ url }}"> 
 {{ image }} {% else %} {{ image }} {% endif %}

  31. Conditionals: Comparison PHPTemplate Twig {% if url %} <?php if ($url): ?> <a href="{{ url }}"> 
 <a href="<?php print $url; ?>"> {{ image }} <?php print $image; ?> </a> </a> {% else %} <?php else: ?> {{ image }} <?php print $image; ?> {% endif %} <?php endif; ?>

  32. Conditionals: Comparison PHPTemplate Twig // !empty() // !empty() <?php if !empty($url): ?> 
 {% if url is not empty %} <a href="<?php print $url; ?>”> <a href="{{ url }}"> My Link! My Link! </a> 
 </a> <?php endif; ?> {% endif %} // isset() // isset() <?php if isset($url): ?> 
 {% if url is defined %} <a href="<?php print $url; ?>”> <a href="{{ url }}"> My Link! My Link! </a> 
 </a> <?php endif; ?> {% endif %}

  33. Control Structures

  34. Control Structures: Drupal 7 PHP PHPTemplate foreach ($rows as $row) { <?php foreach ($rows as $row): ?> print $row; <?php print $row; ?> } <?php endforeach; ?>

  35. Control Structures: Drupal 8 {% for row in rows %} 
 {{ row.content }} {% endfor %}

  36. Control Structures: Comparison PHPTemplate Twig <?php foreach ($rows as $row): ?> {% for row in rows %} 
 <?php print $row; ?> {{ row.content }} <?php endforeach; ?> {% endfor %}

  37. Filters

  38. Filters • Check Plain • Translate • Translate with substitutions • Implode • Escape

  39. Filters: Drupal 7 // Check Plain <?php print check_plain($title); ?> // Translate <?php print t('Home'); ?> // Translate with Substitutions <?php print t('Welcome, @username', array('@username' => $user->name)); ?> // Implode <?php echo implode(', ',$usernames); ?> // Escape <?php echo check_plain($title); ?>

  40. Filters: Drupal 8 // Check Plain {{ title|striptags }} // Translate {{ 'Home'|t }} // Translate with Substitutions {{ 'Welcome, @username'|t({ '@username': user.name }) }} // Implode {{ usernames|safe_join(', ') }} // Escape {{ title }}

  41. Filters: Comparison PHPTemplate Twig // Check Plain // Check Plain {{ title|striptags }} <?php print check_plain($title); ?> // Translate // Translate {{ 'Home'|t }} <?php print t('Home'); ?> // Translate with Substitutions // Translate with Substitutions {{ 'Welcome, @username'| <?php print t('Welcome, @username', t({ '@username': user.name }) }} array('@username' => $user->name)); ?> // Implode // Implode {{ usernames|safe_join(', ') }} <?php echo implode(', ',$usernames); ?> // Escape // Escape {{ title }} <?php echo check_plain($title); ?>

  42. Filters: Drupal 8 // Implode and lowercase {{ usernames|safe_join(', ')|lower }}

  43. Links

  44. Links: Drupal 7 drupal_get_path() // returns path of a system item. path_to_theme() // returns path to the current themed element Template.php $variable['custom_url'] = url(node_uri($node)['path']); custom-url.tpl.php <a href="<?php print $custom_url; ?>”> Check out this link! </a>

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend