public function ResponsiveImageStyle::removeImageStyleMappings in Drupal 9
Same name and namespace in other branches
- 8 core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::removeImageStyleMappings()
- 10 core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::removeImageStyleMappings()
Removes all image style mappings from the responsive image style.
Return value
$this
Overrides ResponsiveImageStyleInterface::removeImageStyleMappings
1 call to ResponsiveImageStyle::removeImageStyleMappings()
- ResponsiveImageStyle::setBreakpointGroup in core/
modules/ responsive_image/ src/ Entity/ ResponsiveImageStyle.php - Sets the breakpoint group for the responsive image style.
File
- core/
modules/ responsive_image/ src/ Entity/ ResponsiveImageStyle.php, line 204
Class
- ResponsiveImageStyle
- Defines the responsive image style entity.
Namespace
Drupal\responsive_image\EntityCode
public function removeImageStyleMappings() {
$this->image_style_mappings = [];
$this->keyedImageStyleMappings = NULL;
return $this;
}