You are here

function mobile_navigation_install in Mobile Navigation 7.2

@file Mobile Navigation install file.

File

./mobile_navigation.install, line 7
Mobile Navigation install file.

Code

function mobile_navigation_install() {
  dpm(unserialize(MOBILE_NAVIGATION_DEFAULT_DISPLAYS));
  foreach (unserialize(MOBILE_NAVIGATION_DEFAULT_DISPLAYS) as $name => $breakpoints) {
    $new = array(
      'name' => $name,
      'media_query' => '',
    );
    if (isset($breakpoints['top'])) {
      $new['top'] = $breakpoints['top'];
    }
    if (isset($breakpoints['bottom'])) {
      $new['bottom'] = $breakpoints['bottom'];
    }
    db_insert('mobile_navigation_displays')
      ->fields($new)
      ->execute();
  }
}