You are here

function webform_protected_downloads_get_webform_version in Webform Protected Downloads 7

Find out what version of webform is currently installed.

Return value

string

1 call to webform_protected_downloads_get_webform_version()
webform_protected_downloads_configuration_form in ./webform_protected_downloads.form.inc
Form callback for the webform configuration subpage

File

./webform_protected_downloads.module, line 1211
This file contains hook declarations and functions for the Webform Protected Downloads module.

Code

function webform_protected_downloads_get_webform_version() {
  $module_info = system_get_info('module', 'webform');
  if (strpos($module_info['version'], '7.x-4') !== FALSE) {
    $version = '7.4';
  }
  else {
    $version = '7.3';
  }
  return $version;
}