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
1 2 3 4 5 6 7 8 9 10 | 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 ), ); } |
Please login to continue.