-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathopeny_repeat.module
54 lines (50 loc) · 1.18 KB
/
openy_repeat.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* @file
* Contains openy_repeat module hooks.
*/
/**
* Implements hook_theme().
*/
function openy_repeat_theme() {
$limit = \Drupal::config('openy_repeat.settings')->get('calendar_limit_days');
return [
'openy_repeat_schedule_dashboard' => [
'variables' => [
'locations' => [],
'categories' => [],
'checked_locations' => [],
'checked_categories' => [],
'calendar_limit' => $limit,
'filters' => [],
],
],
'openy_repeat_schedule_locations' => [
'variables' => [
'locations' => [],
],
],
'openy_repeat__pdf__body' => [
'variables' => [
'content' => [],
],
],
'openy_repeat__pdf__table__activity' => [
'variables' => [
'content' => [],
],
],
'openy_repeat__pdf__table__day' => [
'variables' => [
'content' => [],
],
],
];
}
/**
* Implements hook_page_attachments().
*/
function openy_repeat_page_attachments(array &$attachments) {
$limit = \Drupal::config('openy_repeat.settings')->get('calendar_limit_days');
$attachments['#attached']['drupalSettings']['openy_repeat']['calendarLimitDays'] = $limit;
}