You are here

ViewsData.php in Lightning Workflow 8.2

Same filename and directory in other branches
  1. 8.3 src/ViewsData.php
  2. 8 src/ViewsData.php

File

src/ViewsData.php
View source
<?php

namespace Drupal\lightning_workflow;


/**
 * Provides data to Views (i.e., via hook_views_data()).
 */
class ViewsData {

  /**
   * Returns all relevant data for Views.
   *
   * @return array
   *   The data exposed to Views, in the format expected by hook_views_data().
   */
  public function getAll() {
    return [];
  }

}

Classes

Namesort descending Description
ViewsData Provides data to Views (i.e., via hook_views_data()).