From e7ac42950de749c33d098e3f56b65c2153f7cdca Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Mon, 1 Oct 2012 12:24:47 -0700 Subject: [PATCH] Issue #1791090 by Ivan Zugec: Remove references to specific admin paths from aggregator function docs --- core/modules/aggregator/aggregator.api.php | 26 ++++++++++------------ 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/core/modules/aggregator/aggregator.api.php b/core/modules/aggregator/aggregator.api.php index 3d7f4996fd0..a6cb1c567a6 100644 --- a/core/modules/aggregator/aggregator.api.php +++ b/core/modules/aggregator/aggregator.api.php @@ -13,8 +13,8 @@ /** * Specify the class, title, and short description of your fetcher plugins. * - * The title and the description provided are shown on - * admin/config/services/aggregator among other places. + * The title and the description provided are shown within the + * configuration page. * * @return * An associative array whose keys define the fetcher id and whose values @@ -46,8 +46,8 @@ function hook_aggregator_fetch_info() { * active parser; and finally, it is passed to all active processors which * manipulate or store the data. * - * Modules that define this hook can be set as the active parser on - * admin/config/services/aggregator. Only one parser can be active at a time. + * Modules that define this hook can be set as the active parser within the + * configuration page. Only one parser can be active at a time. * * @param $feed * An object describing the resource to be parsed. $feed->source_string @@ -90,10 +90,9 @@ function hook_aggregator_parse($feed) { /** * Specify the title and short description of your parser. * - * The title and the description provided are shown on - * admin/config/services/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. + * The title and the description provided are shown within the configuration + * page. 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 @@ -122,8 +121,8 @@ function hook_aggregator_parse_info() { * parser; and finally, it is passed to all active processors that manipulate or * store the data. * - * Modules that define this hook can be activated as processor on - * admin/config/services/aggregator. + * Modules that define this hook can be activated as a processor within the + * configuration page. * * @param $feed * A feed object representing the resource to be processed. $feed->items @@ -147,10 +146,9 @@ function hook_aggregator_process($feed) { /** * Specify the title and short description of your processor. * - * The title and the description provided are shown most importantly on - * admin/config/services/aggregator. Use as title the natural name of the - * processor and as description a brief (40 to 80 characters) explanation of the - * functionality. + * The title and the description provided are shown within the configuration + * page. 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 will use your module's file name