diff options
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)) { |