You are here

function lightning_workflow_views_data_alter in Lightning Workflow 8.3

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

Implements hook_views_data_alter().

File

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

Code

function lightning_workflow_views_data_alter(array &$data) {
  foreach ($data as $table => $table_data) {
    if (isset($table_data['moderation_state']['field'])) {
      $data[$table]['moderation_state']['field'] += [
        'id' => 'null',
      ];
    }
  }
}