cdbb17e9f8318212c7323ab8807293e9f908adbf
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / theme_registry_alter.twig
1 /**
2  * Implements hook_theme_registry_alter().
3  */
4 function {{ machine_name }}_theme_registry_alter(&$theme_registry) {
5   // Kill the next/previous forum topic navigation links.
6   foreach ($theme_registry['forum_topic_navigation']['preprocess functions'] as $key => $value) {
7     if ($value == 'template_preprocess_forum_topic_navigation') {
8       unset($theme_registry['forum_topic_navigation']['preprocess functions'][$key]);
9     }
10   }
11 }