Last active
January 25, 2017 10:29
-
-
Save martsie/5ac13e4985eb2b3eb2f56c48052144b4 to your computer and use it in GitHub Desktop.
Basic implementation of hook_views_api()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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