diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-04 16:49:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-04 16:49:48 +0000 |
commit | 1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 (patch) | |
tree | d77a0c5420a53c65d24b8ac1842b7f1e356c39d3 /modules/aggregator | |
parent | 8523aca33e828c638f2373e5be4e80ed30866a58 (diff) | |
download | brdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.gz brdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.bz2 |
- Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards.
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.fetcher.inc | 4 | ||||
-rw-r--r-- | modules/aggregator/aggregator.install | 4 | ||||
-rw-r--r-- | modules/aggregator/aggregator.module | 22 | ||||
-rw-r--r-- | modules/aggregator/aggregator.parser.inc | 4 | ||||
-rw-r--r-- | modules/aggregator/aggregator.processor.inc | 8 | ||||
-rw-r--r-- | modules/aggregator/tests/aggregator_test.module | 2 |
6 files changed, 22 insertions, 22 deletions
diff --git a/modules/aggregator/aggregator.fetcher.inc b/modules/aggregator/aggregator.fetcher.inc index 002209461..7c697052c 100644 --- a/modules/aggregator/aggregator.fetcher.inc +++ b/modules/aggregator/aggregator.fetcher.inc @@ -7,7 +7,7 @@ */ /** - * Implement hook_aggregator_fetch_info(). + * Implements hook_aggregator_fetch_info(). */ function aggregator_aggregator_fetch_info() { return array( @@ -17,7 +17,7 @@ function aggregator_aggregator_fetch_info() { } /** - * Implement hook_aggregator_fetch(). + * Implements hook_aggregator_fetch(). */ function aggregator_aggregator_fetch($feed) { $feed->source_string = FALSE; diff --git a/modules/aggregator/aggregator.install b/modules/aggregator/aggregator.install index 8cfb79c6f..7985f6a88 100644 --- a/modules/aggregator/aggregator.install +++ b/modules/aggregator/aggregator.install @@ -7,7 +7,7 @@ */ /** - * Implement hook_uninstall(). + * Implements hook_uninstall(). */ function aggregator_uninstall() { variable_del('aggregator_allowed_html_tags'); @@ -21,7 +21,7 @@ function aggregator_uninstall() { } /** - * Implement hook_schema(). + * Implements hook_schema(). */ function aggregator_schema() { $schema['aggregator_category'] = array( diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 38d7b2d71..6dc9d7afd 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -12,7 +12,7 @@ define('AGGREGATOR_CLEAR_NEVER', 0); /** - * Implement hook_help(). + * Implements hook_help(). */ function aggregator_help($path, $arg) { switch ($path) { @@ -46,7 +46,7 @@ function aggregator_help($path, $arg) { } /** - * Implement hook_theme(). + * Implements hook_theme(). */ function aggregator_theme() { return array( @@ -94,7 +94,7 @@ function aggregator_theme() { } /** - * Implement hook_menu(). + * Implements hook_menu(). */ function aggregator_menu() { $items['admin/config/services/aggregator'] = array( @@ -282,7 +282,7 @@ function _aggregator_category_title($category) { } /** - * Implement hook_init(). + * Implements hook_init(). */ function aggregator_init() { drupal_add_css(drupal_get_path('module', 'aggregator') . '/aggregator.css'); @@ -299,7 +299,7 @@ function _aggregator_has_categories() { } /** - * Implement hook_permission(). + * Implements hook_permission(). */ function aggregator_permission() { return array( @@ -313,7 +313,7 @@ function aggregator_permission() { } /** - * Implement hook_cron(). + * Implements hook_cron(). * * Queues news feeds for updates once their refresh interval has elapsed. */ @@ -329,7 +329,7 @@ function aggregator_cron() { } /** - * Implement hook_cron_queue_info(). + * Implements hook_cron_queue_info(). */ function aggregator_cron_queue_info() { $queues['aggregator_feeds'] = array( @@ -340,7 +340,7 @@ function aggregator_cron_queue_info() { } /** - * Implement hook_block_info(). + * Implements hook_block_info(). */ function aggregator_block_info() { $block = array(); @@ -356,7 +356,7 @@ function aggregator_block_info() { } /** - * Implement hook_block_configure(). + * Implements hook_block_configure(). */ function aggregator_block_configure($delta = '') { list($type, $id) = explode('-', $delta); @@ -373,7 +373,7 @@ function aggregator_block_configure($delta = '') { } /** - * Implement hook_block_save(). + * Implements hook_block_save(). */ function aggregator_block_save($delta = '', $edit = array()) { list($type, $id) = explode('-', $delta); @@ -386,7 +386,7 @@ function aggregator_block_save($delta = '', $edit = array()) { } /** - * Implement hook_block_view(). + * Implements hook_block_view(). * * Generates blocks for the latest news items in each category and feed. */ diff --git a/modules/aggregator/aggregator.parser.inc b/modules/aggregator/aggregator.parser.inc index fbd0deda4..4d6f4fc47 100644 --- a/modules/aggregator/aggregator.parser.inc +++ b/modules/aggregator/aggregator.parser.inc @@ -7,7 +7,7 @@ */ /** - * Implement hook_aggregator_parse_info(). + * Implements hook_aggregator_parse_info(). */ function aggregator_aggregator_parse_info() { return array( @@ -17,7 +17,7 @@ function aggregator_aggregator_parse_info() { } /** - * Implement hook_aggregator_parse(). + * Implements hook_aggregator_parse(). */ function aggregator_aggregator_parse($feed) { global $channel, $image; diff --git a/modules/aggregator/aggregator.processor.inc b/modules/aggregator/aggregator.processor.inc index 83ed207c9..2888e2fa6 100644 --- a/modules/aggregator/aggregator.processor.inc +++ b/modules/aggregator/aggregator.processor.inc @@ -7,7 +7,7 @@ */ /** - * Implement hook_aggregator_process_info(). + * Implements hook_aggregator_process_info(). */ function aggregator_aggregator_process_info() { return array( @@ -17,7 +17,7 @@ function aggregator_aggregator_process_info() { } /** - * Implement hook_aggregator_process(). + * Implements hook_aggregator_process(). */ function aggregator_aggregator_process($feed) { if (is_object($feed)) { @@ -45,7 +45,7 @@ function aggregator_aggregator_process($feed) { } /** - * Implement hook_aggregator_remove(). + * Implements hook_aggregator_remove(). */ function aggregator_aggregator_remove($feed) { $iids = db_query('SELECT iid FROM {aggregator_item} WHERE fid = :fid', array(':fid' => $feed->fid))->fetchCol(); @@ -62,7 +62,7 @@ function aggregator_aggregator_remove($feed) { } /** - * Implement hook_form_aggregator_admin_form_alter(). + * Implements hook_form_aggregator_admin_form_alter(). * * Form alter aggregator module's own form to keep processor functionality * separate from aggregator API functionality. diff --git a/modules/aggregator/tests/aggregator_test.module b/modules/aggregator/tests/aggregator_test.module index 98e589472..d5667f269 100644 --- a/modules/aggregator/tests/aggregator_test.module +++ b/modules/aggregator/tests/aggregator_test.module @@ -2,7 +2,7 @@ // $Id$ /** - * Implement hook_menu(). + * Implements hook_menu(). */ function aggregator_test_menu() { $items['aggregator/test-feed'] = array( |