insert.install 296 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Update and install functions for Insert.
  5. */
  6. /**
  7. * Implementation of hook_install().
  8. */
  9. function insert_install() {
  10. // Insert needs to load after both ImageField and FileField.
  11. db_query("UPDATE {system} SET weight = 15 WHERE type = 'module' AND name = 'insert'");
  12. }