array(), ); $data['action']['action_bulk_form'] = array( 'title' => t('Bulk update'), 'help' => t('Allows users to apply an action to one or more items.'), 'field' => array( 'id' => 'action_bulk_form', ), ); return $data; } /** * Implements hook_views_form_substitutions(). */ function action_views_form_substitutions() { // Views check_plain()s the column label, so we need to match that. $select_all_placeholder = check_plain(''); $select_all = array( '#type' => 'checkbox', '#default_value' => FALSE, '#attributes' => array('class' => array('action-table-select-all')), ); return array( $select_all_placeholder => drupal_render($select_all), ); }