Fetch Views' data from the cache
$param string|null $table (optional) The name of the table for which to fetch Views' data. If NULL, data for all tables will be retrieved
bool $reset: (optional) Whether to rebuild the cache. Defaults to FALSE.
array An associative array of views data for the given table. If $table is NULL, the array will be keyed by table name, with each key corresponding to the data array for that table.
function views_fetch_data($table = NULL, $reset = FALSE) {
views_include('cache');
return _views_fetch_data($table, $reset);
}