You are here

function breakpoints_breakpoint_load_all_theme in Breakpoints 7

Load all breakpoints from the theme.

3 calls to breakpoints_breakpoint_load_all_theme()
breakpoints_breakpoints_group_reload in ./breakpoints.module
Reload the breakpoints as defined by the group.
breakpoints_breakpoint_load_all in ./breakpoints.module
Load all breakpoints.
breakpoints_themes_disabled in ./breakpoints.module
Implements hook_themes_disabled(); Remove breakpoints from all disabled themes.

File

./breakpoints.module, line 466
Breakpoints @todo: provide button to reload breakpoints from theme

Code

function breakpoints_breakpoint_load_all_theme($theme_key = '') {
  return _breakpoints_breakpoint_load_all_by_type(BREAKPOINTS_SOURCE_TYPE_THEME, $theme_key);
}