You are here

public function ResponsiveImageStyle::setBreakpointGroup in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php \Drupal\responsive_image\Entity\ResponsiveImageStyle::setBreakpointGroup()

Sets the breakpoint group for the responsive image style.

Parameters

string $breakpoint_group: The responsive image style breakpoint group.

Return value

$this

Overrides ResponsiveImageStyleInterface::setBreakpointGroup

File

core/modules/responsive_image/src/Entity/ResponsiveImageStyle.php, line 160
Contains \Drupal\responsive_image\Entity\ResponsiveImageStyle.

Class

ResponsiveImageStyle
Defines the responsive image style entity.

Namespace

Drupal\responsive_image\Entity

Code

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;
}