You are here

function views_api_minimum_version in Views (for Drupal 7) 7.3

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

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

2 calls to views_api_minimum_version()
views_get_module_apis in ./views.module
Get a list of modules that support the current views API.
views_module_include in ./views.module
Load views files on behalf of modules.

File

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

Code

function views_api_minimum_version() {
  return '2';
}