| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
|
| 4 |
/**
|
| 5 |
* @file
|
| 6 |
* Hooks provided by the Path module.
|
| 7 |
*/
|
| 8 |
|
| 9 |
/**
|
| 10 |
* @addtogroup hooks
|
| 11 |
* @{
|
| 12 |
*/
|
| 13 |
|
| 14 |
|
| 15 |
/**
|
| 16 |
* The path has been inserted.
|
| 17 |
*
|
| 18 |
* @param $path
|
| 19 |
* The path array.
|
| 20 |
*/
|
| 21 |
function hook_path_insert($path) {
|
| 22 |
}
|
| 23 |
|
| 24 |
/**
|
| 25 |
* The path has been updated.
|
| 26 |
*
|
| 27 |
* @param $path
|
| 28 |
* The path array.
|
| 29 |
*/
|
| 30 |
function hook_path_update($path) {
|
| 31 |
}
|
| 32 |
|
| 33 |
/**
|
| 34 |
* The path has been deleted.
|
| 35 |
*
|
| 36 |
* @param $path
|
| 37 |
* The path array.
|
| 38 |
*/
|
| 39 |
function hook_path_delete($path) {
|
| 40 |
}
|
| 41 |
|
| 42 |
/**
|
| 43 |
* @} End of "addtogroup hooks".
|
| 44 |
*/
|