/[drupal]/drupal/modules/path/path.api.php
ViewVC logotype

Contents of /drupal/modules/path/path.api.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Sat Oct 17 00:52:36 2009 UTC (5 weeks, 6 days ago) by dries
Branch: MAIN
CVS Tags: DRUPAL-7-0-UNSTABLE-10, HEAD
File MIME type: text/x-php
- Forgot to commit this earlier.
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 */

  ViewVC Help
Powered by ViewVC 1.1.2