ThemeTestPreprocess.php in Drupal 10
Namespace
Drupal\theme_testFile
core/modules/system/tests/modules/theme_test/src/ThemeTestPreprocess.phpView source
<?php
namespace Drupal\theme_test;
/**
* Class to test preprocess callbacks.
*/
class ThemeTestPreprocess {
/**
* Preprocess callback for testing preprocess callbacks.
*
* @param $variables
* An associative array containing:
* - foo: Text for testing preprocess callback.
*/
public static function preprocess(&$variables) {
$variables['foo'] = 'Make Drupal full of kittens again!';
}
}
Classes
Name | Description |
---|---|
ThemeTestPreprocess | Class to test preprocess callbacks. |