summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-17 00:52:36 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-17 00:52:36 +0000
commit659662810bfb1e4b81cee389809a1eff5e69e961 (patch)
treeab6e903f15f5658d5d0270b1dc265ed0d0a1eac6 /modules/path
parenta613c60fe1cb806d6db2493c5322a4fb08549724 (diff)
downloadbrdo-659662810bfb1e4b81cee389809a1eff5e69e961.tar.gz
brdo-659662810bfb1e4b81cee389809a1eff5e69e961.tar.bz2
- Forgot to commit this earlier.
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.api.php44
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".
+ */