-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconstants.php
22 lines (20 loc) · 896 Bytes
/
constants.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* Application's constants
*/
// Project constants
const PROJECT_NAME = 'halo';
const PROJECT_SESSION_ID = 'SESSID_HALO'; // For separating sessions of multiple Halo projects running on same server
const DEFAULT_CONTROLLER = 'welcome';
const DEVELOPER_EMAIL = '[email protected]'; // Where to send errors
const FACEBOOK_APP_ID = '1000000000000001'; // For FB login
const FACEBOOK_SECRET = 'ffffffffffffffffffffffffffffffff'; // For FB login
const FORCE_HTTPS = false; // Force HTTPS connections
const GOOGLE_CLIENT_ID = '1000000000000-ffffffffffffffffffffffffffffffff.apps.googleusercontent.com'; // For G login
const GOOGLE_CLIENT_SECRET = 'sssssssssssssssss-ss_SSS';
const GOOGLE_REDIRECT_URI = 'login_google/callback'; // For G login
const DEFAULT_TIMEZONE = 'Europe/Tallinn';
const ENV_DEVELOPMENT = 0;
const ENV_PRODUCTION = 1;
const ACTIVITY_LOGIN = 1;
const ACTIVITY_LOGOUT = 2;