summaryrefslogtreecommitdiff
path: root/modules/aggregator
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
committerDries Buytaert <dries@buytaert.net>2009-05-27 18:34:03 +0000
commit0f4060f377a6ccea57a183b3c3e4801c450f5476 (patch)
tree07a7bd87373613f3e884c8f56bfb9911eda38511 /modules/aggregator
parent5bdcc4ada232bf92e3d529962d9f7aa2536605cc (diff)
downloadbrdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.gz
brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.bz2
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
Diffstat (limited to 'modules/aggregator')
-rw-r--r--modules/aggregator/aggregator.fetcher.inc4
-rw-r--r--modules/aggregator/aggregator.install6
-rw-r--r--modules/aggregator/aggregator.module20
-rw-r--r--modules/aggregator/aggregator.parser.inc4
-rw-r--r--modules/aggregator/aggregator.processor.inc8
-rw-r--r--modules/aggregator/tests/aggregator_test.module2
6 files changed, 22 insertions, 22 deletions
diff --git a/modules/aggregator/aggregator.fetcher.inc b/modules/aggregator/aggregator.fetcher.inc
index 9d1f8f580..fcad26578 100644
--- a/modules/aggregator/aggregator.fetcher.inc
+++ b/modules/aggregator/aggregator.fetcher.inc
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_aggregator_fetch_info().
+ * Implement hook_aggregator_fetch_info().
*/
function aggregator_aggregator_fetch_info() {
return array(
@@ -17,7 +17,7 @@ function aggregator_aggregator_fetch_info() {
}
/**
- * Implementation of hook_aggregator_fetch().
+ * Implement 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 f83ae332d..e63ce4fd7 100644
--- a/modules/aggregator/aggregator.install
+++ b/modules/aggregator/aggregator.install
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_install().
+ * Implement hook_install().
*/
function aggregator_install() {
// Create tables.
@@ -15,7 +15,7 @@ function aggregator_install() {
}
/**
- * Implementation of hook_uninstall().
+ * Implement hook_uninstall().
*/
function aggregator_uninstall() {
// Remove tables.
@@ -31,7 +31,7 @@ function aggregator_uninstall() {
}
/**
- * Implementation of hook_schema().
+ * Implement hook_schema().
*/
function aggregator_schema() {
$schema['aggregator_category'] = array(
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 8b38db796..98fe9bc24 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_help().
+ * Implement hook_help().
*/
function aggregator_help($path, $arg) {
switch ($path) {
@@ -30,7 +30,7 @@ function aggregator_help($path, $arg) {
}
/**
- * Implementation of hook_theme().
+ * Implement hook_theme().
*/
function aggregator_theme() {
return array(
@@ -78,7 +78,7 @@ function aggregator_theme() {
}
/**
- * Implementation of hook_menu().
+ * Implement hook_menu().
*/
function aggregator_menu() {
$items['admin/content/aggregator'] = array(
@@ -248,7 +248,7 @@ function _aggregator_category_title($category) {
}
/**
- * Implementation of hook_init().
+ * Implement hook_init().
*/
function aggregator_init() {
drupal_add_css(drupal_get_path('module', 'aggregator') . '/aggregator.css');
@@ -265,7 +265,7 @@ function _aggregator_has_categories() {
}
/**
- * Implementation of hook_perm().
+ * Implement hook_perm().
*/
function aggregator_perm() {
return array(
@@ -281,7 +281,7 @@ function aggregator_perm() {
}
/**
- * Implementation of hook_cron().
+ * Implement hook_cron().
*
* Checks news feeds for updates once their refresh interval has elapsed.
*/
@@ -293,7 +293,7 @@ function aggregator_cron() {
}
/**
- * Implementation of hook_block_list().
+ * Implement hook_block_list().
*/
function aggregator_block_list() {
$block = array();
@@ -309,7 +309,7 @@ function aggregator_block_list() {
}
/**
- * Implementation of hook_block_configure().
+ * Implement hook_block_configure().
*/
function aggregator_block_configure($delta = '') {
list($type, $id) = explode('-', $delta);
@@ -326,7 +326,7 @@ function aggregator_block_configure($delta = '') {
}
/**
- * Implementation of hook_block_save().
+ * Implement hook_block_save().
*/
function aggregator_block_save($delta = '', $edit = array()) {
list($type, $id) = explode('-', $delta);
@@ -339,7 +339,7 @@ function aggregator_block_save($delta = '', $edit = array()) {
}
/**
- * Implementation of hook_block_view().
+ * Implement 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 b67be8703..4b0c9ca94 100644
--- a/modules/aggregator/aggregator.parser.inc
+++ b/modules/aggregator/aggregator.parser.inc
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_aggregator_parse_info().
+ * Implement hook_aggregator_parse_info().
*/
function aggregator_aggregator_parse_info() {
return array(
@@ -17,7 +17,7 @@ function aggregator_aggregator_parse_info() {
}
/**
- * Implementation of hook_aggregator_parse().
+ * Implement 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 247ceb7a0..592eee1ab 100644
--- a/modules/aggregator/aggregator.processor.inc
+++ b/modules/aggregator/aggregator.processor.inc
@@ -12,7 +12,7 @@
define('AGGREGATOR_CLEAR_NEVER', 0);
/**
- * Implementation of hook_aggregator_process_info().
+ * Implement hook_aggregator_process_info().
*/
function aggregator_aggregator_process_info() {
return array(
@@ -22,7 +22,7 @@ function aggregator_aggregator_process_info() {
}
/**
- * Implementation of hook_aggregator_process().
+ * Implement hook_aggregator_process().
*/
function aggregator_aggregator_process($feed) {
if (is_object($feed)) {
@@ -50,7 +50,7 @@ function aggregator_aggregator_process($feed) {
}
/**
- * Implementation of hook_aggregator_remove().
+ * Implement hook_aggregator_remove().
*/
function aggregator_aggregator_remove($feed) {
$iids = db_query('SELECT iid FROM {aggregator_item} WHERE fid = :fid', array(':fid' => $feed->fid))->fetchCol();
@@ -67,7 +67,7 @@ function aggregator_aggregator_remove($feed) {
}
/**
- * Implementation of hook_form_aggregator_admin_form_alter().
+ * Implement 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 61b64652a..6596ec496 100644
--- a/modules/aggregator/tests/aggregator_test.module
+++ b/modules/aggregator/tests/aggregator_test.module
@@ -2,7 +2,7 @@
// $Id$
/**
- * Implementation of hook_menu().
+ * Implement hook_menu().
*/
function aggregator_test_menu() {
$items['aggregator/test-feed'] = array(