You are here

function views_api_minimum_version in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 8.3 views.module \views_api_minimum_version()
  2. 7.3 views.module \views_api_minimum_version()

Views will not load plugins advertising a version older than this.

1 call to views_api_minimum_version()
views_get_module_apis in ./views.module
Get a list of modules that support the current views API.

File

./views.module, line 52
Primarily Drupal hooks and global API functions to manipulate views.

Code

function views_api_minimum_version() {
  return '2';
}