diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-18 14:23:22 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-18 14:23:22 +0000 |
commit | 84e62e6bf1207da72ec67b77899d049b25d94375 (patch) | |
tree | 4a0deb4397f03451d4fa99fb12dee404543a8e07 /modules/aggregator/aggregator.api.php | |
parent | f2b6d3dca8ca9b1278aac2cc01937f1303c49ac1 (diff) | |
download | brdo-84e62e6bf1207da72ec67b77899d049b25d94375.tar.gz brdo-84e62e6bf1207da72ec67b77899d049b25d94375.tar.bz2 |
- Patch #465398 by akahn: move aggregator settings to 'site configuration'. Yay.
Diffstat (limited to 'modules/aggregator/aggregator.api.php')
-rw-r--r-- | modules/aggregator/aggregator.api.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/modules/aggregator/aggregator.api.php b/modules/aggregator/aggregator.api.php index 5903cf862..9d758aedf 100644 --- a/modules/aggregator/aggregator.api.php +++ b/modules/aggregator/aggregator.api.php @@ -21,7 +21,7 @@ * data. * * Modules that define this hook can be set as active fetcher on - * admin/content/aggregator/settings. Only one fetcher can be active at a time. + * admin/settings/aggregator. Only one fetcher can be active at a time. * * @param $feed * The $feed object that describes the resource to be downloaded. @@ -43,7 +43,7 @@ function hook_aggregator_fetch($feed) { * fetcher. * * The title and the description provided are shown on - * admin/content/aggregator/settings among other places. Use as title the human + * admin/settings/aggregator among other places. Use as title the human * readable name of the fetcher and as description a brief (40 to 80 characters) * explanation of the fetcher's functionality. * @@ -75,7 +75,7 @@ function hook_aggregator_fetch_info() { * data. * * Modules that define this hook can be set as active parser on - * admin/content/aggregator/settings. Only one parser can be active at a time. + * admin/settings/aggregator. Only one parser can be active at a time. * * @param $feed * The $feed object that describes the resource to be parsed. @@ -108,10 +108,10 @@ function hook_aggregator_parse($feed) { * Implement this hook to expose the title and a short description of your * parser. * - * The title and the description provided are shown on - * admin/content/aggregator/settings among other places. Use as title the human - * readable name of the parser and as description a brief (40 to 80 characters) - * explanation of the parser's functionality. + * The title and the description provided are shown on admin/settings/aggregator + * among other places. Use as title the human readable name of the parser and + * as description a brief (40 to 80 characters) explanation of the parser's + * functionality. * * This hook is only called if your module implements hook_aggregator_parse(). * If this hook is not implemented aggregator will use your module's file name @@ -141,7 +141,7 @@ function hook_aggregator_parse_info() { * data. * * Modules that define this hook can be activated as processor on - * admin/content/aggregator/settings. + * admin/settings/aggregator. * * @param $feed * The $feed object that describes the resource to be processed. $feed->items @@ -167,9 +167,9 @@ function hook_aggregator_process($feed) { * processor. * * The title and the description provided are shown most importantly on - * admin/content/aggregator/settings . Use as title the natural name of the - * processor and as description a brief (40 to 80 characters) explanation of - * the functionality. + * admin/settings/aggregator. Use as title the natural name of the processor + * and as description a brief (40 to 80 characters) explanation of the + * functionality. * * This hook is only called if your module implements * hook_aggregator_process(). If this hook is not implemented aggregator |