function date_recur_theme in Recurring Dates Field 3.1.x
Same name and namespace in other branches
- 8.2 date_recur.module \date_recur_theme()
- 8 date_recur.module \date_recur_theme()
- 3.x date_recur.module \date_recur_theme()
- 3.0.x date_recur.module \date_recur_theme()
Implements hook_theme().
File
- ./
date_recur.module, line 18
Code
function date_recur_theme(array $existing, string $type, string $theme, string $path) : array {
/** @var \Drupal\date_recur\DateRecurCachedHooks $cachedHooks */
$cachedHooks = \Drupal::classResolver(DateRecurCachedHooks::class);
return $cachedHooks
->hookTheme($existing, $type, $theme, $path);
}