1.20.x path.api.php hook_path_delete($path)

Respond to a path being deleted.

Parameters

$path: An associative array containing the following keys:

  • source: The internal system path.
  • alias: The URL alias.
  • pid: Unique path alias identifier.
  • langcode: The language code of the alias.

See also

path_delete()

Related topics

File

modules/path/path.api.php, line 93
Hooks provided by the Path module.

Code

function hook_path_delete($path) {
  db_delete('mytable')
    ->condition('pid', $path['pid'])
    ->execute();
}