-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvars.php
More file actions
executable file
·45 lines (34 loc) · 1.41 KB
/
vars.php
File metadata and controls
executable file
·45 lines (34 loc) · 1.41 KB
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
<?php
//Site variables
$site_title = "NWSPS Abstracts";
$site_url = "http://site2.aaronmilligan.com"; //-- Be sure to change this to your login page
$site_email = "info@aaronmilligan.com"; //-- This is where the automatically generated e-mails will come from
$home_title = "Home";
$user_mgmt_title = "User Management";
$add_user_title = "Create a New User";
$edit_user_title = "Edit User";
$site_logo = "http://www.nwsps.org/images/templatemo_logo.png";
//You can have as many or as few of these as you like, but you must have at least one
$custom_language[1] = "English";
//You can have as many or as few of these as you like, but you must have at least one
$custom_topic[1] = "My Topic 1";
$custom_topic[2] = "My Topic 2";
$custom_topic[3] = "My Topic 3";
$custom_topic[4] = "My Topic 4";
$custom_topic[5] = "My Topic 5";
//You can have as many or as few of these as you like, but you must have at least one
$custom_country[1] = "Not Applicable";
$custom_country[2] = "Country 1";
$custom_country[3] = "Country 2";
$custom_country[4] = "Country 3";
$custom_country[5] = "Country 4";
$custom_country[6] = "Country 5";
$custom_country[7] = "Other";
//Limits for abstract submission form
$background_words_limit = "40";
$purpose_words_limit = "50";
$methods_words_limit = "100";
$findings_words_limit = "160";
$conclusion_words_limit = "50";
$total_words_limit = "400";
?>