You are here

WorkflowScheduledTransitionViewsData.php in Workflow 8

Namespace

Drupal\workflow

File

src/WorkflowScheduledTransitionViewsData.php
View source
<?php

namespace Drupal\workflow;


/**
 * Provides the views data for the workflow entity type.
 */
class WorkflowScheduledTransitionViewsData extends WorkflowTransitionViewsData {

  /**
   * {@inheritdoc}
   */
  public function getViewsData() {
    $data = parent::getViewsData();

    // @todo D8-port: Add some data from D7 function workflow_views_views_data_alter() ??
    // @see http://cgit.drupalcode.org/workflow/tree/workflow_views/workflow_views.views.inc
    return $data;
  }

}

Classes

Namesort descending Description
WorkflowScheduledTransitionViewsData Provides the views data for the workflow entity type.