You are here

function openlayers_cck_feeds_node_processor_targets_alter in Openlayers 6.2

Same name and namespace in other branches
  1. 6 modules/openlayers_cck/includes/openlayers_cck.feeds.inc \openlayers_cck_feeds_node_processor_targets_alter()

Implementation of hook_feeds_node_processor_targets_alter().

File

modules/openlayers_cck/openlayers_cck.module, line 527
This file holds the main Drupal hook functions and private functions for the openlayers_cck module.

Code

function openlayers_cck_feeds_node_processor_targets_alter(&$targets, $content_type) {

  // In order to save PHP parsing unnecessary code on
  // every page load, use an include
  module_load_include('inc', 'openlayers_cck', 'includes/openlayers_cck.feeds');
  return _openlayers_cck_feeds_node_processor_targets_alter($targets, $content_type);
}