-
Notifications
You must be signed in to change notification settings - Fork 19
/
config.gen.copy.inc.php
executable file
·59 lines (47 loc) · 2.89 KB
/
config.gen.copy.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?
/**
* Copyright (c) 2009 West Virginia University
*
* Licensed under the MIT License
* Redistributions of files must retain the above copyright notice.
*
*/
/* Quick Configuration File for Mobile Web */
/* Technical Info */
$install_path = "/path/to/install/"; # the directory mobile web has been installed in, trailing slash is required
$ga_code = ""; # Google Analytics Code, highly highly highly recommended
/* MySQL or SQLite */
$db_use_sqlite = true; # if using mysql change this to false, addresses naming issue between PDO & MySQL functions
/* SQLite Config */
$sqlite_path = $install_path."db/development.sqlite3"; # file system path to your SQLite database
/* MySQL Config Info */
$db_host = 'localhost';
$db_username = 'username';
$db_passwd = 'passwd';
$db_name = 'db';
/* Institution & Org Info */
$inst_name = "HEU"; # name of educational institution. highly recommend an acronym.
$inst_name_full = "Higher Ed University"; # full name of education institution
$org_name = "Higher Ed U Tech Office"; # name of organization supporting this instance of mobile web (shows in footer)
$city_state = "Somewhere, WV"; # city and state (or province, whatever) where your institution is located. shows on map results.
/* Theme Info */
$theme = "heu"; # the name of the theme folder for this install
/* Misc. Copy Configuration (where "copy" means text) */
$contact_addy = "[email protected]"; # email address to contact w/ questions
$mobile_web_addy = "m.inst.edu"; # web address for the mobile web site
$main_site_addy = "www.inst.edu"; # web address for your regular web site
$email_ending = "mail.inst.edu"; # ending email addy used on directory page example
$area_code = "304"; # area code for school
$exchange = "293"; # next three digits in a phone number for your school
$has_oc_prefix = true; # does your school have a shorter, on-campus prefix?
$oncampus_prefix = "3"; # number for on-campus prefix
$has_dir_search_va = false; # does your school have voice-assisted directory search?
$dir_search_va_num = "304.293.0000"; # number for voice-assisted directory search
$dir_search_samp_l = "3042930000"; # long phone number example for directory search
$dir_search_samp_s = "30000"; # short phone number example for directory search, leave empty if you don't want to use it
/* Shared iPhone Graphics Info */
$homescreen_icon = "icon_h.png"; # bookmark graphic for iPhone homescreen. should be in web/ip/images
$homelink_icon = "homelink_h.png"; # homelink breadcrumb graphic for iPhone. should be in web/ip/images
/* Google Maps API Key */
$maps_api_key = "";
?>