71b8eebe428b66df3541b05eb8abf37e7afb5d87
[yaffs-website] / web / core / modules / action / action.views_execution.inc
1 <?php
2
3 /**
4  * @file
5  * Provides views runtime hooks for action.module.
6  */
7
8 /**
9  * Implements hook_views_form_substitutions().
10  */
11 function action_views_form_substitutions() {
12   $select_all = [
13     '#type' => 'checkbox',
14     '#default_value' => FALSE,
15     '#attributes' => ['class' => ['action-table-select-all']],
16   ];
17   return [
18     '<!--action-bulk-form-select-all-->' => drupal_render($select_all),
19   ];
20 }