Gets all data invoked by hook_views_data().
This is requested from the cache before being rebuilt.
array An array of all data.
protected function getData() {
$this->fullyLoaded = TRUE;
if ($data = $this
->cacheGet($this->baseCid)) {
return $data->data;
}
else {
$data = $this->moduleHandler
->invokeAll('views_data');
$this->moduleHandler
->alter('views_data', $data);
$this
->processEntityTypes($data);
// Keep a record with all data.
$this->cacheBackend
->set($this
->prepareCid($this->baseCid), $data);
return $data;
}
}