You are here

function nd_preprocess_node in Display Suite 6.3

Implementation of moduleName_preprocess_hook(). The node data will be rendered in regions. This uses a helper function so themers/developers can call that helper function from within their preprocess_hooks if they are fiddling with some data. For information about this decision see http://drupal.org/node/570592 (issue) and http://drupal.org/node/572614 for information on howto implement.

File

modules/nd/nd.module, line 262
Node displays.

Code

function nd_preprocess_node(&$vars, $hook) {
  if (!variable_get('nd_preprocess_override', FALSE)) {
    _nd_preprocess_node($vars, $hook);
  }
}