function dynamic_background_dynamic_background_weight in Dynamic Background 7.2
Same name and namespace in other branches
- 7 dynamic_background.module \dynamic_background_dynamic_background_weight()
Implements hook_dynamic_background_weight().
Default implementation og the hook.
File
- ./
dynamic_background.module, line 308 - 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,
);
}