This repository was archived by the owner on Apr 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
137 lines (136 loc) · 3.37 KB
/
Copy pathindex.php
File metadata and controls
137 lines (136 loc) · 3.37 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?php
require_once('oggeh.client.php');
//OGGEH::configure('rewrite', true); // uncomment to enable rewrite settings (rename htaccess.txt to .htaccess)
OGGEH::configure('domain', 'domain.ltd');
OGGEH::configure('api_key', '57ff136718d176aae148c8ce9aaf6817');
// Enable development environment
OGGEH::configure('sandbox_key', '39e55bb297b9943cfdab5d77cbf4f374');
OGGEH::configure('sandbox', true);
OGGEH::configure('i18n', array(
'home'=>array(
'en'=>'Home',
'ar'=>'الرئيسية'
),
'menu'=>array(
'en'=>'Menu',
'ar'=>'القائمة'
),
'album'=>array(
'en'=>'Gallery',
'ar'=>'معرض الصور'
),
'all-news'=>array(
'en'=>'News',
'ar'=>'الأخبار'
),
'learn-more'=>array(
'en'=>'Learn more',
'ar'=>'اقرأ المزيد'
),
'highlights'=>array(
'en'=>'Highlights',
'ar'=>'مقتطفات'
),
'latest-news'=>array(
'en'=>'Latest News',
'ar'=>'آخر الأخبار'
),
'get-in-touch'=>array(
'en'=>'Get in Touch',
'ar'=>'تواصل معنا'
),
'contact-us'=>array(
'en'=>'Contact us',
'ar'=>'اتصل بنا'
),
'request-quote'=>array(
'en'=>'Request a Quote',
'ar'=>'استعلام عن الأسعار'
),
'continue-reading'=>array(
'en'=>'Continue Reading',
'ar'=>'اقرأ المزيد'
),
'showing-results-for'=>array(
'en'=>'Showing results for',
'ar'=>'عرض نتائج البحث عن'
),
'search-not-found'=>array(
'en'=>'Not resuts found',
'ar'=>'لا توجد نتائج'
),
'page'=>array(
'en'=>'page',
'ar'=>'صفحة'
),
'news'=>array(
'en'=>'news',
'ar'=>'خبر'
),
'your-name'=>array(
'en'=>'Your Name',
'ar'=>'الاسم'
),
'email-address'=>array(
'en'=>'Email',
'ar'=>'البريد الالكتروني'
),
'message'=>array(
'en'=>'Message',
'ar'=>'الرسالة'
),
'send-inquiry'=>array(
'en'=>'Send',
'ar'=>'ارسل'
),
'submit'=>array(
'en'=>'Submit',
'ar'=>'تسجيل'
),
'reset'=>array(
'en'=>'Reset',
'ar'=>'إفراغ'
),
'form-success'=>array(
'en'=>'Thanks for your enquiry, we\'ll be in touch shortly.',
'ar'=>'شكرا جزيلا، سيتم الاتصال بك في أقرب وقت.'
),
'form-error'=>array(
'en'=>'Please fill in all fields correctly.',
'ar'=>'رجاء ملء جميع الحقول بشكل صحيح.'
),
'category'=>array(
'en'=>'Category',
'ar'=>'التصنيف'
),
'client'=>array(
'en'=>'Client',
'ar'=>'العميل'
),
'page-not-found'=>array(
'en'=>'The page you were looking for doesn\'t appear to exist',
'ar'=>'الصفحة التي تبحث عنها غير موجودة'
),
'back-to-home'=>array(
'en'=>'Go back to home page',
'ar'=>'العودة الى الصفحة الرئيسية'
),
'under-maintenance'=>array(
'en'=>'Under Maintenance',
'ar'=>'تحت الانشاء'
),
'under-maintenance-message'=>array(
'en'=>'We\'re updating our content, come back later!',
'ar'=>'نقوم بتحديث المحتوى، عد لزيارتنا لاقحا!'
)
));
$oggeh = new OGGEH();
echo $oggeh->display();
/**
* NOTES
* this script must be called only once per page request
* make sure to include a valid favicon
* avoid using blank or invalid source path in img tags
*/
//error_log('request made on: '.date('H:i:s d/m/Y'));
?>