You are here

function date_recur_theme in Recurring Dates Field 8

Same name and namespace in other branches
  1. 8.2 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 15
Contains hooks for date_recur module.

Code

function date_recur_theme($existing, $type, $theme, $path) {
  return [
    'date_recur_default_formatter' => [
      'variables' => [
        'occurrences' => [],
        'repeatrule' => NULL,
        'date' => NULL,
        'isRecurring' => FALSE,
      ],
    ],
  ];
}