You are here

ThemeTestPreprocess.php in Drupal 10

Namespace

Drupal\theme_test

File

core/modules/system/tests/modules/theme_test/src/ThemeTestPreprocess.php
View 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

Namesort descending Description
ThemeTestPreprocess Class to test preprocess callbacks.