function twig_init

Implements hook_init().

File

drupal/core/themes/engines/twig/twig.engine, line 26
Handles integration of Twig templates with the Drupal theme system.

Code

function twig_init($template) {
  $file = dirname($template->filename) . '/template.php';
  if (file_exists($file)) {
    include_once DRUPAL_ROOT . '/' . $file;
  }
}