function dynamic_background_dynamic_background_weight in Dynamic Background 7
Same name and namespace in other branches
- 7.2 dynamic_background.module \dynamic_background_dynamic_background_weight()
Implements hook_dynamic_background_weight for the main module.
File
- ./
dynamic_background.module, line 105 - This module enables administrators to upload images used as background on the site. The selected background image link is exposed as either $background in the page.tpl file or as /background.css.
Code
function dynamic_background_dynamic_background_weight() {
return array(
'weight' => -20,
);
}