Mercurial > hg > cmmr2012-drupal-site
annotate core/modules/action/action.views_execution.inc @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 |
Chris@0 | 3 /** |
Chris@0 | 4 * @file |
Chris@0 | 5 * Provides views runtime hooks for action.module. |
Chris@0 | 6 */ |
Chris@0 | 7 |
Chris@0 | 8 /** |
Chris@0 | 9 * Implements hook_views_form_substitutions(). |
Chris@0 | 10 */ |
Chris@0 | 11 function action_views_form_substitutions() { |
Chris@0 | 12 $select_all = [ |
Chris@0 | 13 '#type' => 'checkbox', |
Chris@0 | 14 '#default_value' => FALSE, |
Chris@0 | 15 '#attributes' => ['class' => ['action-table-select-all']], |
Chris@0 | 16 ]; |
Chris@0 | 17 return [ |
Chris@0 | 18 '<!--action-bulk-form-select-all-->' => \Drupal::service('renderer')->render($select_all), |
Chris@0 | 19 ]; |
Chris@0 | 20 } |