function panels_api_version in Panels 7.3
Same name and namespace in other branches
- 8.3 panels.module \panels_api_version()
- 5.2 panels.module \panels_api_version()
- 6.3 panels.module \panels_api_version()
- 6.2 panels.module \panels_api_version()
Returns the API version of Panels. This didn't exist in 1.
@todo -- this should work more like the CTools API version.
Return value
array An array with the major and minor versions
File
- ./
panels.module, line 40 - Core functionality for the Panels engine.
Code
function panels_api_version() {
return array(
3,
1,
);
}