Drupal 7
Expose custom table in Views 3
Created a module call colours.module
/**
* Implementation of hook_views_api().
*/
function colours_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'colours') . '/views', // Placed all my views inside the views folder.
);
}
