drupal 7 hook form alter

Solutions on MaxInterview for drupal 7 hook form alter by the best coders in the world

showing results for - "drupal 7 hook form alter"
Millicent
21 Mar 2016
1function hook_form_alter(&$form, &$form_state, $form_id) {
2  if (isset($form['type']) && $form['type']['#value'] . '_node_settings' == $form_id) {
3    $form['workflow']['upload_' . $form['type']['#value']] = array(
4      '#type' => 'radios',
5      '#title' => t('Attachments'),
6      '#default_value' => variable_get('upload_' . $form['type']['#value'], 1),
7      '#options' => array(
8        t('Disabled'),
9        t('Enabled'),
10      ),
11    );
12  }
13}