update_test_3.install 436 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the update_test_3 module.
  5. */
  6. /**
  7. * Implements hook_update_dependencies().
  8. *
  9. * @see update_test_2_update_dependencies()
  10. */
  11. function update_test_3_update_dependencies() {
  12. $dependencies['update_test_3'][7000] = array(
  13. 'update_test_2' => 7000,
  14. );
  15. return $dependencies;
  16. }
  17. /**
  18. * Dummy update_test_3 update 7000.
  19. */
  20. function update_test_3_update_7000() {
  21. }