You are here

function twig_theme in Drupal 8

Same name and namespace in other branches
  1. 9 core/themes/engines/twig/twig.engine \twig_theme()

Implements hook_theme().

File

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

Code

function twig_theme($existing, $type, $theme, $path) {
  $templates = drupal_find_theme_functions($existing, [
    $theme,
  ]);
  $templates += drupal_find_theme_templates($existing, '.html.twig', $path);
  return $templates;
}