You are here

function breakpoint_enable in Breakpoints 8

Implements hook_enable().

Import breakpoints from all enabled themes.

File

./breakpoint.module, line 16
Manage breakpoints and breakpoint groups for responsive designs.

Code

function breakpoint_enable() {
  $themes = list_themes();
  breakpoint_themes_enabled(array_keys($themes));
  $modules = module_list();
  breakpoint_modules_enabled(array_keys($modules));
}