-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathd8_materialize.theme
53 lines (48 loc) · 1.69 KB
/
d8_materialize.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
<?php
/**
* @file
* Provides different template suggestions depending on the user settings.
*/
/**
* Implements hook_preprocess_html().
*/
function d8_materialize_preprocess_html(&$variables) {
$variables['primary_color'] = "primary-" . theme_get_setting('primary_color')
. "-" . theme_get_setting('primary_color_intensity');
$variables['secondary_color'] = "secondary-" . theme_get_setting('secondary_color')
. "-" . theme_get_setting('secondary_color_intensity');
$variables['form_color'] = "form-" . theme_get_setting('form_color')
. "-" . theme_get_setting('form_color_intensity');
$template = theme_get_setting('d8_template');
if ($template != 'default') {
$variables['d8_template'] = 'd8_' . $template;
}
}
/**
* Implements hook_preprocess().
*/
function d8_materialize_preprocess(&$variables, $hook, $info) {
// Page title.
if ($hook == 'block') {
$node = \Drupal::request()->attributes->get('node');
if (isset($node->field_image)) {
if (theme_get_setting('d8_template') == 'blog') {
$variables['image_url'] = $node->field_image->entity->url();
}
}
}
}
/**
* Implements hook_theme_suggestions_HOOK_alter().
*/
function d8_materialize_theme_suggestions_page_alter(array &$suggestions, array $variables) {
$path_matcher = Drupal::service('path.matcher');
$suggestion_theme_settings = theme_get_setting('d8_template');
if ($suggestion_theme_settings != 'default') {
if ($path_matcher->isFrontPage()) {
$suggestions[] = $variables['theme_hook_original'] . '__front__d8__' . $suggestion_theme_settings;
}
$suggestions[] = $variables['theme_hook_original'] . '__d8__' . $suggestion_theme_settings;
}
return $suggestions;
}