You are here

function menu_views_install in Menu Views 7

Same name and namespace in other branches
  1. 8.3 menu_views.install \menu_views_install()
  2. 7.2 menu_views.install \menu_views_install()

Implements hook_install().

File

./menu_views.install, line 11
Install and update functions for the menu_views module.

Code

function menu_views_install() {
  db_update('system')
    ->fields(array(
    'weight' => 100,
  ))
    ->condition('type', 'module')
    ->condition('name', 'menu_views')
    ->execute();
}