- modules/fotolab updated imagej to current version & some cod fixes to make it work
[care2x.git] / Care2007 / installer / config.php
blob908c58c28bda17b470f2f051f09e0eeb8cec9129
1 <?php
2 /*
3 * Created on Aug 16, 2005
5 * ClearHealth config file for application installer
6 */
8 /*
9 * Application name setting
10 */
11 $app_name = "Care2x";
14 * Version number
16 $short_version = "2.4";
19 * Deployment | beta
21 $version_status = "RC2";
24 * Long version description
26 $long_version = "- Version $short_version - $version_status";
30 * Directories that will be looked in for Test classes.
31 * These directories will be traversed in the order they
32 * are added here. This variable is optional and is intended
33 * as a way to allow developers to use their own Test classes
34 * and not have to pollute the installer dir with files
36 * The Installer will always look in the $INSTALLER_BASE/tests
37 * directory for Test classes last
39 $test_dirs = array();
43 * Directories that will be looked in for Action classes.
44 * These directories will be traversed in the order they
45 * are added here. This variable is optional and is intended
46 * as a way to allow developers to use their own Actions and
47 * not have to pollute the installer dir with files
49 * The Installer will always look in the $INSTALLER_BASE/actions
50 * directory for Actions last
52 $action_dirs = array();
55 * The version file defines all the known versions of the application
56 * and the Tests and Actions required to go from the previous version
57 * to the defined version.
59 $version_file = realpath(dirname(__FILE__)).'/versions.php';
62 * We need to ensure the class for determining the current version
63 * is available here.
65 //require_once('MyVersionCheck.class.php');
68 * Define the class name for the version detection class. This
69 * class must extend the VersionCheck class included with the
70 * installer. The class must override the getCurrentVersion()
71 * method from the VersionCheck class.
73 $version_detection_class = 'VersionCheck';
76 * Writable directory for smarty compile dir
78 $writable_dir = 'c:\tmp';
79 if (!file_exists($writable_dir)) {
80 $writable_dir = realpath(dirname(__FILE__).'/tmp');
84 * Template directory
86 $template_dir = realpath(dirname(__FILE__)).'/templates';