updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / indefero-git / path.php
blob25311575f6ae9413866f2c3d319415cf41a70031
1 <?php
2 /* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
4 /**
5 * This file define the paths to where the Pluf and InDefero libraries
6 * are installed. If you followed the recommended layout of the files
7 * in the installation procedure, they should work out of the box.
9 * PLUF_PATH: path to the folder containing the Pluf.php file.
10 * IDF_PATH: path to the folder containing the IDF folder.
12 define('PLUF_PATH', '/srv/http/pluf/src');
13 define('IDF_PATH', dirname(__FILE__).'/../..');
15 set_include_path(get_include_path()
16 .PATH_SEPARATOR.PLUF_PATH
17 .PATH_SEPARATOR.IDF_PATH