ah_toc.install 425 B

1234567891011121314151617181920212223
  1. <?php
  2. // $Id$
  3. /**
  4. * @file
  5. * Installer for AH TOC
  6. *
  7. * @copyright Ouest Systèmes Informatiques (OSInet)
  8. *
  9. * @license Licensed under the General Public License version 2 and later.
  10. */
  11. /**
  12. * Implementation of hook_update_N().
  13. *
  14. * Just enough to have an actual version number
  15. */
  16. function ah_toc_update_6000() {
  17. $ret[] = array(
  18. 'success' => TRUE,
  19. 'query' => 'Settings schema version',
  20. );
  21. return $ret;
  22. }