ImageStyle::getEffect

public ImageStyle::getEffect($effect)

Returns a specific image effect.

Parameters

string $effect: The image effect ID.

Return value

\Drupal\image\ImageEffectInterface The image effect object.

Overrides ImageStyleInterface::getEffect

File

core/modules/image/src/Entity/ImageStyle.php, line 346

Class

ImageStyle
Defines an image style configuration entity.

Namespace

Drupal\image\Entity

Code

public function getEffect($effect) {
  return $this->getEffects()->get($effect);
}
doc_Drupal
2016-10-29 09:19:31
Comments
Leave a Comment

Please login to continue.