- Forgot to commit this earlier.
parent
a613c60fe1
commit
659662810b
|
|
@ -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".
|
||||
*/
|
||||
Loading…
Reference in New Issue