You are here

function admin_views_install in Administration Views 6

Implementation of hook_install().

File

./admin_views.install, line 11
Administration views installation functions.

Code

function admin_views_install() {

  // We need 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'");
}