How to pass custom variables to twig file in Drupal8?

 

You must create a preprocess function, for the template:

  function MY_MODULE_preprocess_TEMPLATE(&$variables) {

      $VARIABLE_NAME = 'my_variable';
      $variables['varname'] = $VARIABLE_NAME ;

  }

Clear the drupal cache.

 

Tags

Comments

informative

Add new comment

Restricted HTML

  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.
1 + 1 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.