- 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
23 lines
No EOL
425 B
Text
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;
|
|
} |