summaryrefslogtreecommitdiff
path: root/modules/path/path.api.php
blob: 3dd82940e17db6b3b8767ccdfba1414b9e47b8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
// $Id$

/**
 * @file
 * Hooks provided by the Path module.
 */

/**
 * @addtogroup hooks
 * @{
 */


/**
 * The path has been inserted.
 *
 * @param $path
 *   The path array.
 */
function hook_path_insert($path) {
}

/**
 * The path has been updated.
 *
 * @param $path
 *   The path array.
 */
function hook_path_update($path) {
}

/**
 * The path has been deleted.
 *
 * @param $path
 *   The path array.
 */
function hook_path_delete($path) {
}

/**
 * @} End of "addtogroup hooks".
 */