function ResponsiveImageStyle::setBreakpointGroup
Overrides ResponsiveImageStyleInterface::setBreakpointGroup
File
-
core/
modules/ responsive_image/ src/ Entity/ ResponsiveImageStyle.php, line 191
Class
- ResponsiveImageStyle
- Defines the responsive image style entity.
Namespace
Drupal\responsive_image\EntityCode
public function setBreakpointGroup($breakpoint_group) {
// If the breakpoint group is changed then the image style mappings are
// invalid.
if ($breakpoint_group !== $this->breakpoint_group) {
$this->removeImageStyleMappings();
}
$this->breakpoint_group = $breakpoint_group;
return $this;
}