You are here

views_timelinejs.install in Views TimelineJS integration 7.3

Same filename and directory in other branches
  1. 8.3 views_timelinejs.install

Contains install, uninstall, and update hooks for Views TimelineJS.

File

views_timelinejs.install
View source
<?php

/**
 * @file
 * Contains install, uninstall, and update hooks for Views TimelineJS.
 */

/**
 * Implements hook_uninstall().
 */
function views_timelinejs_uninstall() {
  variable_del('views_timelinejs_css_library_group');
}

/**
 * Sets the CSS library group to 200 for existing installations.
 *
 * @see https://www.drupal.org/node/2856403
 */
function views_timelinejs_update_7300() {
  variable_set('views_timelinejs_css_library_group', 200);
}

Functions

Namesort descending Description
views_timelinejs_uninstall Implements hook_uninstall().
views_timelinejs_update_7300 Sets the CSS library group to 200 for existing installations.