You are here

function dynamic_background_blog_settings_form in Dynamic Background 7.2

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

Return value

array $form

File

modules/dynamic_background_blog/dynamic_background_blog.module, line 45
This module provides the user blog's with the option to use different dynamic background images for each blog.

Code

function dynamic_background_blog_settings_form() {
  $form = array();

  // Add image style to the form.
  $form += dynamic_background_image_style_form('dynamic_background_blog_image_style');

  // Add image behavior form.
  $form += dynamic_background_image_behaviour_form('dynamic_background_blog_image_behaviour');
  return $form;
}