Twig and PHP PhpStorm Live Templates for Craft CMS 3.
The Craft CMS Live Templates include various snippets for Craft-specific Twig tags and some other common use cases. Best when paired with Twig - Extended - a more extensive library of PhpStorm Live Templates for Twig.
// Examples
asset craft.assets.first()
assets craft.assets loop
categories craft.categories loop
entries craft.entries loop
feed craft.feeds.getFeedItems loop
matrix, matrixif Basic Matrix field loop using if statements
matrixifelse Basic Matrix field loop using if/elseif
matrixswitch Basic Matrix field loop using switch
paginate Outputs example of pagination and prev/next links
tags craft.tags loop
users craft.users loop
// Output Helpers
cache {% cache %}...{% endcache %}
csrf {{ csrfInput() }}
children {% children %}
exit {% exit 404 %}
ifchildren {% ifchildren %}...{% endifchildren %}
hook {% hook "$NAME$" %}
nav {% nav item in items %}...{% endnav %}
redirect {% redirect 'login' %}
redirectinput {{ redirectInput($URL$) }}
requirelogin {% requireLogin %}
requirepermission {% requirePermission "spendTheNight" %}
switch {% switch variable %}...{% endswitch %}
css {% css %}...{% endcss %}
js {% js %}...{% endjs %}
registercssfile {% do view.registerCssFile("css/style.css") %}
registerjsfile {% do view.registerJsFile("js/script.js") %}
header {% header "string" %}
beginBody {{ beginBody() }}
endbody {{ endBody() }}
head {{ head() }}
// Closing tags
case {% case "value" %}
endcache {% endcache %}
endifchildren {% endifchildren %}
endcss {% endcss %}
endjs {% endjs %}
endnav {% endnav %}
// craft.app
app craft.app.[CURSOR]
config craft.app.config.general.[CURSOR]
ismultisite craft.app.isMultiSite
language craft.app.language
locale craft.app.locale
// craft.app.request
getparam craft.app.request.getParam("name")
getbodyparam craft.app.request.getBodyParam("name")
getqueryparam craft.app.request.getQueryParam("name")
getsegment craft.app.request.getSegment(1)
// craft.app.i18n
alllocales craft.app.i18n.allLocales
applocales craft.app.i18n.appLocales
editablelocaleids craft.app.i18n.editableLocaleIds
editablelocales craft.app.i18n.editableLocales
getlocalebyid craft.app.i18n.getLocaleById($ID$)
primarysitelocale craft.app.i18n.primarySiteLocale
sitelocaleids craft.app.i18n.siteLocaleIds
sitelocales craft.app.i18n.siteLocales
alias alias("@baseUrl/images/image.png")
ceil ceil()
classname className(object)
clone clone(object)
floor floor()
getenv getenv('name')
max max()
min min()
round round()
shuffle shuffle()
svg svg('path')
url, urla url('path'), url('path', params, 'https', false)
siteurl, siteurla siteUrl('path'), siteUrl('path', params, 'https', 1)
migrate A basic migration class
dd Craft::dd("Dump & Die");
- Download and enable the Settings Repository Plugin: PhpStorm Preferences | Plugins | Settings Repository
- Go to PhpStorm Preferences | Tools | Settings Repository
- Add Read-only Source https://github.com/barrelstrength/PhpStorm-Live-Templates-Craft-CMS
- Restart PhpStorm
Visit Preferences->Editor->Live Templates
and ensure that the Craft CMS - Twig and Craft CMS - PHP Live Templates are enabled, as desired.
- Craft CMS - Twig.xml
- Craft CMS - PHP.xml
If you'd like to contribute to the Craft CMS Live Templates, please consider submitting a pull request, reporting an issue, providing examples of how you would like to see the behavior of the Live Templates improved, or just sending your thoughts.
- Craft CMS
- Twig
- PhpStorm
- PhpStorm Live Templates for Twig - A more extensive library of PhpStorm Live Templates for Twig.
- Straight Up Craft