summaryrefslogtreecommitdiff
path: root/modules/help
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-04-30 17:19:27 +0000
committerDries Buytaert <dries@buytaert.net>2001-04-30 17:19:27 +0000
commitbb66fa5fd0e75aaddfb6d31ba8f363168293b4a4 (patch)
tree4e27e26507b483d30dfb9c0dfa56b4a065a1b544 /modules/help
parentfead09a8de391e2419bdac150a8b63c0228d16a2 (diff)
downloadbrdo-bb66fa5fd0e75aaddfb6d31ba8f363168293b4a4.tar.gz
brdo-bb66fa5fd0e75aaddfb6d31ba8f363168293b4a4.tar.bz2
Welp. Large commit ahead.
CHANGES: - Added "read" and "write" permissions into drupal but removed it again because - when finished after 3 hours of work - it was considered nothing but added complexity that didn't buy us anything. :I (I'll explain this in detail on the mailing list, I guess.) - Added a very simple help.module to group all available documentation on a single page. - Fixed bug in node_control(), book.module: UnConeD forgot to global $user when updating the combobox code. - Removed static wishlist.module: in future, the wishlist can be maintained as a page in our collaborative book. - Revised most of settings.module: tidied up the code and the descriptions to accompany the settings and introduced a new "default maximum number of nodes to display on the main page" variable. - Revised most of comment.module: the administration interface looks better now, integrated node permissions, and -finally- made it possible to delete comments. - Polished on: + account.module + structure.module + locale.module + module.module + forum.module - Form-ified: + account.php + account.module + setting.module + cvs.module + submit.php + comment.module + forum.module + book.module + page.module + locale.module - Updated CHANGELOG INFO: - Designed a "generic tracker system with optional backends" on paper. The idea is to allow registered users to hot-list certain topics, individual nodes or threads (comments) and to "plug-in" output backends like - for instance - an e-mail digest. The design requires "intelligent blocks" though. TODO: - I want to tidy up the headline.module and backend.class as well as merge in headlineRSS10.module. Julian spent quite some time working on headline.module but I'm not sure what he changed and whether he'd contribute it back?
Diffstat (limited to 'modules/help')
-rw-r--r--modules/help/help.module15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
new file mode 100644
index 000000000..9aae72a3c
--- /dev/null
+++ b/modules/help/help.module
@@ -0,0 +1,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");
+}
+
+?>