From 9f20738fb56cf198dc0d52ab7869ff1d47e3eeac Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Fri, 17 Sep 2010 17:25:19 +0000 Subject: [PATCH] Use 'Implements' instead of 'Implementation of' --- feeds.install | 2 +- feeds.module | 26 +++++++++++++------------- feeds_ui/feeds_ui.module | 6 +++--- includes/FeedsConfigurable.inc | 2 +- mappers/content.inc | 2 +- mappers/date.inc | 4 ++-- mappers/emfield.inc | 4 ++-- mappers/filefield.inc | 4 ++-- mappers/link.inc | 2 +- mappers/locale.inc | 4 ++-- mappers/og.inc | 4 ++-- mappers/profile.inc | 2 +- mappers/taxonomy.inc | 4 ++-- plugins/FeedsCSVParser.inc | 2 +- plugins/FeedsFeedNodeProcessor.inc | 4 ++-- plugins/FeedsFileFetcher.inc | 6 +++--- plugins/FeedsHTTPFetcher.inc | 10 +++++----- plugins/FeedsNodeProcessor.inc | 4 ++-- plugins/FeedsOPMLParser.inc | 2 +- plugins/FeedsParser.inc | 2 +- plugins/FeedsPlugin.inc | 2 +- plugins/FeedsSimplePieParser.inc | 2 +- plugins/FeedsSitemapParser.inc | 4 ++-- plugins/FeedsSyndicationParser.inc | 2 +- plugins/FeedsTermProcessor.inc | 4 ++-- plugins/FeedsUserProcessor.inc | 4 ++-- views/feeds.views.inc | 4 ++-- 27 files changed, 59 insertions(+), 59 deletions(-) diff --git a/feeds.install b/feeds.install index 65299411..e515a1ff 100644 --- a/feeds.install +++ b/feeds.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_schema(). + * Implements hook_schema(). */ function feeds_schema() { $schema = array(); diff --git a/feeds.module b/feeds.module index 1d1d85d4..b35413b6 100644 --- a/feeds.module +++ b/feeds.module @@ -24,7 +24,7 @@ define('FEEDS_BATCH_ACTIVE', 0); */ /** - * Implementation of hook_cron(). + * Implements hook_cron(). */ function feeds_cron() { if ($importers = feeds_reschedule()) { @@ -41,7 +41,7 @@ function feeds_cron() { } /** - * Implementation of hook_cron_queue_info(). + * Implements hook_cron_queue_info(). * * Invoked by drupal_queue module if present. */ @@ -119,7 +119,7 @@ function feeds_reschedule($importer_id = NULL) { } /** - * Implementation of feeds_permission(). + * Implements feeds_permission(). */ function feeds_permission() { $perms = array( @@ -137,7 +137,7 @@ function feeds_permission() { } /** - * Implementation of hook_forms(). + * Implements hook_forms(). * * Declare form callbacks for all known classes derived from FeedsConfigurable. */ @@ -152,7 +152,7 @@ function feeds_forms() { } /** - * Implementation of hook_menu(). + * Implements hook_menu(). */ function feeds_menu() { // Register a callback for all feed configurations that are not attached to a content type. @@ -225,7 +225,7 @@ function feeds_importer_load($id) { } /** - * Implementation of hook_theme(). + * Implements hook_theme(). */ function feeds_theme() { return array( @@ -276,7 +276,7 @@ function feeds_page_access() { } /** - * Implementation of hook_views_api(). + * Implements hook_views_api(). */ function feeds_views_api() { return array( @@ -286,7 +286,7 @@ function feeds_views_api() { } /** - * Implementation of hook_ctools_plugin_api(). + * Implements hook_ctools_plugin_api(). */ function feeds_ctools_plugin_api($owner, $api) { if ($owner == 'feeds' && $api == 'plugins') { @@ -295,7 +295,7 @@ function feeds_ctools_plugin_api($owner, $api) { } /** - * Implementation of hook_ctools_plugin_type(). + * Implements hook_ctools_plugin_type(). */ function feeds_ctools_plugin_type() { return array( @@ -308,7 +308,7 @@ function feeds_ctools_plugin_type() { } /** - * Implementation of hook_feeds_plugins(). + * Implements hook_feeds_plugins(). */ function feeds_feeds_plugins() { module_load_include('inc', 'feeds', 'feeds.plugins'); @@ -316,7 +316,7 @@ function feeds_feeds_plugins() { } /** - * Implementation of hook_nodeapi(). + * Implements hook_nodeapi(). * * @todo For Drupal 7, revisit static cache based shuttling of values between * 'validate' and 'update'/'insert'. @@ -430,7 +430,7 @@ function _feeds_nodeapi_node_processor($node, $op) { } /** - * Implementation of hook_taxonomy(). + * Implements hook_taxonomy(). */ function feeds_taxonomy($op = NULL, $type = NULL, $term = NULL) { if ($type =='term' && $term['tid']) { @@ -457,7 +457,7 @@ function feeds_taxonomy($op = NULL, $type = NULL, $term = NULL) { } /** - * Implementation of hook_form_alter(). + * Implements hook_form_alter(). */ function feeds_form_alter(&$form, $form_state, $form_id) { if ($form['#id'] == 'node-form') { diff --git a/feeds_ui/feeds_ui.module b/feeds_ui/feeds_ui.module index e85e7be5..2fe47a5a 100644 --- a/feeds_ui/feeds_ui.module +++ b/feeds_ui/feeds_ui.module @@ -5,7 +5,7 @@ */ /** - * Implementation of hook_help(). + * Implements hook_help(). */ function feeds_ui_help($path, $arg) { switch ($path) { @@ -19,7 +19,7 @@ function feeds_ui_help($path, $arg) { } /** - * Implementation of hook_menu(). + * Implements hook_menu(). */ function feeds_ui_menu() { $items = array(); @@ -83,7 +83,7 @@ function feeds_ui_menu() { } /** - * Implementation of hook_theme(). + * Implements hook_theme(). */ function feeds_ui_theme() { return array( diff --git a/includes/FeedsConfigurable.inc b/includes/FeedsConfigurable.inc index c152c7a9..7c3aff9a 100644 --- a/includes/FeedsConfigurable.inc +++ b/includes/FeedsConfigurable.inc @@ -141,7 +141,7 @@ abstract class FeedsConfigurable { } /** - * Implementation of getConfig(). + * Implements getConfig(). */ public function getConfig() { return $this->config; diff --git a/mappers/content.inc b/mappers/content.inc index f1f2c6c5..416cfd10 100644 --- a/mappers/content.inc +++ b/mappers/content.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). * * @see FeedsNodeProcessor::getMappingTargets(). */ diff --git a/mappers/date.inc b/mappers/date.inc index 11434b8a..4325a4ba 100644 --- a/mappers/date.inc +++ b/mappers/date.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). * * @see FeedsNodeProcessor::getMappingTargets(). * @@ -37,7 +37,7 @@ function date_feeds_node_processor_targets_alter(&$targets, $content_type) { } /** - * Implementation of hook_feeds_set_target(). + * Implements hook_feeds_set_target(). * * @param $node * The target node. diff --git a/mappers/emfield.inc b/mappers/emfield.inc index 2c59bcec..5fa42194 100644 --- a/mappers/emfield.inc +++ b/mappers/emfield.inc @@ -8,7 +8,7 @@ */ /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). * * @see FeedsNodeProcessor::getMappingTargets(). */ @@ -56,4 +56,4 @@ function emfield_feeds_set_target(&$node, $target, $value) { } $node->$target = $field; -} \ No newline at end of file +} diff --git a/mappers/filefield.inc b/mappers/filefield.inc index a4ff57ef..82e11bb7 100644 --- a/mappers/filefield.inc +++ b/mappers/filefield.inc @@ -10,7 +10,7 @@ */ /** - * Implementation of hook_feeds_node_processor_targets_alter() + * Implements hook_feeds_node_processor_targets_alter() */ function filefield_feeds_node_processor_targets_alter(&$targets, $content_type) { $info = content_types($content_type); @@ -30,7 +30,7 @@ function filefield_feeds_node_processor_targets_alter(&$targets, $content_type) } /** - * Implementation of hook_feeds_set_target(). + * Implements hook_feeds_set_target(). * * @param $node * The target node. diff --git a/mappers/link.inc b/mappers/link.inc index 39fbf9de..d1d7aac9 100644 --- a/mappers/link.inc +++ b/mappers/link.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). */ function link_feeds_node_processor_targets_alter(&$targets, $content_type) { $info = content_types($content_type); diff --git a/mappers/locale.inc b/mappers/locale.inc index 02b0b485..d5478d52 100644 --- a/mappers/locale.inc +++ b/mappers/locale.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_feeds_parser_sources_alter(). + * Implements hook_feeds_parser_sources_alter(). * * Declare the language of the feed node as a mapping source. This will most * commonly be used for having feed item nodes inherit the language @@ -33,7 +33,7 @@ function locale_feeds_get_source(FeedsImportBatch $batch, $key) { } /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). */ function locale_feeds_node_processor_targets_alter(&$targets, $content_type) { if (variable_get('language_content_type_'. $content_type, FALSE)) { diff --git a/mappers/og.inc b/mappers/og.inc index bb0f3813..205e5f50 100644 --- a/mappers/og.inc +++ b/mappers/og.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_feeds_parser_sources_alter(). + * Implements hook_feeds_parser_sources_alter(). */ function og_feeds_parser_sources_alter(&$sources, $content_type) { if (!empty($content_type)) { @@ -36,7 +36,7 @@ function og_feeds_get_source(FeedsImportBatch $batch, $key) { } /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). */ function og_feeds_node_processor_targets_alter(&$targets, $content_type) { if (in_array($content_type, og_get_types('group_post'))) { diff --git a/mappers/profile.inc b/mappers/profile.inc index 49061c9a..33f6935f 100644 --- a/mappers/profile.inc +++ b/mappers/profile.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of feeds_user_processor_target_alter(). + * Implements feeds_user_processor_target_alter(). */ function profile_feeds_user_processor_targets_alter(&$targets) { if (module_exists('profile')) { diff --git a/mappers/taxonomy.inc b/mappers/taxonomy.inc index 792795a2..92405c51 100644 --- a/mappers/taxonomy.inc +++ b/mappers/taxonomy.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_feeds_parser_sources_alter(). + * Implements hook_feeds_parser_sources_alter(). */ function taxonomy_feeds_parser_sources_alter(&$sources, $content_type) { if (!empty($content_type)) { @@ -39,7 +39,7 @@ function taxonomy_feeds_get_source(FeedsImportBatch $batch, $key) { } /** - * Implementation of hook_feeds_node_processor_targets_alter(). + * Implements hook_feeds_node_processor_targets_alter(). * * @see FeedsNodeProcessor::getMappingTargets(). */ diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc index ab3961bc..c6c2819b 100644 --- a/plugins/FeedsCSVParser.inc +++ b/plugins/FeedsCSVParser.inc @@ -7,7 +7,7 @@ class FeedsCSVParser extends FeedsParser { /** - * Implementation of FeedsParser::parse(). + * Implements FeedsParser::parse(). */ public function parse(FeedsImportBatch $batch, FeedsSource $source) { diff --git a/plugins/FeedsFeedNodeProcessor.inc b/plugins/FeedsFeedNodeProcessor.inc index 193ae656..3758e893 100644 --- a/plugins/FeedsFeedNodeProcessor.inc +++ b/plugins/FeedsFeedNodeProcessor.inc @@ -13,7 +13,7 @@ class FeedsFeedNodeProcessor extends FeedsProcessor { /** - * Implementation of FeedsProcessor::process(). + * Implements FeedsProcessor::process(). */ public function process(FeedsImportBatch $batch, FeedsSource $source) { while ($item = $batch->shiftItem()) { @@ -56,7 +56,7 @@ class FeedsFeedNodeProcessor extends FeedsProcessor { } /** - * Implementation of FeedsProcessor::clear(). + * Implements FeedsProcessor::clear(). */ public function clear(FeedsBatch $batch, FeedsSource $source) { // Do not support deleting imported items as we would have to delete all diff --git a/plugins/FeedsFileFetcher.inc b/plugins/FeedsFileFetcher.inc index bc69d3ab..07226c39 100644 --- a/plugins/FeedsFileFetcher.inc +++ b/plugins/FeedsFileFetcher.inc @@ -22,14 +22,14 @@ class FeedsFileBatch extends FeedsImportBatch { } /** - * Implementation of FeedsImportBatch::getRaw(); + * Implements FeedsImportBatch::getRaw(); */ public function getRaw() { return file_get_contents(realpath($this->file_path)); } /** - * Implementation of FeedsImportBatch::getFilePath(). + * Implements FeedsImportBatch::getFilePath(). */ public function getFilePath() { if (!file_exists($this->file_path)) { @@ -45,7 +45,7 @@ class FeedsFileBatch extends FeedsImportBatch { class FeedsFileFetcher extends FeedsFetcher { /** - * Implementation of FeedsFetcher::fetch(). + * Implements FeedsFetcher::fetch(). */ public function fetch(FeedsSource $source) { $source_config = $source->getConfigFor($this); diff --git a/plugins/FeedsHTTPFetcher.inc b/plugins/FeedsHTTPFetcher.inc index 698d5c63..b1320f3b 100644 --- a/plugins/FeedsHTTPFetcher.inc +++ b/plugins/FeedsHTTPFetcher.inc @@ -25,7 +25,7 @@ class FeedsHTTPBatch extends FeedsImportBatch { } /** - * Implementation of FeedsImportBatch::getRaw(); + * Implements FeedsImportBatch::getRaw(); */ public function getRaw() { feeds_include_library('http_request.inc', 'http_request'); @@ -43,7 +43,7 @@ class FeedsHTTPBatch extends FeedsImportBatch { class FeedsHTTPFetcher extends FeedsFetcher { /** - * Implementation of FeedsFetcher::fetch(). + * Implements FeedsFetcher::fetch(). */ public function fetch(FeedsSource $source) { $source_config = $source->getConfigFor($this); @@ -64,7 +64,7 @@ class FeedsHTTPFetcher extends FeedsFetcher { } /** - * Implementation of FeedsFetcher::request(). + * Implements FeedsFetcher::request(). */ public function request($feed_nid = 0) { feeds_dbg($_GET); @@ -281,14 +281,14 @@ class PuSHEnvironment implements PuSHSubscriberEnvironmentInterface { } /** - * Implementation of PuSHSubscriberEnvironmentInterface::msg(). + * Implements PuSHSubscriberEnvironmentInterface::msg(). */ public function msg($msg, $level = 'status') { drupal_set_message($msg, $level); } /** - * Implementation of PuSHSubscriberEnvironmentInterface::log(). + * Implements PuSHSubscriberEnvironmentInterface::log(). */ public function log($msg, $level = 'status') { switch ($level) { diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc index 281e8c19..49199dc1 100644 --- a/plugins/FeedsNodeProcessor.inc +++ b/plugins/FeedsNodeProcessor.inc @@ -24,7 +24,7 @@ define('FEEDS_NODE_DEFAULT_FORMAT', -1); class FeedsNodeProcessor extends FeedsProcessor { /** - * Implementation of FeedsProcessor::process(). + * Implements FeedsProcessor::process(). */ public function process(FeedsImportBatch $batch, FeedsSource $source) { @@ -85,7 +85,7 @@ class FeedsNodeProcessor extends FeedsProcessor { } /** - * Implementation of FeedsProcessor::clear(). + * Implements FeedsProcessor::clear(). */ public function clear(FeedsBatch $batch, FeedsSource $source) { if (!$batch->getTotal(FEEDS_CLEARING)) { diff --git a/plugins/FeedsOPMLParser.inc b/plugins/FeedsOPMLParser.inc index 30ea043e..8ef7f8c5 100644 --- a/plugins/FeedsOPMLParser.inc +++ b/plugins/FeedsOPMLParser.inc @@ -12,7 +12,7 @@ class FeedsOPMLParser extends FeedsParser { /** - * Implementation of FeedsParser::parse(). + * Implements FeedsParser::parse(). */ public function parse(FeedsImportBatch $batch, FeedsSource $source) { feeds_include_library('opml_parser.inc', 'opml_parser'); diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc index 87e6bb86..a7b0acd3 100644 --- a/plugins/FeedsParser.inc +++ b/plugins/FeedsParser.inc @@ -307,7 +307,7 @@ class FeedsDateTimeElement extends FeedsElement { } /** - * Implementation of toString magic php method. + * Implements toString magic php method. */ public function __toString() { $val = $this->getValue(); diff --git a/plugins/FeedsPlugin.inc b/plugins/FeedsPlugin.inc index 0dfa7c38..2bb09482 100644 --- a/plugins/FeedsPlugin.inc +++ b/plugins/FeedsPlugin.inc @@ -43,7 +43,7 @@ abstract class FeedsPlugin extends FeedsConfigurable implements FeedsSourceInter } /** - * Implementation of FeedsSourceInterface::sourceDefaults(). + * Implements FeedsSourceInterface::sourceDefaults(). */ public function sourceDefaults() { $values = array_flip(array_keys($this->sourceForm(array()))); diff --git a/plugins/FeedsSimplePieParser.inc b/plugins/FeedsSimplePieParser.inc index 7b7756a9..b4711b12 100644 --- a/plugins/FeedsSimplePieParser.inc +++ b/plugins/FeedsSimplePieParser.inc @@ -58,7 +58,7 @@ class FeedsSimplePieEnclosure extends FeedsEnclosure { class FeedsSimplePieParser extends FeedsParser { /** - * Implementation of FeedsParser::parse(). + * Implements FeedsParser::parse(). */ public function parse(FeedsImportBatch $batch, FeedsSource $source) { feeds_include_library('simplepie.inc', 'simplepie'); diff --git a/plugins/FeedsSitemapParser.inc b/plugins/FeedsSitemapParser.inc index 2c80365e..f668efbc 100644 --- a/plugins/FeedsSitemapParser.inc +++ b/plugins/FeedsSitemapParser.inc @@ -6,7 +6,7 @@ */ class FeedsSitemapParser extends FeedsParser { /** - * Implementation of FeedsParser::parse(). + * Implements FeedsParser::parse(). */ public function parse(FeedsImportBatch $batch, FeedsSource $source) { // Set time zone to GMT for parsing dates with strtotime(). @@ -31,7 +31,7 @@ class FeedsSitemapParser extends FeedsParser { } /** - * Implementation of FeedsParser::getMappingSources(). + * Implements FeedsParser::getMappingSources(). */ public function getMappingSources() { return array( diff --git a/plugins/FeedsSyndicationParser.inc b/plugins/FeedsSyndicationParser.inc index 18577b14..6a5dfe32 100644 --- a/plugins/FeedsSyndicationParser.inc +++ b/plugins/FeedsSyndicationParser.inc @@ -9,7 +9,7 @@ class FeedsSyndicationParser extends FeedsParser { /** - * Implementation of FeedsParser::parse(). + * Implements FeedsParser::parse(). */ public function parse(FeedsImportBatch $batch, FeedsSource $source) { feeds_include_library('common_syndication_parser.inc', 'common_syndication_parser'); diff --git a/plugins/FeedsTermProcessor.inc b/plugins/FeedsTermProcessor.inc index 5b26c492..1ff82d7d 100644 --- a/plugins/FeedsTermProcessor.inc +++ b/plugins/FeedsTermProcessor.inc @@ -12,7 +12,7 @@ class FeedsTermProcessor extends FeedsProcessor { /** - * Implementation of FeedsProcessor::process(). + * Implements FeedsProcessor::process(). */ public function process(FeedsImportBatch $batch, FeedsSource $source) { @@ -84,7 +84,7 @@ class FeedsTermProcessor extends FeedsProcessor { } /** - * Implementation of FeedsProcessor::clear(). + * Implements FeedsProcessor::clear(). */ public function clear(FeedsBatch $batch, FeedsSource $source) { $deleted = 0; diff --git a/plugins/FeedsUserProcessor.inc b/plugins/FeedsUserProcessor.inc index 127dda95..1f187b6f 100644 --- a/plugins/FeedsUserProcessor.inc +++ b/plugins/FeedsUserProcessor.inc @@ -12,7 +12,7 @@ class FeedsUserProcessor extends FeedsProcessor { /** - * Implementation of FeedsProcessor::process(). + * Implements FeedsProcessor::process(). */ public function process(FeedsImportBatch $batch, FeedsSource $source) { @@ -83,7 +83,7 @@ class FeedsUserProcessor extends FeedsProcessor { } /** - * Implementation of FeedsProcessor::clear(). + * Implements FeedsProcessor::clear(). */ public function clear(FeedsBatch $batch, FeedsSource $source) { // Do not support deleting users as we have no way of knowing which ones we diff --git a/views/feeds.views.inc b/views/feeds.views.inc index 4f59afe3..2fc30e9c 100644 --- a/views/feeds.views.inc +++ b/views/feeds.views.inc @@ -9,7 +9,7 @@ */ /** - * Implementation of hook_views_data(). + * Implements hook_views_data(). */ function feeds_views_data() { $data = array(); @@ -175,7 +175,7 @@ function feeds_views_data() { } /** - * Implementation of hook_views_handlers(). + * Implements hook_views_handlers(). */ function feeds_views_handlers() { return array( -- GitLab