public function ResponsiveImageStyle::hasImageStyleMappings in Drupal 9
Same name and namespace in other branches
- 8 core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::hasImageStyleMappings()
 - 10 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 139  
Class
- ResponsiveImageStyle
 - Defines the responsive image style entity.
 
Namespace
Drupal\responsive_image\EntityCode
public function hasImageStyleMappings() {
  $mappings = $this
    ->getKeyedImageStyleMappings();
  return !empty($mappings);
}