2023-11-30 17:33:32 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Functions to support theming in the erabletheme theme.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_preprocess_HOOK() for html.html.twig.
|
|
|
|
*/
|
|
|
|
function erabletheme_preprocess_html(&$variables) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_preprocess_HOOK() for page.html.twig.
|
|
|
|
*/
|
|
|
|
function erabletheme_preprocess_page(&$variables) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_preprocess_HOOK() for node.html.twig.
|
|
|
|
*/
|
|
|
|
function erabletheme_preprocess_node(&$variables) {
|
2023-12-06 17:06:45 +01:00
|
|
|
|
2023-11-30 17:33:32 +01:00
|
|
|
}
|
2023-12-04 13:56:23 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_preprocess_HOOK() for node.html.twig.
|
|
|
|
*/
|
|
|
|
function erabletheme_preprocess_form(&$variables) {
|
|
|
|
$t="t";
|
|
|
|
}
|
2023-12-06 05:01:23 +01:00
|
|
|
|
|
|
|
function erabletheme_preprocess_region(&$variables) {
|
|
|
|
$t="t";
|
|
|
|
}
|