forked from isholgueras/starter_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noble.theme
192 lines (163 loc) · 5.32 KB
/
noble.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
/**
* @file
* Functions to support theming in the sheg theme.
*/
use Drupal\Component\Utility\Html;
/**
* Implements hook_page_attachments_alter().
*/
//function noble_page_attachments_alter(array &$page) {
// // 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',
// ],
// ];
// $page['#attached']['html_head'][] = [$ie_edge, 'ie_edge'];*/
//}
/**
* Implements hook_preprocess_page() for page.html.twig.
*/
//function noble_preprocess_page(array &$variables) {
//
//}
/**
* Implements hook_theme_suggestions_page_alter().
*/
//function noble_theme_suggestions_page_alter(array &$suggestions, array $variables) {
//
//}
/**
* Implements hook_theme_suggestions_block_alter().
*/
function noble_theme_suggestions_block_alter(array &$suggestions, array $variables) {
if (isset($variables['elements']['content']['#block_content'])) {
array_splice($suggestions, 2, 0, ['block__block_content__' . $variables['elements']['content']['#block_content']->bundle()]);
}
}
/**
* Implements hook_theme_suggestions_node_alter().
*/
//function noble_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 noble_preprocess_block(array &$variables) {
// Create an HTML class based on the block ID
$plausible_values = [
$variables['elements']['#id'] ?? null,
$variables['elements']['#plugin_id'] ?? null,
$variables['elements']['#derivative_plugin_id'] ?? null,
$variables['elements']['#base_plugin_id'] ?? null,
];
$machine_name = Html::cleanCssIdentifier(current(array_filter($plausible_values)));
if ($plausible_values[3] === 'local_tasks_block') {
$machine_name = 'tabs';
}
$block_classes = array_merge([
'block',
'block--' . $machine_name,
],
isset($variables['attributes']['class']) ? $variables['attributes']['class'] : []);
unset($variables['attributes']['id']);
$variables['attributes']['class'] = $block_classes;
if (isset($variables['title_attributes'])) {
$block_title_classes = array_merge([
'block__title',
'block__title--' . $machine_name,
],
isset($variables['title_attributes']['class']) ? $variables['title_attributes']['class'] : []);
$variables['title_attributes']['class'] = $block_title_classes;
}
}
/**
* Implements hook_preprocess_HOOK() for Block document templates.
*/
function noble_preprocess_region(array &$variables) {
$variables['attributes']['class'][] = 'l-' . Html::cleanCssIdentifier($variables['region']);
}
/**
* Implements hook_theme_suggestions_field_alter().
*/
function noble_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 noble_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 noble_preprocess_node(array &$variables) {
// Default to turning off byline/submitted.
//$variables['display_submitted'] = FALSE;
$variables['attributes']['class'][] = $variables['node']->bundle();
$variables['attributes']['class'][] = $variables['node']->bundle() . '--' . $variables['elements']['#view_mode'];
}
/**
* Implements hook_theme_suggestions_views_view_alter().
*/
function noble_theme_suggestions_views_view_alter(array &$suggestions, array $variables) {
}
/**
* Implements hook_preprocess_form().
*/
function noble_preprocess_form(array &$variables) {
//$variables['attributes']['novalidate'] = 'novalidate';
$a = 0;
}
/**
* Implements hook_preprocess_select().
*/
function noble_preprocess_select(array &$variables) {
//$variables['attributes']['class'][] = 'select-chosen';
}
/**
* Implements hook_preprocess_field().
*/
function noble_preprocess_field(array &$variables, $hook) {
$a = 0;
$variables['attributes']['class'] = Html::cleanCssIdentifier($variables['field_name']);
/*switch ($variables['element']['#field_name']) {
}*/
}
/**
* Implements hook_preprocess_details().
*/
function noble_preprocess_details(array &$variables) {
/*$variables['attributes']['class'][] = 'details';
$variables['summary_attributes']['class'] = 'summary';*/
}
/**
* Implements hook_theme_suggestions_details_alter().
*/
function noble_theme_suggestions_details_alter(array &$suggestions, array $variables) {
}
/**
* Implements hook_preprocess_menu_local_task().
*/
function noble_preprocess_menu_local_task(array &$variables) {
// $variables['element']['#link']['url']->setOption('attributes', ['class'=>'rounded']);
}
function noble_preprocess_views_mini_pager(array &$variables) {
global $pager_total;
$variables['pager_total'] = $pager_total[$variables['element'] ?: 0];
}