You are here

function panels_sections_install in Panels Sections 6

Same name and namespace in other branches
  1. 6.2 panels_sections.install \panels_sections_install()

File

./panels_sections.install, line 3

Code

function panels_sections_install() {

  // Create tables.
  drupal_install_schema('panels_sections');

  // Set module weight to negative value to be the first called.
  db_query("UPDATE {system} SET weight = '-100' WHERE name = 'panels_sections'");
}