function panels_api_version in Panels 5.2
Same name and namespace in other branches
- 8.3 panels.module \panels_api_version()
- 6.3 panels.module \panels_api_version()
- 6.2 panels.module \panels_api_version()
- 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 31 - panels.module Core API for Panels. Provides display editing and rendering capabilities.
Code
function panels_api_version() {
return array(
2,
0,
);
}