aggregator_test.module

Same filename and directory in other branches
  1. 7.x modules/aggregator/tests/aggregator_test.module
  2. 8.9.x core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.module

Helper module for the Aggregator tests.

File

core/modules/aggregator/tests/modules/aggregator_test/aggregator_test.module

View source
<?php


/**
 * @file
 * Helper module for the Aggregator tests.
 */

/**
 * Implements hook_aggregator_fetcher_info_alter().
 */
function aggregator_test_aggregator_fetcher_info_alter(array &$info) {
    $info['aggregator_test_fetcher']['definition_altered'] = TRUE;
}

/**
 * Implements hook_aggregator_parser_info_alter().
 */
function aggregator_test_aggregator_parser_info_alter(array &$info) {
    $info['aggregator_test_parser']['definition_altered'] = TRUE;
}

/**
 * Implements hook_aggregator_processor_info_alter().
 */
function aggregator_test_aggregator_processor_info_alter(array &$info) {
    $info['aggregator_test_processor']['definition_altered'] = TRUE;
}

Functions

Title Deprecated Summary
aggregator_test_aggregator_fetcher_info_alter Implements hook_aggregator_fetcher_info_alter().
aggregator_test_aggregator_parser_info_alter Implements hook_aggregator_parser_info_alter().
aggregator_test_aggregator_processor_info_alter Implements hook_aggregator_processor_info_alter().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.