drupal/modules/help.module

13 lines
216 B
Plaintext

<?php
function help_admin() {
foreach (module_list() as $name) {
if (module_hook($name, "help")) {
print "<H2>". ucfirst($name) ." module</H2>";
print module_invoke($name, "help");
}
}
}
?>