You are here

function datex_popup_requirements in Datex 7.3

Implements hook_requirements().

File

datex_popup/datex_popup.install, line 11
Check to see if jquery_update is available.

Code

function datex_popup_requirements() {
  $requirements = [];
  $t = get_t();
  $requirements['datex_popup_jquery'] = [
    'title' => $t('JQuery Library Version'),
    'severity' => module_exists('jquery_update') ? REQUIREMENT_OK : REQUIREMENT_INFO,
    'value' => module_exists('jquery_update') ? $t('jquery_update is enabled') : $t('jquery_update missing'),
    'description' => $t('Make sure you have the latest version of library loaded' . ' Use the jquery_update module or any other mean of updating the jquery library.'),
  ];
  return $requirements;
}