This file is indexed.

/usr/share/doc/php-twig-doc/manual/advanced.html is in php-twig-doc 1.23.1-1ubuntu4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Extending Twig &mdash; php-twig-doc 1.23.1 documentation</title>
    
    <link rel="stylesheet" href="_static/classic.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '1.23.1',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="top" title="php-twig-doc 1.23.1 documentation" href="index.html" />
    <link rel="next" title="Twig Internals" href="internals.html" />
    <link rel="prev" title="Twig for Developers" href="api.html" /> 
  </head>
  <body role="document">
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="internals.html" title="Twig Internals"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="api.html" title="Twig for Developers"
             accesskey="P">previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="index.html">php-twig-doc 1.23.1 documentation</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="extending-twig">
<h1>Extending Twig<a class="headerlink" href="#extending-twig" title="Permalink to this headline"></a></h1>
<div class="admonition caution">
<p class="first admonition-title">Caution</p>
<p class="last">This section describes how to extend Twig as of <strong>Twig 1.12</strong>. If you are
using an older version, read the <a class="reference internal" href="advanced_legacy.html"><em>legacy</em></a> chapter
instead.</p>
</div>
<p>Twig can be extended in many ways; you can add extra tags, filters, tests,
operators, global variables, and functions. You can even extend the parser
itself with node visitors.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The first section of this chapter describes how to extend Twig easily. If
you want to reuse your changes in different projects or if you want to
share them with others, you should then create an extension as described
in the following section.</p>
</div>
<div class="admonition caution">
<p class="first admonition-title">Caution</p>
<p class="last">When extending Twig without creating an extension, Twig won&#8217;t be able to
recompile your templates when the PHP code is updated. To see your changes
in real-time, either disable template caching or package your code into an
extension (see the next section of this chapter).</p>
</div>
<p>Before extending Twig, you must understand the differences between all the
different possible extension points and when to use them.</p>
<p>First, remember that Twig has two main language constructs:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">{{</span> <span class="pre">}}</span></code>: used to print the result of an expression evaluation;</li>
<li><code class="docutils literal"><span class="pre">{%</span> <span class="pre">%}</span></code>: used to execute statements.</li>
</ul>
<p>To understand why Twig exposes so many extension points, let&#8217;s see how to
implement a <em>Lorem ipsum</em> generator (it needs to know the number of words to
generate).</p>
<p>You can use a <code class="docutils literal"><span class="pre">lipsum</span></code> <em>tag</em>:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{%</span> <span class="k">lipsum</span> <span class="m">40</span> <span class="cp">%}</span><span class="x"></span>
</pre></div>
</div>
<p>That works, but using a tag for <code class="docutils literal"><span class="pre">lipsum</span></code> is not a good idea for at least
three main reasons:</p>
<ul>
<li><p class="first"><code class="docutils literal"><span class="pre">lipsum</span></code> is not a language construct;</p>
</li>
<li><p class="first">The tag outputs something;</p>
</li>
<li><p class="first">The tag is not flexible as you cannot use it in an expression:</p>
<div class="highlight-jinja"><div class="highlight"><pre>{{ &#39;some text&#39; ~ {% lipsum 40 %} ~ &#39;some more text&#39; }}
</pre></div>
</div>
</li>
</ul>
<p>In fact, you rarely need to create tags; and that&#8217;s good news because tags are
the most complex extension point of Twig.</p>
<p>Now, let&#8217;s use a <code class="docutils literal"><span class="pre">lipsum</span></code> <em>filter</em>:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="m">40</span><span class="o">|</span><span class="nf">lipsum</span> <span class="cp">}}</span><span class="x"></span>
</pre></div>
</div>
<p>Again, it works, but it looks weird. A filter transforms the passed value to
something else but here we use the value to indicate the number of words to
generate (so, <code class="docutils literal"><span class="pre">40</span></code> is an argument of the filter, not the value we want to
transform).</p>
<p>Next, let&#8217;s use a <code class="docutils literal"><span class="pre">lipsum</span></code> <em>function</em>:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="nv">lipsum</span><span class="o">(</span><span class="m">40</span><span class="o">)</span> <span class="cp">}}</span><span class="x"></span>
</pre></div>
</div>
<p>Here we go. For this specific example, the creation of a function is the
extension point to use. And you can use it anywhere an expression is accepted:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="s1">&#39;some text&#39;</span> <span class="o">~</span> <span class="nv">lipsum</span><span class="o">(</span><span class="m">40</span><span class="o">)</span> <span class="o">~</span> <span class="s1">&#39;some more text&#39;</span> <span class="cp">}}</span><span class="x"></span>

<span class="cp">{%</span> <span class="k">set</span> <span class="nv">lipsum</span> <span class="o">=</span> <span class="nv">lipsum</span><span class="o">(</span><span class="m">40</span><span class="o">)</span> <span class="cp">%}</span><span class="x"></span>
</pre></div>
</div>
<p>Last but not the least, you can also use a <em>global</em> object with a method able
to generate lorem ipsum text:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="nv">text.lipsum</span><span class="o">(</span><span class="m">40</span><span class="o">)</span> <span class="cp">}}</span><span class="x"></span>
</pre></div>
</div>
<p>As a rule of thumb, use functions for frequently used features and global
objects for everything else.</p>
<p>Keep in mind the following when you want to extend Twig:</p>
<table border="1" class="docutils">
<colgroup>
<col width="14%" />
<col width="37%" />
<col width="14%" />
<col width="35%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">What?</th>
<th class="head">Implementation difficulty?</th>
<th class="head">How often?</th>
<th class="head">When?</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td><em>macro</em></td>
<td>trivial</td>
<td>frequent</td>
<td>Content generation</td>
</tr>
<tr class="row-odd"><td><em>global</em></td>
<td>trivial</td>
<td>frequent</td>
<td>Helper object</td>
</tr>
<tr class="row-even"><td><em>function</em></td>
<td>trivial</td>
<td>frequent</td>
<td>Content generation</td>
</tr>
<tr class="row-odd"><td><em>filter</em></td>
<td>trivial</td>
<td>frequent</td>
<td>Value transformation</td>
</tr>
<tr class="row-even"><td><em>tag</em></td>
<td>complex</td>
<td>rare</td>
<td>DSL language construct</td>
</tr>
<tr class="row-odd"><td><em>test</em></td>
<td>trivial</td>
<td>rare</td>
<td>Boolean decision</td>
</tr>
<tr class="row-even"><td><em>operator</em></td>
<td>trivial</td>
<td>rare</td>
<td>Values transformation</td>
</tr>
</tbody>
</table>
<div class="section" id="globals">
<h2>Globals<a class="headerlink" href="#globals" title="Permalink to this headline"></a></h2>
<p>A global variable is like any other template variable, except that it&#8217;s
available in all templates and macros:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$twig-&gt;addGlobal(&#39;text&#39;, new Text());
</pre></div>
</div>
<p>You can then use the <code class="docutils literal"><span class="pre">text</span></code> variable anywhere in a template:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="nv">text.lipsum</span><span class="o">(</span><span class="m">40</span><span class="o">)</span> <span class="cp">}}</span><span class="x"></span>
</pre></div>
</div>
</div>
<div class="section" id="filters">
<h2>Filters<a class="headerlink" href="#filters" title="Permalink to this headline"></a></h2>
<p>Creating a filter is as simple as associating a name with a PHP callable:</p>
<div class="highlight-python"><div class="highlight"><pre>// an anonymous function
$filter = new Twig_SimpleFilter(&#39;rot13&#39;, function ($string) {
    return str_rot13($string);
});

