drupal/modules/path/path.api.php

45 lines
498 B
PHP

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