You are here

function fullcalendar_requirements in FullCalendar 8.2

Same name and namespace in other branches
  1. 8.5 fullcalendar.install \fullcalendar_requirements()
  2. 8 fullcalendar.install \fullcalendar_requirements()
  3. 8.3 fullcalendar.install \fullcalendar_requirements()
  4. 8.4 fullcalendar.install \fullcalendar_requirements()
  5. 6.2 fullcalendar.install \fullcalendar_requirements()
  6. 6 fullcalendar.install \fullcalendar_requirements()
  7. 7.2 fullcalendar.install \fullcalendar_requirements()
  8. 7 fullcalendar.install \fullcalendar_requirements()

Implements hook_requirements().

File

./fullcalendar.install, line 11
Install, update and uninstall functions for the FullCalendar module.

Code

function fullcalendar_requirements($phase) {
  $requirements = [];
  if ($phase == 'runtime') {
    $path = fullcalendar_get_js_path();
    if (!file_exists($path) || version_compare(fullcalendar_get_version($path), FULLCALENDAR_MIN_PLUGIN_VERSION, '<')) {
      $requirements['fullcalendar_plugin'] = [
        'title' => t('FullCalendar plugin'),
        'value' => t('At least @a', [
          '@a' => FULLCALENDAR_MIN_PLUGIN_VERSION,
        ]),
        'severity' => REQUIREMENT_ERROR,
        'description' => t('You need to download the <a href=":fullcalendar" target="_blank">FullCalendar plugin</a> and extract the entire contents of the archive into the %path folder of your server.', [
          ':fullcalendar' => 'http://arshaw.com/fullcalendar/download',
          '%path' => '/libraries',
        ]),
      ];
    }
    else {
      $requirements['fullcalendar_plugin'] = [
        'title' => t('FullCalendar plugin'),
        'severity' => REQUIREMENT_OK,
        'value' => fullcalendar_get_version(),
      ];
    }
  }
  return $requirements;
}