This extension adds 8 useful twig snippets that can be used with Drupal 8. These snippets were extracted from the Functions - in Twig Templates documentation.
To install this extension use the following steps:
- In VS Code, open the Command Palette using the shortcut key combination
ctrl-shift-p
(Windows, Linux) orcmd-shift-p
(OSX) - Then in the Command Palette box, type in
Install Extensions
and select that form the list. - This will open up the Extension Manager. In the search box type in
Drupal 8 Twig Snippets
. - Click the Install button, after that finishes make sure to reload VS Code as well.
Once installed, to use these snippets you can use the following two methods, the first Method is geared towards people who are new to the snippets available while the second method is suitable for people who know the available snippets and are looking to increase their speed.
- Open the Command Palette,
ctrl-shift-p
(Windows, Linux) orcmd-shift-p
(OSX) - In the command box type in
Insert Snippet
; this will list all the available snippets. - Select the snippet you want to use from the provided list.
- In the code editor window, type in the Prefix of the snippet you want to insert. This will show an intellisense window as you type.
- Insert the snippet you want by simply pressing the
tab
key.
Here you will find all the code snippets that are available in this extension. Please note that each title starts with the Prefix of the code snippet to insert; useful to memorize them if you plan to use Method 2 above.
Attaches an asset library to the template.
Example:
{{ attach_library('classy/node') }}
Creates an attribute on a DOM element.
Example:
<div{{ create_attribute({'class': ['region', 'region--header']}) }}>
{{ content }}
</div>
This helper function accepts a relative path from the root and creates a relative URI path to the file.
Example:
{{ file_url(node.field_example_image.entity.uri.value) }}
This helper function accepts as first parameter the text, as second parameter the url and as third paramter any attributes for the link.
Example:
{{ link(item.title, item.url, { 'class':['foo', 'bar', 'baz']} ) }}
Generates a relative URL path given a route name and parameters.
Example:
{# Link to user entity/profile page. #}
<a href="{{ path('entity.user.canonical', {'user': user.id}) }}">{{ 'View user profile'|t }}</a>
Generate an absolute URL given a route name and parameters.
Example:
<a href="{{ url('view.frontpage.page_1') }}">{{ 'View all content'|t }}</a>
Generate an absolute URL to the current url.
Example:
<a href="{{ url('<current>') }}">{{ 'View all content'|t }}</a>
Generate an absolute URL to the front page.
Example:
<a href="{{ url('<front>') }}">{{ 'View all content'|t }}</a>
These snippets are only made available in files with a .twig
extension. To get proper support for Twig files in Visual Studio Code, you can install the Twig Language 2 extension by mblode.
Fix typos in README
Added the Drupal 8 logo
Initial release