3 * Created on Aug 16, 2005
5 * Example config file for application installer
9 * Application name setting
11 $app_name = "Test App";
14 * Directories that will be looked in for Test classes.
15 * These directories will be traversed in the order they
16 * are added here. This variable is optional and is intended
17 * as a way to allow developers to use their own Test classes
18 * and not have to pollute the installer dir with files
20 * The Installer will always look in the $INSTALLER_BASE/tests
21 * directory for Test classes last
27 * Directories that will be looked in for Action classes.
28 * These directories will be traversed in the order they
29 * are added here. This variable is optional and is intended
30 * as a way to allow developers to use their own Actions and
31 * not have to pollute the installer dir with files
33 * The Installer will always look in the $INSTALLER_BASE/actions
34 * directory for Actions last
36 $action_dirs = array();
39 * The version file defines all the known versions of the application
40 * and the Tests and Actions required to go from the previous version
41 * to the defined version.
43 $version_file = realpath(dirname(__FILE__
)).'/example_versions.php';
46 * We need to ensure the class for determining the current version
49 //require_once('MyVersionCheck.class.php');
52 * Define the class name for the version detection class. This
53 * class must extend the VersionCheck class included with the
54 * installer. The class must override the getCurrentVersion()
55 * method from the VersionCheck class.
57 $version_detection_class = 'VersionCheck';
60 * Writable directory for smarty compile dir
62 $writable_dir = realpath(dirname(__FILE__
)).'/tmp';
67 $template_dir = realpath(dirname(__FILE__
)).'/templates';