summarylogtreecommitdiffstats
path: root/path.php
diff options
context:
space:
mode:
authoryhfudev2015-06-09 12:36:24 -0400
committeryhfudev2015-06-09 12:36:24 -0400
commitf6cdf97a16f6bd724aad46cb35d3660a0aa54956 (patch)
tree91abf136d19ef4b05c81896230d77bda552c8ae3 /path.php
downloadaur-indefero-git.tar.gz
Initial import
Diffstat (limited to 'path.php')
-rw-r--r--path.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/path.php b/path.php
new file mode 100644
index 000000000000..25311575f6ae
--- /dev/null
+++ b/path.php
@@ -0,0 +1,18 @@
+<?php
+/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+
+/**
+ * This file define the paths to where the Pluf and InDefero libraries
+ * are installed. If you followed the recommended layout of the files
+ * in the installation procedure, they should work out of the box.
+ *
+ * PLUF_PATH: path to the folder containing the Pluf.php file.
+ * IDF_PATH: path to the folder containing the IDF folder.
+ */
+define('PLUF_PATH', '/srv/http/pluf/src');
+define('IDF_PATH', dirname(__FILE__).'/../..');
+
+set_include_path(get_include_path()
+ .PATH_SEPARATOR.PLUF_PATH
+ .PATH_SEPARATOR.IDF_PATH
+ );