function ResponsiveImageStyle::hasImageStyleMappings

Same name and namespace in other branches
  1. 9 core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::hasImageStyleMappings()
  2. 8.9.x core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::hasImageStyleMappings()
  3. 11.x core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::hasImageStyleMappings()

Checks if there is at least one mapping defined.

Return value

bool Whether the entity has any image style mappings.

Overrides ResponsiveImageStyleInterface::hasImageStyleMappings

File

core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php, line 168

Class

ResponsiveImageStyle
Defines the responsive image style entity.

Namespace

Drupal\responsive_image\Entity

Code

public function hasImageStyleMappings() {
  $mappings = $this->getKeyedImageStyleMappings();
  return !empty($mappings);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.