You are here

function auto_menutitle_after_build in Auto Menu Title 6.2

1 string reference to 'auto_menutitle_after_build'
auto_menutitle_form_alter in ./auto_menutitle.module
Implementation of hook_form_alter().

File

./auto_menutitle.module, line 177
Allows the menu title field to be automatically populated with the contents written into the node Title field

Code

function auto_menutitle_after_build($form, $form_state) {
  drupal_add_js(array(
    'autoMenutitle' => array(
      'amtCurrentSetting' => variable_get('amt_' . $form['type']['#value'], ''),
      'amtConstantPattern' => AUTO_MENUTITLE_ENABLED_PATTERN_ON,
    ),
  ), 'setting');
  drupal_add_js(drupal_get_path('module', 'auto_menutitle') . '/auto_menutitle.js');
  return $form;
}