You are here

public function NullTestImageEffect::applyEffect in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/tests/modules/image_module_test/src/Plugin/ImageEffect/NullTestImageEffect.php \Drupal\image_module_test\Plugin\ImageEffect\NullTestImageEffect::applyEffect()
  2. 9 core/modules/image/tests/modules/image_module_test/src/Plugin/ImageEffect/NullTestImageEffect.php \Drupal\image_module_test\Plugin\ImageEffect\NullTestImageEffect::applyEffect()

Applies an image effect to the image object.

Parameters

\Drupal\Core\Image\ImageInterface $image: An image file object.

Return value

bool TRUE on success. FALSE if unable to perform the image effect on the image.

Overrides ImageEffectInterface::applyEffect

File

core/modules/image/tests/modules/image_module_test/src/Plugin/ImageEffect/NullTestImageEffect.php, line 29

Class

NullTestImageEffect
Performs no operation on an image resource.

Namespace

Drupal\image_module_test\Plugin\ImageEffect

Code

public function applyEffect(ImageInterface $image) {
  return TRUE;
}