You are here

function dynamic_background_blog_admin_form in Dynamic Background 6

Same name and namespace in other branches
  1. 7 modules/dynamic_background_blog/dynamic_background_blog.module \dynamic_background_blog_admin_form()

Build the administration interface for dynamic background nodes and enables administrators to select which content types have enable background selection.

Return value

array $form

1 string reference to 'dynamic_background_blog_admin_form'
dynamic_background_blog_menu in modules/dynamic_background_blog/dynamic_background_blog.module
Implementation of hook_menu(). Hooks into the dynamic background modules menu structure and adds the "blog" menu tab to the administration interface.

File

modules/dynamic_background_blog/dynamic_background_blog.module, line 56

Code

function dynamic_background_blog_admin_form() {
  $form = array(
    '#tree' => TRUE,
  );

  // Add imagecache present to the form.
  $form += dynamic_background_image_presents_form('dynamic_background_blog_imagecache');

  // Add css behaviour form to the form.
  $form += dynamic_background_css_behaviour_form('dynamic_background_blog_css');
  return system_settings_form($form);
}