@@ -96,22 +96,12 @@ Returns an instance of ``ControllerReference`` to be used with functions
96
96
like :ref: `render() <reference-twig-function-render >` and
97
97
:ref: `render_esi() <reference-twig-function-render-esi >`.
98
98
99
- .. _reference-twig-function-asset :
100
-
101
99
.. code-block :: html+twig
102
100
103
- {% set myArray = {'a': 'foo', 'b': 'bar'} %}
104
-
105
- <iframe src="{{ render(controller('App\\ Controller\\ MyController::baz', {'myArray': myArray})) }}"></iframe>
106
-
107
- Output:
108
-
109
- .. code-block :: html
101
+ {{ render(controller('App\\ Controller\\ BlogController:latest', {max: 3})) }}
102
+ {# output: the content returned by the controller method; e.g. a rendered Twig template #}
110
103
111
- <iframe src =" <ul>
112
- <li>foo</li>
113
- <li>bar</li>
114
- </ul>" ></iframe >
104
+ .. _reference-twig-function-asset :
115
105
116
106
asset
117
107
~~~~~
@@ -188,8 +178,9 @@ in a regular HTML form not managed by the Symfony Form component.
188
178
189
179
.. code-block :: twig
190
180
191
- {{ csrf_token(intention = 'my_form') }}
192
- {# output: generates a variable token #}
181
+ {{ csrf_token('my_form') }}
182
+ {# output: a random alphanumeric string like:
183
+ a.YOosAd0fhT7BEuUCFbROzrvgkW8kpEmBDQ_DKRMUi2o.Va8ZQKt5_2qoa7dLW-02_PLYwDBx9nnWOluUHUFCwC5Zo0VuuVfQCqtngg #}
193
184
194
185
is_granted
195
186
~~~~~~~~~~
@@ -850,7 +841,7 @@ Generates an excerpt of a code file around the given ``line`` number. The
850
841
``srcContext `` argument defines the total number of lines to display around the
851
842
given line number (use ``-1 `` to display the whole file).
852
843
853
- Let's assume this is the content of a file :
844
+ Consider the following as the content of `` file.txt `` :
854
845
855
846
.. code-block :: text
856
847
@@ -862,15 +853,21 @@ Let's assume this is the content of a file :
862
853
863
854
.. code-block :: twig
864
855
865
- {{ " /path/to/file/file .txt" |file_excerpt(line = 4, srcContext = 1) }}
856
+ {{ ' /path/to/file.txt' |file_excerpt(line = 4, srcContext = 1) }}
866
857
{# output:
867
- 3.c
868
- 4.d
869
- 5.e #}
870
-
871
- {{ "/path/to/file/file.txt"|file_excerpt(line = 1, srcContext = 0) }}
858
+ <ol start="3">
859
+ <li><a class="anchor" id="line3"></a><code>c</code></li>
860
+ <li class="selected"><a class="anchor" id="line4"></a><code>d</code></li>
861
+ <li><a class="anchor" id="line5"></a><code>e</code></li>
862
+ </ol>
863
+ #}
864
+
865
+ {{ '/path/to/file.txt'|file_excerpt(line = 1, srcContext = 0) }}
872
866
{# output:
873
- 1.a #}
867
+ <ol start="1">
868
+ <li class="selected"><a class="anchor" id="line1"></a><code>a</code></li>
869
+ </ol>
870
+ #}
874
871
875
872
format_file
876
873
~~~~~~~~~~~
@@ -890,35 +887,28 @@ Generates the file path inside an ``<a>`` element. If the path is inside
890
887
the kernel root directory, the kernel root directory path is replaced by
891
888
``kernel.project_dir `` (showing the full path in a tooltip on hover).
892
889
893
- Example 1
894
-
895
890
.. code-block :: twig
896
891
897
- {{ "path/to/file/file.txt"|format_file(line = 1, text = "my_text") }}
898
-
899
- Output:
900
-
901
- .. code-block :: html
902
-
903
- <a href =" path/to/file/file.txt#L1"
904
- title =" Click to open this file" class =" file_link" >my_text at line 1
905
- </a >
906
-
907
- Example 2
908
-
909
- .. code-block :: twig
910
-
911
- {{ "path/to/file/file.txt"|format_file(line = 3) }}
892
+ {{ '/path/to/file.txt'|format_file(line = 1, text = "my_text") }}
893
+ {# output:
894
+ <a href="/path/to/file.txt#L1"
895
+ title="Click to open this file" class="file_link">my_text at line 1
896
+ </a>
897
+ #}
912
898
913
- Output:
899
+ {{ "/path/to/file.txt"|format_file(line = 3) }}
900
+ {# output:
901
+ <a href="/path/to/file.txt&line=3"
902
+ title="Click to open this file" class="file_link">/path/to/file.txt at line 3
903
+ </a>
904
+ #}
914
905
915
- .. code-block :: html
906
+ .. tip ::
916
907
917
- <a href =" path/to/file/file.txt#L3"
918
- title =" Click to open this file" class =" file_link" >
919
- <abbr title =" path/to/file/file.txt" >file.txt</abbr >
920
- / at line 3
921
- </a >
908
+ If you set the :ref: `framework.ide <reference-framework-ide >` option, the
909
+ generated links will change to open the file in that IDE/editor. For example,
910
+ when using PhpStorm, the ``<a href="/path/to/file.txt&line=3" `` link will
911
+ become ``<a href="phpstorm://open?file=/path/to/file.txt&line=3" ``.
922
912
923
913
format_file_from_text
924
914
~~~~~~~~~~~~~~~~~~~~~
0 commit comments