summaryrefslogtreecommitdiff
path: root/modules/help.module
blob: 8d92d961181a0587308203f633c9a2edad9a9f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

function help_module($name) {
  if (module_hook($name, "help")) {
    print "<H2><A NAME=\"$name\">". ucfirst($name) ." module</A></H2>";
    print module_invoke($name, "help");
  }
}

function help_admin() {
   module_iterate("help_module");
}

?>