function breakpoint_group_load

Load one breakpoint group by its identifier.

@todo Remove this in a follow-up issue.

Parameters

string $id: The id of the breakpoint group to load.

Return value

Drupal\breakpoint\Plugin\Core\Entity\BreakpointGroup|false The breakpoint group, or FALSE if there is no entity with the given id.

See also

http://drupal.org/node/1798214

File

drupal/core/modules/breakpoint/breakpoint.module, line 303
Manage breakpoints and breakpoint groups for responsive designs.

Code

function breakpoint_group_load($id) {
  return entity_load('breakpoint_group', $id);
}