You are here

function lightning_workflow_views_plugins_field_alter in Lightning Workflow 8

Same name and namespace in other branches
  1. 8.3 lightning_workflow.module \lightning_workflow_views_plugins_field_alter()
  2. 8.2 lightning_workflow.module \lightning_workflow_views_plugins_field_alter()

Implements hook_views_plugins_field_alter().

File

./lightning_workflow.module, line 211
Provides workflow enhancements for Drupal.

Code

function lightning_workflow_views_plugins_field_alter(array &$plugins) {
  if (isset($plugins['node_bulk_form'])) {
    $plugins['node_bulk_form']['class'] = NodeBulkForm::class;
  }
}