This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global-config.php
62 lines (48 loc) · 1.59 KB
/
global-config.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
60
61
62
<?php
/**
* GLOBAL CONFIGURATION
*
* Should be revised every time the environment is changed, especially for the
* next year.
*
* @author Svyatoslav Polishchuk (year 2018)
* @version 3.0
* @since 1.2
*
**==========================================================================**/
?><?php
/**
* $environmentType is used to indicate either the environment or the event that
* in what the website is currently used. Based on environment, the system call
* the local on online files or change parts of the content on the home page.
*
* Current options are 'countdown' 'reveal', 'dandad', 'local' and 'past'.
**/
define( environmentType , 'local' );
define( environmentDates , '11th - 14th July 2018' );
define( currentYear, '2018' );
/**
* $ixdContacts is used to display links to IxD social pages on the home page,
* in the footer or any other place you call it.
*
* @see $insertLinks function in 'functions.php' file
**/
$ixdContacts = array(
'facebook-f' => 'https://facebook.com/ixdnorthumbria',
'instagram' => 'https://instagram.com/ixdnorthumbria',
'twitter' => 'https://twitter.com/ixdnorthumbria',
'vimeo-v' => '',
'envelope' => 'imdreveal@gmail.com',
);
/**
* $debugging mode used in a case of website maintenance and you need to see
* detailed information. Also, in debug mode the system will load unminimised
* CSS and JS scripts.
**/
$debugging = 'off';
/**
* Include sensative information such as API keys
* and general functions
**/
include_once 'global-config-keys.php';
include_once 'global-functions.php';