You are here

public function BreakpointGroup::__construct in Breakpoints 8

Overrides Drupal\config\ConfigEntityBase::__construct().

Overrides ConfigEntityBase::__construct

File

lib/Drupal/breakpoint/BreakpointGroup.php, line 80
Definition of Drupal\breakpoint\BreakpointGroup.

Class

BreakpointGroup
Defines the BreakpointGroup entity.

Namespace

Drupal\breakpoint

Code

public function __construct(array $values = array(), $entity_type = 'breakpoint_group') {
  parent::__construct($values, $entity_type);
  $this
    ->loadAllBreakpoints();
}