test_deprecated_suggestion_theme.theme

File

core/modules/system/tests/themes/test_deprecated_suggestion_theme/test_deprecated_suggestion_theme.theme

View source
<?php


/**
 * @file
 * Theme to help test deprecated theme suggestions.
 */

declare (strict_types=1);

/**
 * Implements hook_theme_suggestions_alter().
 */
function test_deprecated_suggestion_theme_theme_suggestions_alter(array &$suggestions, array $variables, $hook) : void {
  \Drupal::messenger()->addStatus(__FUNCTION__ . '() executed for ' . $hook . '.');
  if ($hook == 'theme_test_suggestion_provided') {
    // Add a deprecated suggestion.
    $suggestions[] = 'theme_test_suggestion_provided__deprecated';
    $suggestions['__DEPRECATED']['theme_test_suggestion_provided__deprecated'] = 'Theme suggestion theme_test_suggestion_provided__deprecated is deprecated in drupal:X.0.0 and is removed from drupal:Y.0.0. This is a test.';
  }
}

Functions

Title Deprecated Summary
test_deprecated_suggestion_theme_theme_suggestions_alter Implements hook_theme_suggestions_alter().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.