preprocess-2.0.0/tests/themes/test_preprocess_theme/src/Plugin/Preprocess/ThemePreprocessImageTestPlugin.php
tests/themes/test_preprocess_theme/src/Plugin/Preprocess/ThemePreprocessImageTestPlugin.php
<?php
namespace Drupal\test_preprocess_theme\Plugin\Preprocess;
use Drupal\preprocess\PreprocessPluginBase;
/**
* Test preprocessor provided by theme.
*/
class ThemePreprocessImageTestPlugin extends PreprocessPluginBase {
/**
* {@inheritdoc}
*/
public function preprocess(array $variables): array {
$variables['attributes']['class'][] = 'my-test-image-class';
return $variables;
}
}
