By admin , 24 April, 2023 Debug twig with PHPStorm or VSCode using twig_tweak module Just add {{ drupal_breakpoint() }} and enable debug in PHPStorm or VSCode Tags twig phpstorm vscode
By admin , 22 April, 2023 Add twig template to custom entity /** * Implements hook_theme(). */ function mymodule_theme() { return [ 'my_entity' => [ 'render element' => 'elements', ], ]; } * Implements hook_preprocess_HOOK(). */ Tags twig custom entity
By admin , 31 March, 2023 Translate string in TWIG Use {% trans %} and {% endtrans %} Tags twig translate