You are here

function date_recur_theme in Recurring Dates Field 8.2

Same name and namespace in other branches
  1. 8 date_recur.module \date_recur_theme()
  2. 3.x date_recur.module \date_recur_theme()
  3. 3.0.x date_recur.module \date_recur_theme()
  4. 3.1.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);
}