- Forgot to commit this earlier.

merge-requests/26/head
Dries Buytaert 2009-10-17 00:52:36 +00:00
parent a613c60fe1
commit 659662810b
1 changed files with 44 additions and 0 deletions

44
modules/path/path.api.php Normal file
View File

@ -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".
*/