diff options
-rw-r--r-- | modules/path/path.api.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/modules/path/path.api.php b/modules/path/path.api.php new file mode 100644 index 000000000..3dd82940e --- /dev/null +++ b/modules/path/path.api.php @@ -0,0 +1,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". + */ |