// or a simple PHP function
$filter = new Twig_SimpleFilter(&#39;rot13&#39;, &#39;str_rot13&#39;);

// or a class method
$filter = new Twig_SimpleFilter(&#39;rot13&#39;, array(&#39;SomeClass&#39;, &#39;rot13Filter&#39;));
</pre></div>
</div>
<p>The first argument passed to the <code class="docutils literal"><span class="pre">Twig_SimpleFilter</span></code> constructor is the name
of the filter you will use in templates and the second one is the PHP callable
to associate with it.</p>
<p>Then, add the filter to your Twig environment:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$twig-&gt;addFilter($filter);
</pre></div>
</div>
<p>And here is how to use it in a template:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="s1">&#39;Twig&#39;</span><span class="o">|</span><span class="nf">rot13</span> <span class="cp">}}</span><span class="x"></span>

<span class="c">{# will output Gjvt #}</span><span class="x"></span>
</pre></div>
</div>
<p>When called by Twig, the PHP callable receives the left side of the filter
(before the pipe <code class="docutils literal"><span class="pre">|</span></code>) as the first argument and the extra arguments passed
to the filter (within parentheses <code class="docutils literal"><span class="pre">()</span></code>) as extra arguments.</p>
<p>For instance, the following code:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{{</span> <span class="s1">&#39;TWIG&#39;</span><span class="o">|</span><span class="nf">lower</span> <span class="cp">}}</span><span class="x"></span>
<span class="cp">{{</span> <span class="nv">now</span><span class="o">|</span><span class="nf">date</span><span class="o">(</span><span class="s1">&#39;d/m/Y&#39;</span><span class="o">)</span> <span class="cp">}}</span><span class="x"></span>
</pre></div>
</div>
<p>is compiled to something like the following:</p>
<div class="highlight-python"><div class="highlight"><pre>&lt;?php echo strtolower(&#39;TWIG&#39;) ?&gt;
&lt;?php echo twig_date_format_filter($now, &#39;d/m/Y&#39;) ?&gt;
</pre></div>
</div>
<p>The <code class="docutils literal"><span class="pre">Twig_SimpleFilter</span></code> class takes an array of options as its last
argument:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;rot13&#39;, &#39;str_rot13&#39;, $options);
</pre></div>
</div>
<div class="section" id="environment-aware-filters">
<h3>Environment-aware Filters<a class="headerlink" href="#environment-aware-filters" title="Permalink to this headline"></a></h3>
<p>If you want to access the current environment instance in your filter, set the
<code class="docutils literal"><span class="pre">needs_environment</span></code> option to <code class="docutils literal"><span class="pre">true</span></code>; Twig will pass the current
environment as the first argument to the filter call:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;rot13&#39;, function (Twig_Environment $env, $string) {
    // get the current charset for instance
    $charset = $env-&gt;getCharset();

    return str_rot13($string);
}, array(&#39;needs_environment&#39; =&gt; true));
</pre></div>
</div>
</div>
<div class="section" id="context-aware-filters">
<h3>Context-aware Filters<a class="headerlink" href="#context-aware-filters" title="Permalink to this headline"></a></h3>
<p>If you want to access the current context in your filter, set the
<code class="docutils literal"><span class="pre">needs_context</span></code> option to <code class="docutils literal"><span class="pre">true</span></code>; Twig will pass the current context as
the first argument to the filter call (or the second one if
<code class="docutils literal"><span class="pre">needs_environment</span></code> is also set to <code class="docutils literal"><span class="pre">true</span></code>):</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;rot13&#39;, function ($context, $string) {
    // ...
}, array(&#39;needs_context&#39; =&gt; true));

$filter = new Twig_SimpleFilter(&#39;rot13&#39;, function (Twig_Environment $env, $context, $string) {
    // ...
}, array(&#39;needs_context&#39; =&gt; true, &#39;needs_environment&#39; =&gt; true));
</pre></div>
</div>
</div>
<div class="section" id="automatic-escaping">
<h3>Automatic Escaping<a class="headerlink" href="#automatic-escaping" title="Permalink to this headline"></a></h3>
<p>If automatic escaping is enabled, the output of the filter may be escaped
before printing. If your filter acts as an escaper (or explicitly outputs HTML
or JavaScript code), you will want the raw output to be printed. In such a
case, set the <code class="docutils literal"><span class="pre">is_safe</span></code> option:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;nl2br&#39;, &#39;nl2br&#39;, array(&#39;is_safe&#39; =&gt; array(&#39;html&#39;)));
</pre></div>
</div>
<p>Some filters may need to work on input that is already escaped or safe, for
example when adding (safe) HTML tags to originally unsafe output. In such a
case, set the <code class="docutils literal"><span class="pre">pre_escape</span></code> option to escape the input data before it is run
through your filter:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;somefilter&#39;, &#39;somefilter&#39;, array(&#39;pre_escape&#39; =&gt; &#39;html&#39;, &#39;is_safe&#39; =&gt; array(&#39;html&#39;)));
</pre></div>
</div>
</div>
<div class="section" id="variadic-filters">
<h3>Variadic Filters<a class="headerlink" href="#variadic-filters" title="Permalink to this headline"></a></h3>
<div class="versionadded">
<p><span class="versionmodified">New in version 1.19: </span>Support for variadic filters was added in Twig 1.19.</p>
</div>
<p>When a filter should accept an arbitrary number of arguments, set the
<code class="docutils literal"><span class="pre">is_variadic</span></code> option to <code class="docutils literal"><span class="pre">true</span></code>; Twig will pass the extra arguments as the
last argument to the filter call as an array:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;thumbnail&#39;, function ($file, array $options = array()) {
    // ...
}, array(&#39;is_variadic&#39; =&gt; true));
</pre></div>
</div>
<p>Be warned that named arguments passed to a variadic filter cannot be checked
for validity as they will automatically end up in the option array.</p>
</div>
<div class="section" id="dynamic-filters">
<h3>Dynamic Filters<a class="headerlink" href="#dynamic-filters" title="Permalink to this headline"></a></h3>
<p>A filter name containing the special <code class="docutils literal"><span class="pre">*</span></code> character is a dynamic filter as
the <code class="docutils literal"><span class="pre">*</span></code> can be any string:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;*_path&#39;, function ($name, $arguments) {
    // ...
});
</pre></div>
</div>
<p>The following filters will be matched by the above defined dynamic filter:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">product_path</span></code></li>
<li><code class="docutils literal"><span class="pre">category_path</span></code></li>
</ul>
<p>A dynamic filter can define more than one dynamic parts:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;*_path_*&#39;, function ($name, $suffix, $arguments) {
    // ...
});
</pre></div>
</div>
<p>The filter will receive all dynamic part values before the normal filter
arguments, but after the environment and the context. For instance, a call to
<code class="docutils literal"><span class="pre">'foo'|a_path_b()</span></code> will result in the following arguments to be passed to
the filter: <code class="docutils literal"><span class="pre">('a',</span> <span class="pre">'b',</span> <span class="pre">'foo')</span></code>.</p>
</div>
<div class="section" id="deprecated-filters">
<h3>Deprecated Filters<a class="headerlink" href="#deprecated-filters" title="Permalink to this headline"></a></h3>
<div class="versionadded">
<p><span class="versionmodified">New in version 1.21: </span>Support for deprecated filters was added in Twig 1.21.</p>
</div>
<p>You can mark a filter as being deprecated by setting the <code class="docutils literal"><span class="pre">deprecated</span></code> option
to <code class="docutils literal"><span class="pre">true</span></code>. You can also give an alternative filter that replaces the
deprecated one when that makes sense:</p>
<div class="highlight-python"><div class="highlight"><pre>$filter = new Twig_SimpleFilter(&#39;obsolete&#39;, function () {
    // ...
}, array(&#39;deprecated&#39; =&gt; true, &#39;alternative&#39; =&gt; &#39;new_one&#39;));
</pre></div>
</div>
<p>When a filter is deprecated, Twig emits a deprecation notice when compiling a
template using it. See <a class="reference internal" href="recipes.html#deprecation-notices"><span>Displaying Deprecation Notices</span></a> for more information.</p>
</div>
</div>
<div class="section" id="functions">
<h2>Functions<a class="headerlink" href="#functions" title="Permalink to this headline"></a></h2>
<p>Functions are defined in the exact same way as filters, but you need to create
an instance of <code class="docutils literal"><span class="pre">Twig_SimpleFunction</span></code>:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$function = new Twig_SimpleFunction(&#39;function_name&#39;, function () {
    // ...
});
$twig-&gt;addFunction($function);
</pre></div>
</div>
<p>Functions support the same features as filters, except for the <code class="docutils literal"><span class="pre">pre_escape</span></code>
and <code class="docutils literal"><span class="pre">preserves_safety</span></code> options.</p>
</div>
<div class="section" id="tests">
<h2>Tests<a class="headerlink" href="#tests" title="Permalink to this headline"></a></h2>
<p>Tests are defined in the exact same way as filters and functions, but you need
to create an instance of <code class="docutils literal"><span class="pre">Twig_SimpleTest</span></code>:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$test = new Twig_SimpleTest(&#39;test_name&#39;, function () {
    // ...
});
$twig-&gt;addTest($test);
</pre></div>
</div>
<p>Tests allow you to create custom application specific logic for evaluating
boolean conditions. As a simple example, let&#8217;s create a Twig test that checks if
objects are &#8216;red&#8217;:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$test = new Twig_SimpleTest(&#39;red&#39;, function ($value) {
    if (isset($value-&gt;color) &amp;&amp; $value-&gt;color == &#39;red&#39;) {
        return true;
    }
    if (isset($value-&gt;paint) &amp;&amp; $value-&gt;paint == &#39;red&#39;) {
        return true;
    }
    return false;
});
$twig-&gt;addTest($test);
</pre></div>
</div>
<p>Test functions should always return true/false.</p>
<p>When creating tests you can use the <code class="docutils literal"><span class="pre">node_class</span></code> option to provide custom test
compilation. This is useful if your test can be compiled into PHP primitives.
This is used by many of the tests built into Twig:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$test = new Twig_SimpleTest(
    &#39;odd&#39;,
    null,
    array(&#39;node_class&#39; =&gt; &#39;Twig_Node_Expression_Test_Odd&#39;));
$twig-&gt;addTest($test);

class Twig_Node_Expression_Test_Odd extends Twig_Node_Expression_Test
{
    public function compile(Twig_Compiler $compiler)
    {
        $compiler
            -&gt;raw(&#39;(&#39;)
            -&gt;subcompile($this-&gt;getNode(&#39;node&#39;))
            -&gt;raw(&#39; % 2 == 1&#39;)
            -&gt;raw(&#39;)&#39;)
        ;
    }
}
</pre></div>
</div>
<p>The above example shows how you can create tests that use a node class. The
node class has access to one sub-node called &#8216;node&#8217;. This sub-node contains the
value that is being tested. When the <code class="docutils literal"><span class="pre">odd</span></code> filter is used in code such as:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{%</span> <span class="k">if</span> <span class="nv">my_value</span> <span class="k">is</span> <span class="nf">odd</span> <span class="cp">%}</span><span class="x"></span>
</pre></div>
</div>
<p>The <code class="docutils literal"><span class="pre">node</span></code> sub-node will contain an expression of <code class="docutils literal"><span class="pre">my_value</span></code>. Node-based
tests also have access to the <code class="docutils literal"><span class="pre">arguments</span></code> node. This node will contain the
various other arguments that have been provided to your test.</p>
<p>If you want to pass a variable number of positional or named arguments to the
test, set the <code class="docutils literal"><span class="pre">is_variadic</span></code> option to <code class="docutils literal"><span class="pre">true</span></code>. Tests also support dynamic
name feature as filters and functions.</p>
</div>
<div class="section" id="tags">
<h2>Tags<a class="headerlink" href="#tags" title="Permalink to this headline"></a></h2>
<p>One of the most exciting features of a template engine like Twig is the
possibility to define new language constructs. This is also the most complex
feature as you need to understand how Twig&#8217;s internals work.</p>
<p>Let&#8217;s create a simple <code class="docutils literal"><span class="pre">set</span></code> tag that allows the definition of simple
variables from within a template. The tag can be used like follows:</p>
<div class="highlight-jinja"><div class="highlight"><pre><span class="cp">{%</span> <span class="k">set</span> <span class="nv">name</span> <span class="o">=</span> <span class="s2">&quot;value&quot;</span> <span class="cp">%}</span><span class="x"></span>

<span class="cp">{{</span> <span class="nv">name</span> <span class="cp">}}</span><span class="x"></span>

<span class="c">{# should output value #}</span><span class="x"></span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The <code class="docutils literal"><span class="pre">set</span></code> tag is part of the Core extension and as such is always
available. The built-in version is slightly more powerful and supports
multiple assignments by default (cf. the template designers chapter for
more information).</p>
</div>
<p>Three steps are needed to define a new tag:</p>
<ul class="simple">
<li>Defining a Token Parser class (responsible for parsing the template code);</li>
<li>Defining a Node class (responsible for converting the parsed code to PHP);</li>
<li>Registering the tag.</li>
</ul>
<div class="section" id="registering-a-new-tag">
<h3>Registering a new tag<a class="headerlink" href="#registering-a-new-tag" title="Permalink to this headline"></a></h3>
<p>Adding a tag is as simple as calling the <code class="docutils literal"><span class="pre">addTokenParser</span></code> method on the
<code class="docutils literal"><span class="pre">Twig_Environment</span></code> instance:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$twig-&gt;addTokenParser(new Project_Set_TokenParser());
</pre></div>
</div>
</div>
<div class="section" id="defining-a-token-parser">
<h3>Defining a Token Parser<a class="headerlink" href="#defining-a-token-parser" title="Permalink to this headline"></a></h3>
<p>Now, let&#8217;s see the actual code of this class:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Set_TokenParser extends Twig_TokenParser
{
    public function parse(Twig_Token $token)
    {
        $parser = $this-&gt;parser;
        $stream = $parser-&gt;getStream();

        $name = $stream-&gt;expect(Twig_Token::NAME_TYPE)-&gt;getValue();
        $stream-&gt;expect(Twig_Token::OPERATOR_TYPE, &#39;=&#39;);
        $value = $parser-&gt;getExpressionParser()-&gt;parseExpression();
        $stream-&gt;expect(Twig_Token::BLOCK_END_TYPE);

        return new Project_Set_Node($name, $value, $token-&gt;getLine(), $this-&gt;getTag());
    }

    public function getTag()
    {
        return &#39;set&#39;;
    }
}
</pre></div>
</div>
<p>The <code class="docutils literal"><span class="pre">getTag()</span></code> method must return the tag we want to parse, here <code class="docutils literal"><span class="pre">set</span></code>.</p>
<p>The <code class="docutils literal"><span class="pre">parse()</span></code> method is invoked whenever the parser encounters a <code class="docutils literal"><span class="pre">set</span></code>
tag. It should return a <code class="docutils literal"><span class="pre">Twig_Node</span></code> instance that represents the node (the
<code class="docutils literal"><span class="pre">Project_Set_Node</span></code> calls creating is explained in the next section).</p>
<p>The parsing process is simplified thanks to a bunch of methods you can call
from the token stream (<code class="docutils literal"><span class="pre">$this-&gt;parser-&gt;getStream()</span></code>):</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">getCurrent()</span></code>: Gets the current token in the stream.</li>
<li><code class="docutils literal"><span class="pre">next()</span></code>: Moves to the next token in the stream, <em>but returns the old one</em>.</li>
<li><code class="docutils literal"><span class="pre">test($type)</span></code>, <code class="docutils literal"><span class="pre">test($value)</span></code> or <code class="docutils literal"><span class="pre">test($type,</span> <span class="pre">$value)</span></code>: Determines whether
the current token is of a particular type or value (or both). The value may be an
array of several possible values.</li>
<li><code class="docutils literal"><span class="pre">expect($type[,</span> <span class="pre">$value[,</span> <span class="pre">$message]])</span></code>: If the current token isn&#8217;t of the given
type/value a syntax error is thrown. Otherwise, if the type and value are correct,
the token is returned and the stream moves to the next token.</li>
<li><code class="docutils literal"><span class="pre">look()</span></code>: Looks a the next token without consuming it.</li>
</ul>
<p>Parsing expressions is done by calling the <code class="docutils literal"><span class="pre">parseExpression()</span></code> like we did for
the <code class="docutils literal"><span class="pre">set</span></code> tag.</p>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">Reading the existing <code class="docutils literal"><span class="pre">TokenParser</span></code> classes is the best way to learn all
the nitty-gritty details of the parsing process.</p>
</div>
</div>
<div class="section" id="defining-a-node">
<h3>Defining a Node<a class="headerlink" href="#defining-a-node" title="Permalink to this headline"></a></h3>
<p>The <code class="docutils literal"><span class="pre">Project_Set_Node</span></code> class itself is rather simple:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Set_Node extends Twig_Node
{
    public function __construct($name, Twig_Node_Expression $value, $line, $tag = null)
    {
        parent::__construct(array(&#39;value&#39; =&gt; $value), array(&#39;name&#39; =&gt; $name), $line, $tag);
    }

    public function compile(Twig_Compiler $compiler)
    {
        $compiler
            -&gt;addDebugInfo($this)
            -&gt;write(&#39;$context[\&#39;&#39;.$this-&gt;getAttribute(&#39;name&#39;).&#39;\&#39;] = &#39;)
            -&gt;subcompile($this-&gt;getNode(&#39;value&#39;))
            -&gt;raw(&quot;;\n&quot;)
        ;
    }
}
</pre></div>
</div>
<p>The compiler implements a fluid interface and provides methods that helps the
developer generate beautiful and readable PHP code:</p>
<ul class="simple">
<li><code class="docutils literal"><span class="pre">subcompile()</span></code>: Compiles a node.</li>
<li><code class="docutils literal"><span class="pre">raw()</span></code>: Writes the given string as is.</li>
<li><code class="docutils literal"><span class="pre">write()</span></code>: Writes the given string by adding indentation at the beginning
of each line.</li>
<li><code class="docutils literal"><span class="pre">string()</span></code>: Writes a quoted string.</li>
<li><code class="docutils literal"><span class="pre">repr()</span></code>: Writes a PHP representation of a given value (see
<code class="docutils literal"><span class="pre">Twig_Node_For</span></code> for a usage example).</li>
<li><code class="docutils literal"><span class="pre">addDebugInfo()</span></code>: Adds the line of the original template file related to
the current node as a comment.</li>
<li><code class="docutils literal"><span class="pre">indent()</span></code>: Indents the generated code (see <code class="docutils literal"><span class="pre">Twig_Node_Block</span></code> for a
usage example).</li>
<li><code class="docutils literal"><span class="pre">outdent()</span></code>: Outdents the generated code (see <code class="docutils literal"><span class="pre">Twig_Node_Block</span></code> for a
usage example).</li>
</ul>
</div>
</div>
<div class="section" id="creating-an-extension">
<span id="creating-extensions"></span><h2>Creating an Extension<a class="headerlink" href="#creating-an-extension" title="Permalink to this headline"></a></h2>
<p>The main motivation for writing an extension is to move often used code into a
reusable class like adding support for internationalization. An extension can
define tags, filters, tests, operators, global variables, functions, and node
visitors.</p>
<p>Creating an extension also makes for a better separation of code that is
executed at compilation time and code needed at runtime. As such, it makes
your code faster.</p>
<p>Most of the time, it is useful to create a single extension for your project,
to host all the specific tags and filters you want to add to Twig.</p>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">When packaging your code into an extension, Twig is smart enough to
recompile your templates whenever you make a change to it (when
<code class="docutils literal"><span class="pre">auto_reload</span></code> is enabled).</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Before writing your own extensions, have a look at the Twig official
extension repository: <a class="reference external" href="http://github.com/twigphp/Twig-extensions">http://github.com/twigphp/Twig-extensions</a>.</p>
</div>
<p>An extension is a class that implements the following interface:</p>
<div class="highlight-python"><div class="highlight"><pre>interface Twig_ExtensionInterface
{
    /**
     * Initializes the runtime environment.
     *
     * This is where you can load some file that contains filter functions for instance.
     *
     * @param Twig_Environment $environment The current Twig_Environment instance
     *
     * @deprecated since 1.23 (to be removed in 2.0), implement Twig_Extension_InitRuntimeInterace instead
     */
    function initRuntime(Twig_Environment $environment);

    /**
     * Returns the token parser instances to add to the existing list.
     *
     * @return array An array of Twig_TokenParserInterface or Twig_TokenParserBrokerInterface instances
     */
    function getTokenParsers();

    /**
     * Returns the node visitor instances to add to the existing list.
     *
     * @return array An array of Twig_NodeVisitorInterface instances
     */
    function getNodeVisitors();

    /**
     * Returns a list of filters to add to the existing list.
     *
     * @return array An array of filters
     */
    function getFilters();

    /**
     * Returns a list of tests to add to the existing list.
     *
     * @return array An array of tests
     */
    function getTests();

    /**
     * Returns a list of functions to add to the existing list.
     *
     * @return array An array of functions
     */
    function getFunctions();

    /**
     * Returns a list of operators to add to the existing list.
     *
     * @return array An array of operators
     */
    function getOperators();

    /**
     * Returns a list of global variables to add to the existing list.
     *
     * @return array An array of global variables
     *
     * @deprecated since 1.23 (to be removed in 2.0), implement Twig_Extension_GlobalsInterface instead
     */
    function getGlobals();

    /**
     * Returns the name of the extension.
     *
     * @return string The extension name
     */
    function getName();
}
</pre></div>
</div>
<p>To keep your extension class clean and lean, it can inherit from the built-in
<code class="docutils literal"><span class="pre">Twig_Extension</span></code> class instead of implementing the whole interface. That
way, you just need to implement the <code class="docutils literal"><span class="pre">getName()</span></code> method as the
<code class="docutils literal"><span class="pre">Twig_Extension</span></code> provides empty implementations for all other methods.</p>
<p>The <code class="docutils literal"><span class="pre">getName()</span></code> method must return a unique identifier for your extension.</p>
<p>Now, with this information in mind, let&#8217;s create the most basic extension
possible:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getName()
    {
        return &#39;project&#39;;
    }
}
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Of course, this extension does nothing for now. We will customize it in
the next sections.</p>
</div>
<p>Twig does not care where you save your extension on the filesystem, as all
extensions must be registered explicitly to be available in your templates.</p>
<p>You can register an extension by using the <code class="docutils literal"><span class="pre">addExtension()</span></code> method on your
main <code class="docutils literal"><span class="pre">Environment</span></code> object:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$twig-&gt;addExtension(new Project_Twig_Extension());
</pre></div>
</div>
<div class="admonition tip">
<p class="first admonition-title">Tip</p>
<p class="last">The bundled extensions are great examples of how extensions work.</p>
</div>
<div class="section" id="id1">
<h3>Globals<a class="headerlink" href="#id1" title="Permalink to this headline"></a></h3>
<p>Global variables can be registered in an extension via the <code class="docutils literal"><span class="pre">getGlobals()</span></code>
method:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getGlobals()
    {
        return array(
            &#39;text&#39; =&gt; new Text(),
        );
    }

    // ...
}
</pre></div>
</div>
</div>
<div class="section" id="id2">
<h3>Functions<a class="headerlink" href="#id2" title="Permalink to this headline"></a></h3>
<p>Functions can be registered in an extension via the <code class="docutils literal"><span class="pre">getFunctions()</span></code>
method:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getFunctions()
    {
        return array(
            new Twig_SimpleFunction(&#39;lipsum&#39;, &#39;generate_lipsum&#39;),
        );
    }

    // ...
}
</pre></div>
</div>
</div>
<div class="section" id="id3">
<h3>Filters<a class="headerlink" href="#id3" title="Permalink to this headline"></a></h3>
<p>To add a filter to an extension, you need to override the <code class="docutils literal"><span class="pre">getFilters()</span></code>
method. This method must return an array of filters to add to the Twig
environment:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getFilters()
    {
        return array(
            new Twig_SimpleFilter(&#39;rot13&#39;, &#39;str_rot13&#39;),
        );
    }

    // ...
}
</pre></div>
</div>
</div>
<div class="section" id="id4">
<h3>Tags<a class="headerlink" href="#id4" title="Permalink to this headline"></a></h3>
<p>Adding a tag in an extension can be done by overriding the
<code class="docutils literal"><span class="pre">getTokenParsers()</span></code> method. This method must return an array of tags to add
to the Twig environment:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getTokenParsers()
    {
        return array(new Project_Set_TokenParser());
    }

    // ...
}
</pre></div>
</div>
<p>In the above code, we have added a single new tag, defined by the
<code class="docutils literal"><span class="pre">Project_Set_TokenParser</span></code> class. The <code class="docutils literal"><span class="pre">Project_Set_TokenParser</span></code> class is
responsible for parsing the tag and compiling it to PHP.</p>
</div>
<div class="section" id="operators">
<h3>Operators<a class="headerlink" href="#operators" title="Permalink to this headline"></a></h3>
<p>The <code class="docutils literal"><span class="pre">getOperators()</span></code> methods lets you add new operators. Here is how to add
<code class="docutils literal"><span class="pre">!</span></code>, <code class="docutils literal"><span class="pre">||</span></code>, and <code class="docutils literal"><span class="pre">&amp;&amp;</span></code> operators:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getOperators()
    {
        return array(
            array(
                &#39;!&#39; =&gt; array(&#39;precedence&#39; =&gt; 50, &#39;class&#39; =&gt; &#39;Twig_Node_Expression_Unary_Not&#39;),
            ),
            array(
                &#39;||&#39; =&gt; array(&#39;precedence&#39; =&gt; 10, &#39;class&#39; =&gt; &#39;Twig_Node_Expression_Binary_Or&#39;, &#39;associativity&#39; =&gt; Twig_ExpressionParser::OPERATOR_LEFT),
                &#39;&amp;&amp;&#39; =&gt; array(&#39;precedence&#39; =&gt; 15, &#39;class&#39; =&gt; &#39;Twig_Node_Expression_Binary_And&#39;, &#39;associativity&#39; =&gt; Twig_ExpressionParser::OPERATOR_LEFT),
            ),
        );
    }

    // ...
}
</pre></div>
</div>
</div>
<div class="section" id="id5">
<h3>Tests<a class="headerlink" href="#id5" title="Permalink to this headline"></a></h3>
<p>The <code class="docutils literal"><span class="pre">getTests()</span></code> method lets you add new test functions:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Twig_Extension extends Twig_Extension
{
    public function getTests()
    {
        return array(
            new Twig_SimpleTest(&#39;even&#39;, &#39;twig_test_even&#39;),
        );
    }

    // ...
}
</pre></div>
</div>
</div>
</div>
<div class="section" id="overloading">
<h2>Overloading<a class="headerlink" href="#overloading" title="Permalink to this headline"></a></h2>
<p>To overload an already defined filter, test, operator, global variable, or
function, re-define it in an extension and register it <strong>as late as
possible</strong> (order matters):</p>
<div class="highlight-python"><div class="highlight"><pre>class MyCoreExtension extends Twig_Extension
{
    public function getFilters()
    {
        return array(
            new Twig_SimpleFilter(&#39;date&#39;, array($this, &#39;dateFilter&#39;)),
        );
    }

    public function dateFilter($timestamp, $format = &#39;F j, Y H:i&#39;)
    {
        // do something different from the built-in date filter
    }

    public function getName()
    {
        return &#39;project&#39;;
    }
}

$twig = new Twig_Environment($loader);
$twig-&gt;addExtension(new MyCoreExtension());
</pre></div>
</div>
<p>Here, we have overloaded the built-in <code class="docutils literal"><span class="pre">date</span></code> filter with a custom one.</p>
<p>If you do the same on the Twig_Environment itself, beware that it takes
precedence over any other registered extensions:</p>
<div class="highlight-python"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$twig-&gt;addFilter(new Twig_SimpleFilter(&#39;date&#39;, function ($timestamp, $format = &#39;F j, Y H:i&#39;) {
    // do something different from the built-in date filter
}));
// the date filter will come from the above registration, not
// from the registered extension below
$twig-&gt;addExtension(new MyCoreExtension());
</pre></div>
</div>
<div class="admonition caution">
<p class="first admonition-title">Caution</p>
<p class="last">Note that overloading the built-in Twig elements is not recommended as it
might be confusing.</p>
</div>
</div>
<div class="section" id="testing-an-extension">
<h2>Testing an Extension<a class="headerlink" href="#testing-an-extension" title="Permalink to this headline"></a></h2>
<div class="section" id="functional-tests">
<h3>Functional Tests<a class="headerlink" href="#functional-tests" title="Permalink to this headline"></a></h3>
<p>You can create functional tests for extensions simply by creating the
following file structure in your test directory:</p>
<div class="highlight-python"><div class="highlight"><pre>Fixtures/
    filters/
        foo.test
        bar.test
    functions/
        foo.test
        bar.test
    tags/
        foo.test
        bar.test
IntegrationTest.php
</pre></div>
</div>
<p>The <code class="docutils literal"><span class="pre">IntegrationTest.php</span></code> file should look like this:</p>
<div class="highlight-python"><div class="highlight"><pre>class Project_Tests_IntegrationTest extends Twig_Test_IntegrationTestCase
{
    public function getExtensions()
    {
        return array(
            new Project_Twig_Extension1(),
            new Project_Twig_Extension2(),
        );
    }

    public function getFixturesDir()
    {
        return dirname(__FILE__).&#39;/Fixtures/&#39;;
    }
}
</pre></div>
</div>
<p>Fixtures examples can be found within the Twig repository
<a class="reference external" href="https://github.com/twigphp/Twig/tree/master/test/Twig/Tests/Fixtures">tests/Twig/Fixtures</a> directory.</p>
</div>
<div class="section" id="node-tests">
<h3>Node Tests<a class="headerlink" href="#node-tests" title="Permalink to this headline"></a></h3>
<p>Testing the node visitors can be complex, so extend your test cases from
<code class="docutils literal"><span class="pre">Twig_Test_NodeTestCase</span></code>. Examples can be found in the Twig repository
<a class="reference external" href="https://github.com/twigphp/Twig/tree/master/test/Twig/Tests/Node">tests/Twig/Node</a> directory.</p>
</div>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h3><a href="index.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">Extending Twig</a><ul>
<li><a class="reference internal" href="#globals">Globals</a></li>
<li><a class="reference internal" href="#filters">Filters</a><ul>
<li><a class="reference internal" href="#environment-aware-filters">Environment-aware Filters</a></li>
<li><a class="reference internal" href="#context-aware-filters">Context-aware Filters</a></li>
<li><a class="reference internal" href="#automatic-escaping">Automatic Escaping</a></li>
<li><a class="reference internal" href="#variadic-filters">Variadic Filters</a></li>
<li><a class="reference internal" href="#dynamic-filters">Dynamic Filters</a></li>
<li><a class="reference internal" href="#deprecated-filters">Deprecated Filters</a></li>
</ul>
</li>
<li><a class="reference internal" href="#functions">Functions</a></li>
<li><a class="reference internal" href="#tests">Tests</a></li>
<li><a class="reference internal" href="#tags">Tags</a><ul>
<li><a class="reference internal" href="#registering-a-new-tag">Registering a new tag</a></li>
<li><a class="reference internal" href="#defining-a-token-parser">Defining a Token Parser</a></li>
<li><a class="reference internal" href="#defining-a-node">Defining a Node</a></li>
</ul>
</li>
<li><a class="reference internal" href="#creating-an-extension">Creating an Extension</a><ul>
<li><a class="reference internal" href="#id1">Globals</a></li>
<li><a class="reference internal" href="#id2">Functions</a></li>
<li><a class="reference internal" href="#id3">Filters</a></li>
<li><a class="reference internal" href="#id4">Tags</a></li>
<li><a class="reference internal" href="#operators">Operators</a></li>
<li><a class="reference internal" href="#id5">Tests</a></li>
</ul>
</li>
<li><a class="reference internal" href="#overloading">Overloading</a></li>
<li><a class="reference internal" href="#testing-an-extension">Testing an Extension</a><ul>
<li><a class="reference internal" href="#functional-tests">Functional Tests</a></li>
<li><a class="reference internal" href="#node-tests">Node Tests</a></li>
</ul>
</li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="api.html"
                        title="previous chapter">Twig for Developers</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="internals.html"
                        title="next chapter">Twig Internals</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="_sources/advanced.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="internals.html" title="Twig Internals"
             >next</a> |</li>
        <li class="right" >
          <a href="api.html" title="Twig for Developers"
             >previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="index.html">php-twig-doc 1.23.1 documentation</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &copy; Copyright by the Twig Team.
      Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.5.
    </div>
  </body>
</html>