You are here

function dynamic_background_inherit_form_dynamic_background_admin_weight_form_alter in Dynamic Background 7.2

Implements hook_form_FORM_ID_alter().

For the dynamic_background_admin_weight_form.

File

modules/dynamic_background_inherit/dynamic_background_inherit.module, line 31
Primary hook implementations for Dynamic Background Inherit.

Code

function dynamic_background_inherit_form_dynamic_background_admin_weight_form_alter(&$form, &$form_state, $form_id) {
  $form['inherit_message'] = array(
    '#markup' => t('Note: in order for the "inherit" module to work correctly it should be after "Dynamic background node" and before "Dynamic background".'),
  );
}