You are here

function fe_taxonomy_install in Features Extra 6

Implementation of hook_install().

File

./fe_taxonomy.install, line 6

Code

function fe_taxonomy_install() {
  drupal_install_schema('fe_taxonomy');
  $weight = db_result(db_query("SELECT weight FROM {system} WHERE name = 'taxonomy'"));
  db_query("UPDATE {system} SET weight = %d WHERE name = 'fe_taxonomy'", $weight + 1);
}