root/trunk/examples/patExampleGen/config.php

Revision 364, 0.8 kB (checked in by schst, 2 years ago)

Removed absolute path entries in config

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2 /**
3  * Configuration for the examples - edit this file
4  * to set the paths to the needed classes as they
5  * should be on your server.
6  *
7  * $Id$
8  *
9  * @package        patForms
10  * @subpackage    Examples
11  * @author        Sebastian Mordziol <argh@php-tools.net>
12  */
13
14     // just as a helper - the base path in which the patTools
15     // can be found.
16      $basePath = '../..';
17
18      // this sets the locations for all the needed classes for
19     // the examples collection. Update this to make sure all
20     // the examples work as they should on your system.
21     $neededFiles = array(
22         'patForms'            =>    $basePath.'/patForms/patForms.php',
23         'patForms_Parser'    =>    $basePath.'/patForms/patForms/Parser.php',
24         'patErrorManager'    =>    $basePath.'/patError/patErrorManager.php',
25         'patTemplate'        =>    $basePath.'/patTemplate/patTemplate.php'
26     );
27
28 ?>
Note: See TracBrowser for help on using the browser.