path_deprecated_test.module

Support module for testing deprecated functionality for path aliases.

File

core/modules/system/tests/modules/path_deprecated_test/path_deprecated_test.module

View source
<?php


/**
 * @file
 * Support module for testing deprecated functionality for path aliases.
 */

/**
 * Implements hook_path_insert().
 */
function path_deprecated_test_path_insert($path) {
    // Nothing to do here.
}

/**
 * Implements hook_path_update().
 */
function path_deprecated_test_path_update($path) {
    // Nothing to do here.
}

/**
 * Implements hook_path_delete().
 */
function path_deprecated_test_path_delete($path) {
    // Nothing to do here.
}

Functions

Title Deprecated Summary
path_deprecated_test_path_delete Implements hook_path_delete().
path_deprecated_test_path_insert Implements hook_path_insert().
path_deprecated_test_path_update Implements hook_path_update().

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.