You are here

textimage.install in Textimage 8.3

Textimage - Installation scripts.

File

textimage.install
View source
<?php

/**
 * @file
 * Textimage - Installation scripts.
 */

/**
 * Implements hook_uninstall().
 */
function textimage_uninstall() {
  \Drupal::service('textimage.factory')
    ->flushAll();
}

/**
 * Clear caches due to update of the 'textimage.factory' service.
 */
function textimage_update_8001() {

  // Empty update to cause a cache rebuild.
}

/**
 * Clear caches due to changes of the Textimage route definitions.
 */
function textimage_update_8002() {

  // Empty update to cause a cache rebuild.
}

Functions

Namesort descending Description
textimage_uninstall Implements hook_uninstall().
textimage_update_8001 Clear caches due to update of the 'textimage.factory' service.
textimage_update_8002 Clear caches due to changes of the Textimage route definitions.