You are here

function dynamic_background_context_dynamic_background_info in Dynamic Background 7.2

Implements hook_dynamic_background_info().

File

modules/dynamic_background_context/dynamic_background_context.module, line 80

Code

function dynamic_background_context_dynamic_background_info() {
  return array(
    'type' => 'context',
    'menu' => array(
      'title' => t('Context'),
      'description' => t('Configure context extension'),
    ),
    'upload' => FALSE,
  );
}