diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-12-30 11:58:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-12-30 11:58:14 +0000 |
commit | 44c48004346e5956cefbd5ebd558a4406cc61253 (patch) | |
tree | 174d686bc2fd83da9930f6bf20de9864ef34e71c /modules/headline.module | |
parent | 83f6495c9aa810a884b7ca2c44d19f3f32b6092a (diff) | |
download | brdo-44c48004346e5956cefbd5ebd558a4406cc61253.tar.gz brdo-44c48004346e5956cefbd5ebd558a4406cc61253.tar.bz2 |
- here a bunch of changes to make "drupal" (for now) work with PHP 4.0.4
- tidied up some of the code and mainly working on the documentation
Diffstat (limited to 'modules/headline.module')
-rw-r--r-- | modules/headline.module | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/headline.module b/modules/headline.module index 4da4f9365..10f2ab320 100644 --- a/modules/headline.module +++ b/modules/headline.module @@ -2,6 +2,7 @@ $module = array("page" => "headline_page", "cron" => "headline_cron", + "help" => "headline_help", "block" => "headline_block", "admin" => "headline_admin", "export" => "headline_export"); @@ -65,6 +66,12 @@ function headline_cron() { } } +function headline_help() { + ?> + The headline module both imports and exports RDF/RSS headlines. + <? +} + function headline_block() { $result = db_query("SELECT * FROM channel"); while ($channel = db_fetch_object($result)) { |