You are here

update_test_last_removed.install in Drupal 9

Update functions for the update_test_last_removed module.

File

core/modules/system/tests/modules/update_test_last_removed/update_test_last_removed.install
View source
<?php

/**
 * @file
 * Update functions for the update_test_last_removed module.
 */

/**
 * Implements hook_update_last_removed().
 */
function update_test_last_removed_update_last_removed() {
  return 8002;
}

/**
 * Dummy update function to run during the tests.
 */
function update_test_last_removed_update_8003() {
  return 'The update_test_last_removed_update_8003() update was executed successfully.';
}

Functions

Namesort descending Description
update_test_last_removed_update_8003 Dummy update function to run during the tests.
update_test_last_removed_update_last_removed Implements hook_update_last_removed().