You are here

function dynamic_background_dynamic_background_info in Dynamic Background 7.2

Implements hook_dynamic_background_info().

Default implementation of the hook.

File

./dynamic_background.module, line 291
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_info() {
  return array(
    'type' => 'default',
    'menu' => array(
      'title' => t('Settings'),
      'description' => t('Configure dynamic backgrounds'),
      'weight' => 50,
    ),
    'upload' => FALSE,
  );
}