You are here

function panels_api_version in Panels 6.3

Same name and namespace in other branches
  1. 8.3 panels.module \panels_api_version()
  2. 5.2 panels.module \panels_api_version()
  3. 6.2 panels.module \panels_api_version()
  4. 7.3 panels.module \panels_api_version()

Returns the API version of Panels. This didn't exist in 1.

Return value

An array with the major and minor versions

File

./panels.module, line 20
panels.module

Code

function panels_api_version() {
  return array(
    3,
    1,
  );
}