drupalubercart

How to get version of UberCart using PHP code


How to get version number of UberCart (a Drupal module) using PHP code? Please suggest. Thanks!


Solution

  • You can get a module's version in Drupal doing something like this.

    $module_name = 'module_name';
    if (module_exists($module_name) {
      $module_list = system_list('module_enabled');
      $module_version = $module_list[$module_name]->info['version'];
    }