~gt/sahana-agasti/relief-experiments

« back to all changes in this revision

Viewing changes to mod/gps/conf.inc

  • Committer: turtle
  • Date: 2009-11-10 23:51:44 UTC
  • Revision ID: turtle@turtle-laptop-20091110235144-lvhvgwfm053jvq5q
first relief codebase

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/* $id$ */
 
4
 
 
5
/** Configuration File for GPS
 
6
*
 
7
* PHP version 4 and 5
 
8
*
 
9
* LICENSE: This source file is subject to LGPL license
 
10
* that is available through the world-wide-web at the following URI:
 
11
* http://www.gnu.org/copyleft/lesser.html
 
12
*
 
13
* Sahana - http://sahana.sourceforge.net
 
14
* @author     Sriganeshan <sri@opensource.lk>
 
15
* @author     Fran Boon <flavour@partyvibe.com>
 
16
* @copyright  Lanka Software Foundation - http://www.opensource.lk
 
17
* @package    module
 
18
* @subpackage gis
 
19
* @license    http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License (LGPL)
 
20
*/
 
21
 
 
22
global $conf;
 
23
 
 
24
/**
 
25
 * nice display name for the GPS module
 
26
 */
 
27
$conf['mod_gps_name'] = _("GPS Interface");
 
28
$conf['mod_gps_menuorder'] = 3;
 
29
 
 
30
/**
 
31
 * Nice name for admin module
 
32
 */
 
33
$conf['mod_gps_adm_name']=_("GPS");
 
34
 
 
35
/**
 
36
 * Folder that contains gps data files
 
37
 */
 
38
$conf['mod_gps_data_folder'] = 'data';
 
39
 
 
40
/**
 
41
 * Files for temporarily storing dynamic markers
 
42
 */
 
43
$conf['input']= "../www/tmp/input.txt";
 
44
$conf['output']= "../www/tmp/output.txt";
 
45
   
 
46
/**
 
47
 * GPX schema location
 
48
 */
 
49
$conf['schema_location']="./gpx_schema.xsd";
 
50
 
 
51
?>