You are here

public function BreakpointManagerInterface::getBreakpointsByGroup in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/breakpoint/src/BreakpointManagerInterface.php \Drupal\breakpoint\BreakpointManagerInterface::getBreakpointsByGroup()

Gets breakpoints for the specified group.

Parameters

string $group: The breakpoint group to retrieve.

Return value

\Drupal\breakpoint\BreakpointInterface[] Array of breakpoint plugins keyed by machine name.

1 method overrides BreakpointManagerInterface::getBreakpointsByGroup()
BreakpointManager::getBreakpointsByGroup in core/modules/breakpoint/src/BreakpointManager.php
Gets breakpoints for the specified group.

File

core/modules/breakpoint/src/BreakpointManagerInterface.php, line 19

Class

BreakpointManagerInterface
Defines an interface for breakpoint managers.

Namespace

Drupal\breakpoint

Code

public function getBreakpointsByGroup($group);