forked from H3Gi/tatar-wars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
97 lines (85 loc) · 2.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
$AppConfig = array (
'db' => array (
'host' => 'localhost:3306',
'user' => 'tatrdbo_tat',
'password' => 'rebhezozo1975',
'database' => 'tatrdbo_tat',
),
'page' => array (
'ar_title' => 'حرب التتار - لعبة الانترنت - العرب, الرومان, الاغريق, الجرمان',
'en_title' => 'Tatar war',
'meta-tag' => '',
'asset_version' => 'c4b7c089def' // this is used to flush any old assets like css file or javascript
),
'system' => array (
'lang' => 'ar', // this is the default language, ar = for arabic, en = for english
'forum_url' => 'http://www.dboor.com/forum/',
'social_url' => 'http://www.tatar.dboor.com/',
// admin account info
'adminName' => 'admin',
'adminPassword' => 'rebhezozo1975',
'admin_email' => '[email protected]', // the email for admin account (set it before setup)
'email' => '[email protected]' // the email for others (like activation, forget password, ..etc)
),
'plus' => array (
'packages' => array (
array (
'name' => 'Package A',
'gold' => 30,
'cost' => 1.49,
'currency' => 'EGP',
'image' => 'package_a.jpg'
),
array (
'name' => 'Package B',
'gold' => 100,
'cost' => 3.99,
'currency' => 'EGP',
'image' => 'package_b.jpg'
),
array (
'name' => 'Package C',
'gold' => 250,
'cost' => 7.99,
'currency' => 'EGP',
'image' => 'package_c.jpg'
),
array (
'name' => 'Package D',
'gold' => 600,
'cost' => 15.99,
'currency' => 'EGP',
'image' => 'package_d.jpg'
),
),
'payments' => array (
'cashu' => array (
'testMode' => false,
'name' => 'CashU',
'period' => 'فورا',
'description' => 'الدفع عبر CASHU سهل وسريع',
'image' => 'cashu.gif',
'merchant_id' => 'dboornetwork',
'key' => '524891',
'testKey' => '5248910',
'serviceName' => 'TatarWars',
'returnKey' => '548fhr84747',
'currency' => 'usd'
),
'paypal' => array (
'testMode' => false,
'name' => 'PayPal',
'period' => 'فورا',
'description' => 'الدفع عبر Paypal سهل وسريع',
'image' => 'paypal.gif',
'merchant_id' => '[email protected]',
'key' => '',
'testKey' => '',
'serviceName' => '',
'returnKey' => '',
'currency' => 'USD'
),
)
)
);