This repository has been archived by the owner on Apr 8, 2020. It is now read-only.
forked from tayyebi/SnowCity-v2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConfig.php
48 lines (40 loc) · 1.55 KB
/
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
<?php
/**
* Config class script
* Sets hosting service variables
*
* @author MohammadReza Tayyebi <rexa@gordarg.com>
* @since 1.0
*/
class Config
{
public static function Languages()
{
$languages = array();
array_push($languages, new Language("fa", "فارسی", "ir", "r", "🇮🇷"));
array_push($languages, new Language("en", "English", "us", "l", "🇺🇸"));
// array_push($languages, new Language("ku", "کوردی", "iq", "r", "🇮🇶"));
// array_push($languages, new Language("ar", "العربية", "ae", "r", "🇦🇪"));
return $languages;
}
const TimeZone = "Asia/Tehran";
const DefaultLanguage = "en-us";
const ConnectionString_SERVER = "localhost";
const ConnectionString_DATABASE = "SnowKMS";
const ConnectionString_USERNAME = "root";
const ConnectionString_PASSWORD = "123";
// TODO: Multi Domain Support
const BASEURL = "http://localhost/SnowFramework/"; // /Anything
const TITLE = "سامانهی مدیریت دانش";
const LANGUAGE = "English";
const REGION = "IR";
const NAME = "مدیر دانش";
const SPONSOR = "Gordarg";
const META_KEYWORDS = "knowledge, social network, content, SEO, telecommunications, e-business";
const META_DESCRIPTION = "DESCRIPTION HERE";
const META_AUTHOR = "";
const WebMaster = "info@gordarg.com";
const mail_hostname = "{mail.gordarg.com:110/pop3/notls}Inbox";
const mail_username = "info@gordarg.com";
const mail_password = '';
}