You are here

function admin_views_system_display_install in Administration Views 7

Implementation of hook_install().

File

./admin_views_system_display.install, line 11
Admin Views System Display installation functions.

Code

function admin_views_system_display_install() {

  // The module needs to run after Views module's hook_menu_alter() to fix the
  // router item properties of overridden pages.
  db_query("UPDATE {system} SET weight = 12 WHERE name = 'admin_views_system_display'");
}