Skip to content

Instantly share code, notes, and snippets.

@martsie
Last active January 25, 2017 10:29
Show Gist options
  • Save martsie/5ac13e4985eb2b3eb2f56c48052144b4 to your computer and use it in GitHub Desktop.
Save martsie/5ac13e4985eb2b3eb2f56c48052144b4 to your computer and use it in GitHub Desktop.
Basic implementation of hook_views_api()
<?php
/**
* Implements hook_views_api().
*/
function my_custom_module_views_api() {
return array(
'api' => 3,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment