drupal_module__ah_toc/ah_toc.install
FGM d1334aaa46 Initial version of AH TOC: build a static table of contents.
- do not add anchors to headings or link to them
- do not add "top" links to headings
- force code/pre in help pages to clear: right to avoid the TOC running into them.
- TODO: use a theme function to format the TOC
- TOTO: include a fold/unfold link on the TOC
2010-06-05 11:30:47 +02:00

23 lines
No EOL
425 B
Text

<?php
// $Id$
/**
* @file
* Installer for AH TOC
*
* @copyright Ouest Systèmes Informatiques (OSInet)
*
* @license Licensed under the General Public License version 2 and later.
*/
/**
* Implementation of hook_update_N().
*
* Just enough to have an actual version number
*/
function ah_toc_update_6000() {
$ret[] = array(
'success' => TRUE,
'query' => 'Settings schema version',
);
return $ret;
}