ViewsData.php in Lightning Workflow 8
Same filename and directory in other branches
Namespace
Drupal\lightning_workflowFile
src/ViewsData.phpView 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
Name | Description |
---|---|
ViewsData | Provides data to Views (i.e., via hook_views_data()). |