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

$module = array("admin" => "help_admin");

function help_module($name, $module) {
  print "<H2><A NAME=\"$name\">". ucfirst($name) ." module</A></H2>";
  if ($module["help"]) $module["help"]();
  else print "<I>No documentation available for module '$name'.</I>";
}

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

?>