You are here

function openlayers_cck_content_generate in Openlayers 6.2

Same name and namespace in other branches
  1. 6 modules/openlayers_cck/openlayers_cck.module \openlayers_cck_content_generate()

Implementation of hook_content_generate().

File

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

Code

function openlayers_cck_content_generate(&$node, $field) {

  // In order to save PHP parsing unnecessary code on
  // every page load, use an include
  module_load_include('inc', 'openlayers_cck', 'includes/openlayers_cck.generate');
  return _openlayers_cck_content_generate($node, $field);
}