You are here

fullcalendar.install in FullCalendar 7

Install, update and uninstall functions for the fullcalendar module.

File

fullcalendar.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the fullcalendar module.
 */

/**
 * Implements of hook_requirements().
 */
function fullcalendar_requirements($phase) {
  $requirements = array();
  if ($phase == 'runtime') {
    $t = get_t();
    $status = _fullcalendar_status();
    if (!$status['fullcalendar_plugin']) {
      $requirements['fullcalendar_plugin'] = array(
        'title' => $t('FullCalendar plugin'),
        'value' => $t('At least @a', array(
          '@a' => FULLCALENDAR_MIN_PLUGIN_VERSION,
        )),
        'severity' => REQUIREMENT_ERROR,
        'description' => $t('You need to download the !fullcalendar and extract the entire contents of the archive into the %path folder of your server.', array(
          '!fullcalendar' => l(t('FullCalendar plugin'), 'http://arshaw.com/fullcalendar/download'),
          '%path' => 'sites/all/libraries',
        )),
      );
    }
    else {
      $requirements['fullcalendar_plugin'] = array(
        'title' => $t('FullCalendar plugin'),
        'severity' => REQUIREMENT_OK,
        'value' => fullcalendar_get_version(),
      );
    }
  }
  return $requirements;
}

/**
 * Implementation of hook_uninstall().
 */
function fullcalendar_uninstall() {
  variable_del('fullcalendar_path');
  variable_del('fullcalendar_compression_type');
}

Functions

Namesort descending Description
fullcalendar_requirements Implements of hook_requirements().
fullcalendar_uninstall Implementation of hook_uninstall().