Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. /**
  2. * Implements hook_form_FORM_ID_alter().
  3. *
  4. * Specifically get the view content page form, look for the bulk field in the header, and add a non-item as default
  5. */
  6. function HOOK_form_views_form_content_page_1_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state) {
  7. if (isset($form['header']['node_bulk_form']['action']['#type']) && $form['header']['node_bulk_form']['action']['#type'] === 'select') {
  8. $form['header']['node_bulk_form']['action']['#options'] = array('' => '- Select Action -') + $form['header']['node_bulk_form']['action']['#options'];
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement