You are here

function action_views_form_substitutions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/action/action.views_execution.inc \action_views_form_substitutions()

Implements hook_views_form_substitutions().

File

core/modules/action/action.views_execution.inc, line 11
Provides views runtime hooks for action.module.

Code

function action_views_form_substitutions() {
  $select_all = array(
    '#type' => 'checkbox',
    '#default_value' => FALSE,
    '#attributes' => array(
      'class' => array(
        'action-table-select-all',
      ),
    ),
  );
  return array(
    '<!--action-bulk-form-select-all-->' => drupal_render($select_all),
  );
}