comparison core/modules/views/views.views_execution.inc @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
23 '***CURRENT_TIME***' => REQUEST_TIME, 23 '***CURRENT_TIME***' => REQUEST_TIME,
24 ] + PluginBase::queryLanguageSubstitutions(); 24 ] + PluginBase::queryLanguageSubstitutions();
25 25
26 return $substitutions; 26 return $substitutions;
27 } 27 }
28
29 /**
30 * Implements hook_views_form_substitutions().
31 */
32 function views_views_form_substitutions() {
33 $select_all = [
34 '#type' => 'checkbox',
35 '#default_value' => FALSE,
36 '#attributes' => ['class' => ['action-table-select-all']],
37 ];
38 return [
39 '<!--action-bulk-form-select-all-->' => \Drupal::service('renderer')->render($select_all),
40 ];
41 }