-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathts_grid.theme
170 lines (137 loc) · 4.17 KB
/
ts_grid.theme
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/**
* @file
* Functions to support theming in the ts_grid theme.
*/
use Drupal\Core\Form\FormStateInterface;
/**
* Implements hook_preprocess_HOOK() for html.html.twig.
*/
function ts_grid_preprocess_html(array &$variables) {
// Adds a URL query (?show-grid=1) that makes the theming grid guide visible.
$variables['show_grid'] = \Drupal::request()->query->get('show-grid');
}
/**
* Implements hook_form_FORM_ID_alter().
*/
function ts_grid_form_views_exposed_form_alter(&$form, FormStateInterface $form_state) {
}
/**
* Implements hook_form_alter().
*/
function ts_grid_form_alter(&$form, FormStateInterface $form_state, $form_id) {
}
/**
* Implements hook_theme_suggestions_form_element_alter().
*
* Allows us to theme selects.
*/
function ts_grid_theme_suggestions_form_element_alter(array &$suggestions, array $variables, $hook) {
}
/**
* Implements hook_page_attachments_alter().
*/
function ts_grid_page_attachments_alter(array &$attachments) {
// Tell IE to use latest rendering engine (not to use compatibility mode).
/*$ie_edge = [
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => [
'http-equiv' => 'X-UA-Compatible',
'content' => 'IE=edge',
],
];
$attachments['#attached']['html_head'][] = [$ie_edge, 'ie_edge'];*/
// Use the dev library if we're developing locally.
if (in_array('ts_grid/main', $attachments['#attached']['library']) && file_exists(__DIR__ . '/dist_dev')) {
$index = array_search('ts_grid/main', $attachments['#attached']['library']);
$attachments['#attached']['library'][$index] = 'ts_grid/dev';
}
}
/**
* Implements hook_preprocess_page() for page.html.twig.
*/
function ts_grid_preprocess_page(array &$variables) {
}
/**
* Implements hook_theme_suggestions_page_alter().
*/
function ts_grid_theme_suggestions_page_alter(array &$suggestions, array $variables) {
}
/**
* Implements hook_theme_suggestions_node_alter().
*/
function ts_grid_theme_suggestions_node_alter(array &$suggestions, array $variables) {
/*$node = $variables['elements']['#node'];
if ($variables['elements']['#view_mode'] == "full") {
}*/
}
/**
* Implements hook_preprocess_HOOK() for Block document templates.
*/
function ts_grid_preprocess_block(array &$variables) {
}
/**
* Implements hook_theme_suggestions_field_alter().
*/
function ts_grid_theme_suggestions_field_alter(array &$suggestions, array $variables) {
/*$element = $variables['element'];
$suggestions[] = 'field__' . $element['#view_mode'];
$suggestions[] = 'field__' . $element['#view_mode'] . '__' . $element['#field_name'];*/
}
/**
* Implements hook_theme_suggestions_field_alter().
*/
function ts_grid_theme_suggestions_fieldset_alter(array &$suggestions, array $variables) {
/*$element = $variables['element'];
if (isset($element['#attributes']['class']) &&
in_array('form-composite', $element['#attributes']['class'])) {
$suggestions[] = 'fieldset__form_composite';
}*/
}
/**
* Implements hook_preprocess_node().
*/
function ts_grid_preprocess_node(array &$variables) {
// Default to turning off byline/submitted.
// $variables['display_submitted'] = FALSE;.
}
/**
* Implements hook_theme_suggestions_views_view_alter().
*/
function ts_grid_theme_suggestions_views_view_alter(array &$suggestions, array $variables) {
}
/**
* Implements hook_preprocess_form().
*/
function ts_grid_preprocess_form(array &$variables) {
// $variables['attributes']['novalidate'] = 'novalidate';.
}
/**
* Implements hook_preprocess_select().
*/
function ts_grid_preprocess_select(array &$variables) {
// $variables['attributes']['class'][] = 'select-chosen';.
}
/**
* Implements hook_preprocess_field().
*/
function ts_grid_preprocess_field(array &$variables, $hook) {
}
/**
* Implements hook_preprocess_details().
*/
function ts_grid_preprocess_details(array &$variables) {
/*$variables['attributes']['class'][] = 'details';
$variables['summary_attributes']['class'] = 'summary';*/
}
/**
* Implements hook_theme_suggestions_details_alter().
*/
function ts_grid_theme_suggestions_details_alter(array &$suggestions, array $variables) {
}
/**
* Implements hook_preprocess_menu_local_task().
*/
function ts_grid_preprocess_menu_local_task(array &$variables) {
}