You are here

function dynamic_background_inherit_dynamic_background_weight in Dynamic Background 7.2

Implements hook_dynamic_background_weight().

File

modules/dynamic_background_inherit/dynamic_background_inherit.module, line 10
Primary hook implementations for Dynamic Background Inherit.

Code

function dynamic_background_inherit_dynamic_background_weight() {
  return array(
    // By default this should load right before the main module but after all
    // others.
    'weight' => -21,
  );
}