Introduction to Twig

M
TWIG




Saturday, 3 November, 12
ABOUT ME




                    Team lead at FreshBooks

                    Lead Developer of CakePHP

                    Contributor to Twig




Saturday, 3 November, 12
WHAT IS IT




                    Templating language for PHP.

                    Uses syntax and ideas from jinja2.

                    Flexible and extensible at every layer.




Saturday, 3 November, 12
BUT PHP IS A
                             TEMPLATING
                           LANGUAGE DUMMY



Saturday, 3 November, 12
PHP SUCKS FOR TEMPLATING
             // In         Plain PHP
             <?php         echo $var; ?> (XSS you lose)
             <?php         echo htmlspecialchars($var, ENT_QUOTES, ‘UTF-8’); ?>
             <?php         echo h($var); ?> (sugar for htmlentities)

             // In Twig - autoescaping enabled
             {{ var }}




Saturday, 3 November, 12
BENEFITS OF TWIG



                    Terse syntax, and sugar.

                    Automatic HTML escaping.

                    Sandbox mode, which enables user editable templates.

                    Ability to create custom DSL’s using application tags, operators
                    and functions.




Saturday, 3 November, 12
PLAIN PHP VS TWIG




Saturday, 3 November, 12
CONDITIONALS

             // In Plain PHP
             <?php if (!empty($var): ?>
             ...
             <?php endif; ?>

             // In Twig
             {% if var %}
             ...
             {% endif %}




Saturday, 3 November, 12
LOOPS

             <?php
             if (!empty($var):
               foreach ((array)$var as $i => $v):
                 printf(
                     ‘%s : %s’,
                     htmlspecialchars($i, ENT_QUOTES, ‘UTF-8’),
                     htmlspecialchars($v, ENT_QUOTES, ‘UTF-8’));
               endforeach;
             else:
               echo ‘No things’;
             endif;




Saturday, 3 November, 12
LOOPS

             {%      for i, v in var %}
             {{      i }} : {{ v }}
             {%      else %}
             No      things
             {%      endfor %}




Saturday, 3 November, 12
LOOPS

             {%      for user in users if user.active %}
             {{      user.name }} : {{ user.email }}
             {%      else %}
             No      active users
             {%      endfor %}




Saturday, 3 November, 12
BUT WAIT THERE IS
                                MORE




Saturday, 3 November, 12
AWESOME++




                    Macros.

                    Blocks & extending templates.




Saturday, 3 November, 12
MACROS

             {% macro username(user) %}
             <a href=”{{ url({
               ‘controller’: ‘users’,
               ‘action’: ‘view’,
               user.username) }}”>
                 <span class=”user-first-name”>
                 {{ user.first_name }}
                 </span>
                 <span> class=”user-last-name”>
                 {{ user.last_name }}
                 </span>
               </a>
             {% endmacro %}




Saturday, 3 November, 12
IMPORTING MACROS

             // import all the macros
             {% import ‘/import/formatting.twig’ as formatting %}
             {{ formatting.username(user) }}

             // import one macro
             {% from ‘/import/formatting.twig’ import username %}
             {{ username(user) }}

             // import one & alias it.
             {% from ‘/import/formatting.twig’ import username as un %}
             {{ un(user) }}




Saturday, 3 November, 12
INHERITANCE & BLOCKS



                    Extending views & blocks work hand in hand.

                    Blocks are like slots or holes in a template, that the child can fill.

                    Blocks can be used out of order, which is pretty sweet.

                    Blocks can be imported from other templates, similar to traits.




Saturday, 3 November, 12
INHERITANCE

             {# layout/base.twig #}

             Company X - Official Email template

             {% block content ‘Super important’ %}

             Copyright 2012




Saturday, 3 November, 12
INHERITANCE

             {# email/winner.twig #}
             {% extend ‘/layout/base.twig’ %}

             {% block content %}
             To whom it may concern,

             You win!
             {% endblock %}




Saturday, 3 November, 12
INHERITANCE

             {# email/winner.twig #}
             {% extend ‘/layout/base.twig’ %}

             {% block content %}
             To whom it may concern,

             {{ parent() }} You win!

             {% endblock %}




Saturday, 3 November, 12
INHERITANCE TIPS




                    Don’t use {% block %} inside a loop. It doesn’t do what you
                    want.

                    You can use {{ block(name) }} to dynamically call blocks.




Saturday, 3 November, 12
EXTENDING TWIG
                               TWIG EXTENSIONS




Saturday, 3 November, 12
EXTENDING TWIG



                    Twig can be extended in several ways.

                           Filters, Functions, Globals, Tests, Operators, TokenParsers,
                           NodeVisitors.

                    You should use extensions to package up your enhancements.




Saturday, 3 November, 12
TWIG EXTENSIONS




Saturday, 3 November, 12
LOADING EXTENSIONS

              $loader = new Twig_Loader_FileSystem(APP . ‘/templates’);
              $twig = new Twig_Environment($loader, $options);
              $twig->addExtension(new App_Extension_Url());




Saturday, 3 November, 12
ENVIRONMENT FACTORY

              class AppTwig {
                static function loadTemplate($template, $options = array()) {
                  $loader = new Twig_Loader_FileSystem(APP . ‘/templates’);
                  $twig = new Twig_Environment($loader, $options);
                  $twig->addExtension(new App_Extension_Url());
                  // Load more extensions
                  return $twig->loadTemplate($template);
                }
              }

              $template = AppTwig::loadTemplate(‘/users/profile.twig’);




Saturday, 3 November, 12
EXTENSION EXAMPLE
              <?php
              class App_Extension_Url extends Twig_Extension {
                public function getName() {
                  return ‘app.url’;
                }

                  public function getFilters() {
                    return array(
                       ‘name’ => new Twig_Filter_Method($this, ‘formatName’),
                    );
                  }
              }




Saturday, 3 November, 12
GLOBALS



                    Can be used to expose application or framework objects.

                    Great for migrating an older codebase to use Twig.

                    E.g {{ html.link(...) }}




Saturday, 3 November, 12
FUNCTIONS



                    Global functions added to a template context.

                    Great for providing shortcuts to application features, like url
                    generation or built-in PHP functions.

                    Example {{ form_input(model, ‘name’) }}




Saturday, 3 November, 12
FILTERS



                     Filters are intended for simple formatting functions.

                     The filtered variable is the first argument to the filter function.

                     Filters can have additional arguments as well.

                     Example: {{ invoice.amount|currency(‘CAD’) }}




Saturday, 3 November, 12
TESTS


                    Allow you to implement custom conditional logic. In an
                    expressive manner with domain objects.

                    Value being compared is supplied as the first argument. Other
                    arguments follow.

                    {% if user is paying %}
                    {% if number is divisibleby(3) %}




Saturday, 3 November, 12
NODE VISITORS



                    Allows you to visit each node in the Abstract syntax tree.

                    Applied before template is compiled.

                    Commonly used for optimizing the AST, or applying
                    transformations to, or reading data from nodes in the tree.




Saturday, 3 November, 12
CUSTOM TAGS




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT




                 LOADER




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT         LEXER




                 LOADER




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT         LEXER




                 LOADER               TOKENS




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT         LEXER            PARSER




                 LOADER               TOKENS




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT         LEXER            PARSER




                 LOADER               TOKENS            NODES




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT         LEXER            PARSER           COMPILER




                 LOADER               TOKENS            NODES




Saturday, 3 November, 12
TWIG INTERNALS


          ENVIRONMENT         LEXER            PARSER           COMPILER




                 LOADER               TOKENS            NODES




                                                           PHP CODE




Saturday, 3 November, 12
TOKEN PARSERS


                    Used to implement custom tags or DSL features.

                    The most complex feature to add.

                    Each tag is composed of two parts:

                           TokenParser - parses the tag and validates its syntax.

                           Node - Added to the AST and compiles the PHP code used
                           in templates.




Saturday, 3 November, 12
TAG EXAMPLE


         {% debug %}

         {% debug my_var %}

         {% debug 2 > 1 %}




Saturday, 3 November, 12
TOKEN PARSER
         class App_TokenParser_Debug extends Twig_TokenParser {

              public function parse(Twig_Token $token) {
                $line = $token->getLine();
                $expr = null;
                if (!$this->parser->getStream()->test(Twig_Token::BLOCK_END_TYPE)) {
                   $expr = $this->parser->getExpressionParser->parseExpression();
                }
                $this->parse->getStream()->expect(Twig_Token::BLOCK_END_TYPE);
                return new App_Node_Debug($expr, $line, $this->getTag());
              }

         }




Saturday, 3 November, 12
NODE COMPILER
         class App_Node_Debug extends Twig_Node {

              public function __construct(Twig_Node_Expression $ex, $line, $tag) {
                parent::__construct(array(‘expr’ => $ex), $line, $tag);
              }

              public function compile(Twig_Compiler $compiler) {
                $compiler->write(‘if ($this->env->isDebug()) {‘);
                if ($this->getNode(‘expr’) === null) {
                   // Print all vars.
                } else {
                   $compiler->write(‘var_dump(‘)
                     ->subcompile($this->getNode(‘expr’))
                     ->raw(‘);’);
                }
                $compiler->write(‘}’);
              }

         }




Saturday, 3 November, 12
OPERATORS




                    Allow you to add additional boolean operators.

                    I’ve never used this feature.




Saturday, 3 November, 12
DEPLOYING TWIG




Saturday, 3 November, 12
TWIG IN PRODUCTION




                    FreshBooks (the app, not the website).

                    520+ templates.

                    Twig templates are used for almost all HTML & E-mail content.




Saturday, 3 November, 12
TEMPLATE COMPILATION




                           TWIG




Saturday, 3 November, 12
TEMPLATE COMPILATION




                           TWIG    PHP




Saturday, 3 November, 12
TEMPLATE COMPILATION




                           TWIG    PHP      HTML




Saturday, 3 November, 12
TEMPLATE COMPILATION




                           TWIG      PHP          HTML

                                  Saved to disk




Saturday, 3 November, 12
TEMPLATE COMPILATION




                                     PHP          HTML

                                  Saved to disk




Saturday, 3 November, 12
HOW WE DEPLOY




Saturday, 3 November, 12
HOW WE DEPLOY



                 COPY
                 FILES




Saturday, 3 November, 12
HOW WE DEPLOY



                 COPY         COMPILE
                 FILES        / BUILD




Saturday, 3 November, 12
HOW WE DEPLOY



                 COPY         COMPILE
                                           SYMLINK
                 FILES        / BUILD




Saturday, 3 November, 12
PRECOMPILE SCRIPT
              $directory = new RecursiveDirectoryIterator($argv[0]);
              $recurser = new RecursiveIteratorIterator($directory);
              $matcher = new RegexIterator(
                $recurser,
                '/.*?.twig$/',
                RegexIterator::GET_MATCH);

              echo "Compiling Templatesn";

              $i = 0;
              foreach ($matcher as $file) {
                $filename = str_replace($argv[1], '', $file[0]);
                AppTwig::loadTemplate('/' . $filename);
                echo '.';
                $i++;
              }
              echo "nTemplates compiledn";
              exit(0);


Saturday, 3 November, 12
TWIG C EXTENSION



                    You can also install ext/twig.

                    This pushes the most frequently used method
                    Twig_Template::getAttribute() into C which increases
                    performance considerably.

                    The C extension is in the Twig repository.




Saturday, 3 November, 12
QUESTIONS?




Saturday, 3 November, 12
THANKS
                               @MARK_STORY
                           HTTP://MARK-STORY.COM




Saturday, 3 November, 12
1 of 59

Recommended

Fraction workshop by
Fraction workshopFraction workshop
Fraction workshopJacqui Sharp
17.5K views38 slides
1. HTML by
1. HTML1. HTML
1. HTMLPavle Đorđević
941 views26 slides
Html5 tutorial for beginners by
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
16.3K views56 slides
Html by
HtmlHtml
HtmlNisa Soomro
2.2K views51 slides
Fractions slideshare by
Fractions slideshareFractions slideshare
Fractions slideshareDimakatso Nxumalo
720 views11 slides
R markdown and Rmdformats by
R markdown and RmdformatsR markdown and Rmdformats
R markdown and RmdformatsHoffman Lab
273 views18 slides

More Related Content

Similar to Introduction to Twig

Objects, Testing, and Responsibility by
Objects, Testing, and ResponsibilityObjects, Testing, and Responsibility
Objects, Testing, and Responsibilitymachuga
17.1K views71 slides
Wordpress Plugin Development Practices by
Wordpress Plugin Development PracticesWordpress Plugin Development Practices
Wordpress Plugin Development Practicesserversideup
1.8K views28 slides
Empezando con Twig by
Empezando con TwigEmpezando con Twig
Empezando con TwigIsmael Ambrosi
732 views54 slides
Symfony2 and MongoDB - MidwestPHP 2013 by
Symfony2 and MongoDB - MidwestPHP 2013   Symfony2 and MongoDB - MidwestPHP 2013
Symfony2 and MongoDB - MidwestPHP 2013 Pablo Godel
8.1K views116 slides
Effective PHP. Part 3 by
Effective PHP. Part 3Effective PHP. Part 3
Effective PHP. Part 3Vasily Kartashov
509 views20 slides
Elasticsearch in 15 minutes by
Elasticsearch in 15 minutesElasticsearch in 15 minutes
Elasticsearch in 15 minutesDavid Pilato
17K views44 slides

Similar to Introduction to Twig(20)

Objects, Testing, and Responsibility by machuga
Objects, Testing, and ResponsibilityObjects, Testing, and Responsibility
Objects, Testing, and Responsibility
machuga17.1K views
Wordpress Plugin Development Practices by serversideup
Wordpress Plugin Development PracticesWordpress Plugin Development Practices
Wordpress Plugin Development Practices
serversideup1.8K views
Symfony2 and MongoDB - MidwestPHP 2013 by Pablo Godel
Symfony2 and MongoDB - MidwestPHP 2013   Symfony2 and MongoDB - MidwestPHP 2013
Symfony2 and MongoDB - MidwestPHP 2013
Pablo Godel8.1K views
Elasticsearch in 15 minutes by David Pilato
Elasticsearch in 15 minutesElasticsearch in 15 minutes
Elasticsearch in 15 minutes
David Pilato17K views
Building maintainable javascript applications by equisodie
Building maintainable javascript applicationsBuilding maintainable javascript applications
Building maintainable javascript applications
equisodie591 views
Questions On The Code And Core Module by Katie Gulley
Questions On The Code And Core ModuleQuestions On The Code And Core Module
Questions On The Code And Core Module
Katie Gulley2 views
If you have a problem, if no one else can help... and if you can find them, m... by bitcoder
If you have a problem, if no one else can help... and if you can find them, m...If you have a problem, if no one else can help... and if you can find them, m...
If you have a problem, if no one else can help... and if you can find them, m...
bitcoder1.7K views
Zend framework 03 - singleton factory data mapper caching logging by Tricode (part of Dept)
Zend framework 03 - singleton factory data mapper caching loggingZend framework 03 - singleton factory data mapper caching logging
Zend framework 03 - singleton factory data mapper caching logging
Basics of Metaprogramming in Ruby by Digital Natives
Basics of Metaprogramming in RubyBasics of Metaprogramming in Ruby
Basics of Metaprogramming in Ruby
Digital Natives811 views
Lithium: The Framework for People Who Hate Frameworks by Nate Abele
Lithium: The Framework for People Who Hate FrameworksLithium: The Framework for People Who Hate Frameworks
Lithium: The Framework for People Who Hate Frameworks
Nate Abele12.2K views
Drupal 8 configuration system for coders and site builders - DrupalCamp Balti... by swentel
Drupal 8 configuration system for coders and site builders - DrupalCamp Balti...Drupal 8 configuration system for coders and site builders - DrupalCamp Balti...
Drupal 8 configuration system for coders and site builders - DrupalCamp Balti...
swentel6.5K views
Php object orientation and classes by Kumar
Php object orientation and classesPhp object orientation and classes
Php object orientation and classes
Kumar 2.1K views

More from markstory

Dependency injection in CakePHP by
Dependency injection in CakePHPDependency injection in CakePHP
Dependency injection in CakePHPmarkstory
759 views38 slides
Safer, More Helpful CakePHP by
Safer, More Helpful CakePHPSafer, More Helpful CakePHP
Safer, More Helpful CakePHPmarkstory
1.2K views31 slides
CakePHP - The Road Ahead by
CakePHP - The Road AheadCakePHP - The Road Ahead
CakePHP - The Road Aheadmarkstory
7.6K views64 slides
Future of HTTP in CakePHP by
Future of HTTP in CakePHPFuture of HTTP in CakePHP
Future of HTTP in CakePHPmarkstory
4.3K views55 slides
CakePHP mistakes made 2015 by
CakePHP mistakes made 2015CakePHP mistakes made 2015
CakePHP mistakes made 2015markstory
1.8K views42 slides
New in cakephp3 by
New in cakephp3New in cakephp3
New in cakephp3markstory
2.1K views44 slides

More from markstory(20)

Dependency injection in CakePHP by markstory
Dependency injection in CakePHPDependency injection in CakePHP
Dependency injection in CakePHP
markstory759 views
Safer, More Helpful CakePHP by markstory
Safer, More Helpful CakePHPSafer, More Helpful CakePHP
Safer, More Helpful CakePHP
markstory1.2K views
CakePHP - The Road Ahead by markstory
CakePHP - The Road AheadCakePHP - The Road Ahead
CakePHP - The Road Ahead
markstory7.6K views
Future of HTTP in CakePHP by markstory
Future of HTTP in CakePHPFuture of HTTP in CakePHP
Future of HTTP in CakePHP
markstory4.3K views
CakePHP mistakes made 2015 by markstory
CakePHP mistakes made 2015CakePHP mistakes made 2015
CakePHP mistakes made 2015
markstory1.8K views
New in cakephp3 by markstory
New in cakephp3New in cakephp3
New in cakephp3
markstory2.1K views
PHP WTF by markstory
PHP WTFPHP WTF
PHP WTF
markstory7.1K views
CakePHP 3.0 and beyond by markstory
CakePHP 3.0 and beyondCakePHP 3.0 and beyond
CakePHP 3.0 and beyond
markstory3K views
CakePHP mistakes made confoo 2015 by markstory
CakePHP mistakes made confoo 2015CakePHP mistakes made confoo 2015
CakePHP mistakes made confoo 2015
markstory943 views
CakePHP mistakes made by markstory
CakePHP mistakes madeCakePHP mistakes made
CakePHP mistakes made
markstory2.8K views
Performance and optimization CakeFest 2014 by markstory
Performance and optimization CakeFest 2014Performance and optimization CakeFest 2014
Performance and optimization CakeFest 2014
markstory1.6K views
Road to CakePHP 3.0 by markstory
Road to CakePHP 3.0Road to CakePHP 3.0
Road to CakePHP 3.0
markstory11.1K views
Performance and optimization by markstory
Performance and optimizationPerformance and optimization
Performance and optimization
markstory2.6K views
OWASP Top 10 2013 by markstory
OWASP Top 10 2013OWASP Top 10 2013
OWASP Top 10 2013
markstory7.6K views
CakePHP the yum & yuck by markstory
CakePHP the yum & yuckCakePHP the yum & yuck
CakePHP the yum & yuck
markstory4.6K views
Owasp top 10 by markstory
Owasp top 10Owasp top 10
Owasp top 10
markstory9.2K views
Simple search with elastic search by markstory
Simple search with elastic searchSimple search with elastic search
Simple search with elastic search
markstory6.6K views
Making the most of 2.2 by markstory
Making the most of 2.2Making the most of 2.2
Making the most of 2.2
markstory1.2K views
Intro to continuous integration by markstory
Intro to continuous integration Intro to continuous integration
Intro to continuous integration
markstory1.1K views
Evented applications with RabbitMQ and CakePHP by markstory
Evented applications with RabbitMQ and CakePHPEvented applications with RabbitMQ and CakePHP
Evented applications with RabbitMQ and CakePHP
markstory6.4K views

Introduction to Twig

  • 2. ABOUT ME Team lead at FreshBooks Lead Developer of CakePHP Contributor to Twig Saturday, 3 November, 12
  • 3. WHAT IS IT Templating language for PHP. Uses syntax and ideas from jinja2. Flexible and extensible at every layer. Saturday, 3 November, 12
  • 4. BUT PHP IS A TEMPLATING LANGUAGE DUMMY Saturday, 3 November, 12
  • 5. PHP SUCKS FOR TEMPLATING // In Plain PHP <?php echo $var; ?> (XSS you lose) <?php echo htmlspecialchars($var, ENT_QUOTES, ‘UTF-8’); ?> <?php echo h($var); ?> (sugar for htmlentities) // In Twig - autoescaping enabled {{ var }} Saturday, 3 November, 12
  • 6. BENEFITS OF TWIG Terse syntax, and sugar. Automatic HTML escaping. Sandbox mode, which enables user editable templates. Ability to create custom DSL’s using application tags, operators and functions. Saturday, 3 November, 12
  • 7. PLAIN PHP VS TWIG Saturday, 3 November, 12
  • 8. CONDITIONALS // In Plain PHP <?php if (!empty($var): ?> ... <?php endif; ?> // In Twig {% if var %} ... {% endif %} Saturday, 3 November, 12
  • 9. LOOPS <?php if (!empty($var): foreach ((array)$var as $i => $v): printf( ‘%s : %s’, htmlspecialchars($i, ENT_QUOTES, ‘UTF-8’), htmlspecialchars($v, ENT_QUOTES, ‘UTF-8’)); endforeach; else: echo ‘No things’; endif; Saturday, 3 November, 12
  • 10. LOOPS {% for i, v in var %} {{ i }} : {{ v }} {% else %} No things {% endfor %} Saturday, 3 November, 12
  • 11. LOOPS {% for user in users if user.active %} {{ user.name }} : {{ user.email }} {% else %} No active users {% endfor %} Saturday, 3 November, 12
  • 12. BUT WAIT THERE IS MORE Saturday, 3 November, 12
  • 13. AWESOME++ Macros. Blocks & extending templates. Saturday, 3 November, 12
  • 14. MACROS {% macro username(user) %} <a href=”{{ url({ ‘controller’: ‘users’, ‘action’: ‘view’, user.username) }}”> <span class=”user-first-name”> {{ user.first_name }} </span> <span> class=”user-last-name”> {{ user.last_name }} </span> </a> {% endmacro %} Saturday, 3 November, 12
  • 15. IMPORTING MACROS // import all the macros {% import ‘/import/formatting.twig’ as formatting %} {{ formatting.username(user) }} // import one macro {% from ‘/import/formatting.twig’ import username %} {{ username(user) }} // import one & alias it. {% from ‘/import/formatting.twig’ import username as un %} {{ un(user) }} Saturday, 3 November, 12
  • 16. INHERITANCE & BLOCKS Extending views & blocks work hand in hand. Blocks are like slots or holes in a template, that the child can fill. Blocks can be used out of order, which is pretty sweet. Blocks can be imported from other templates, similar to traits. Saturday, 3 November, 12
  • 17. INHERITANCE {# layout/base.twig #} Company X - Official Email template {% block content ‘Super important’ %} Copyright 2012 Saturday, 3 November, 12
  • 18. INHERITANCE {# email/winner.twig #} {% extend ‘/layout/base.twig’ %} {% block content %} To whom it may concern, You win! {% endblock %} Saturday, 3 November, 12
  • 19. INHERITANCE {# email/winner.twig #} {% extend ‘/layout/base.twig’ %} {% block content %} To whom it may concern, {{ parent() }} You win! {% endblock %} Saturday, 3 November, 12
  • 20. INHERITANCE TIPS Don’t use {% block %} inside a loop. It doesn’t do what you want. You can use {{ block(name) }} to dynamically call blocks. Saturday, 3 November, 12
  • 21. EXTENDING TWIG TWIG EXTENSIONS Saturday, 3 November, 12
  • 22. EXTENDING TWIG Twig can be extended in several ways. Filters, Functions, Globals, Tests, Operators, TokenParsers, NodeVisitors. You should use extensions to package up your enhancements. Saturday, 3 November, 12
  • 24. LOADING EXTENSIONS $loader = new Twig_Loader_FileSystem(APP . ‘/templates’); $twig = new Twig_Environment($loader, $options); $twig->addExtension(new App_Extension_Url()); Saturday, 3 November, 12
  • 25. ENVIRONMENT FACTORY class AppTwig { static function loadTemplate($template, $options = array()) { $loader = new Twig_Loader_FileSystem(APP . ‘/templates’); $twig = new Twig_Environment($loader, $options); $twig->addExtension(new App_Extension_Url()); // Load more extensions return $twig->loadTemplate($template); } } $template = AppTwig::loadTemplate(‘/users/profile.twig’); Saturday, 3 November, 12
  • 26. EXTENSION EXAMPLE <?php class App_Extension_Url extends Twig_Extension { public function getName() { return ‘app.url’; } public function getFilters() { return array( ‘name’ => new Twig_Filter_Method($this, ‘formatName’), ); } } Saturday, 3 November, 12
  • 27. GLOBALS Can be used to expose application or framework objects. Great for migrating an older codebase to use Twig. E.g {{ html.link(...) }} Saturday, 3 November, 12
  • 28. FUNCTIONS Global functions added to a template context. Great for providing shortcuts to application features, like url generation or built-in PHP functions. Example {{ form_input(model, ‘name’) }} Saturday, 3 November, 12
  • 29. FILTERS Filters are intended for simple formatting functions. The filtered variable is the first argument to the filter function. Filters can have additional arguments as well. Example: {{ invoice.amount|currency(‘CAD’) }} Saturday, 3 November, 12
  • 30. TESTS Allow you to implement custom conditional logic. In an expressive manner with domain objects. Value being compared is supplied as the first argument. Other arguments follow. {% if user is paying %} {% if number is divisibleby(3) %} Saturday, 3 November, 12
  • 31. NODE VISITORS Allows you to visit each node in the Abstract syntax tree. Applied before template is compiled. Commonly used for optimizing the AST, or applying transformations to, or reading data from nodes in the tree. Saturday, 3 November, 12
  • 32. CUSTOM TAGS Saturday, 3 November, 12
  • 33. TWIG INTERNALS ENVIRONMENT LOADER Saturday, 3 November, 12
  • 34. TWIG INTERNALS ENVIRONMENT LEXER LOADER Saturday, 3 November, 12
  • 35. TWIG INTERNALS ENVIRONMENT LEXER LOADER TOKENS Saturday, 3 November, 12
  • 36. TWIG INTERNALS ENVIRONMENT LEXER PARSER LOADER TOKENS Saturday, 3 November, 12
  • 37. TWIG INTERNALS ENVIRONMENT LEXER PARSER LOADER TOKENS NODES Saturday, 3 November, 12
  • 38. TWIG INTERNALS ENVIRONMENT LEXER PARSER COMPILER LOADER TOKENS NODES Saturday, 3 November, 12
  • 39. TWIG INTERNALS ENVIRONMENT LEXER PARSER COMPILER LOADER TOKENS NODES PHP CODE Saturday, 3 November, 12
  • 40. TOKEN PARSERS Used to implement custom tags or DSL features. The most complex feature to add. Each tag is composed of two parts: TokenParser - parses the tag and validates its syntax. Node - Added to the AST and compiles the PHP code used in templates. Saturday, 3 November, 12
  • 41. TAG EXAMPLE {% debug %} {% debug my_var %} {% debug 2 > 1 %} Saturday, 3 November, 12
  • 42. TOKEN PARSER class App_TokenParser_Debug extends Twig_TokenParser { public function parse(Twig_Token $token) { $line = $token->getLine(); $expr = null; if (!$this->parser->getStream()->test(Twig_Token::BLOCK_END_TYPE)) { $expr = $this->parser->getExpressionParser->parseExpression(); } $this->parse->getStream()->expect(Twig_Token::BLOCK_END_TYPE); return new App_Node_Debug($expr, $line, $this->getTag()); } } Saturday, 3 November, 12
  • 43. NODE COMPILER class App_Node_Debug extends Twig_Node { public function __construct(Twig_Node_Expression $ex, $line, $tag) { parent::__construct(array(‘expr’ => $ex), $line, $tag); } public function compile(Twig_Compiler $compiler) { $compiler->write(‘if ($this->env->isDebug()) {‘); if ($this->getNode(‘expr’) === null) { // Print all vars. } else { $compiler->write(‘var_dump(‘) ->subcompile($this->getNode(‘expr’)) ->raw(‘);’); } $compiler->write(‘}’); } } Saturday, 3 November, 12
  • 44. OPERATORS Allow you to add additional boolean operators. I’ve never used this feature. Saturday, 3 November, 12
  • 46. TWIG IN PRODUCTION FreshBooks (the app, not the website). 520+ templates. Twig templates are used for almost all HTML & E-mail content. Saturday, 3 November, 12
  • 47. TEMPLATE COMPILATION TWIG Saturday, 3 November, 12
  • 48. TEMPLATE COMPILATION TWIG PHP Saturday, 3 November, 12
  • 49. TEMPLATE COMPILATION TWIG PHP HTML Saturday, 3 November, 12
  • 50. TEMPLATE COMPILATION TWIG PHP HTML Saved to disk Saturday, 3 November, 12
  • 51. TEMPLATE COMPILATION PHP HTML Saved to disk Saturday, 3 November, 12
  • 52. HOW WE DEPLOY Saturday, 3 November, 12
  • 53. HOW WE DEPLOY COPY FILES Saturday, 3 November, 12
  • 54. HOW WE DEPLOY COPY COMPILE FILES / BUILD Saturday, 3 November, 12
  • 55. HOW WE DEPLOY COPY COMPILE SYMLINK FILES / BUILD Saturday, 3 November, 12
  • 56. PRECOMPILE SCRIPT $directory = new RecursiveDirectoryIterator($argv[0]); $recurser = new RecursiveIteratorIterator($directory); $matcher = new RegexIterator( $recurser, '/.*?.twig$/', RegexIterator::GET_MATCH); echo "Compiling Templatesn"; $i = 0; foreach ($matcher as $file) { $filename = str_replace($argv[1], '', $file[0]); AppTwig::loadTemplate('/' . $filename); echo '.'; $i++; } echo "nTemplates compiledn"; exit(0); Saturday, 3 November, 12
  • 57. TWIG C EXTENSION You can also install ext/twig. This pushes the most frequently used method Twig_Template::getAttribute() into C which increases performance considerably. The C extension is in the Twig repository. Saturday, 3 November, 12
  • 59. THANKS @MARK_STORY HTTP://MARK-STORY.COM Saturday, 3 November, 12