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
<div class="row ">
<div class="col-xl-12">
<div class="card">
<div class="card-body">
<h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('system_settings'); ?></h4>
</div> <!-- end card body-->
</div> <!-- end card -->
</div><!-- end col-->
</div>
<div class="row">
<div class="col-xl-7">
<div class="card">
<div class="card-body">
<div class="col-lg-12">
<h4 class="mb-3 header-title"><?php echo get_phrase('system_settings');?></h4>
<form class="required-form" action="<?php echo site_url('admin/system_settings/system_update'); ?>" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="system_name"><?php echo get_phrase('website_name'); ?><span class="required">*</span></label>
<input type="text" name = "system_name" id = "system_name" class="form-control" value="<?php echo get_settings('system_name'); ?>" required>
</div>
<div class="form-group">
<label for="system_title"><?php echo get_phrase('website_title'); ?><span class="required">*</span></label>
<input type="text" name = "system_title" id = "system_title" class="form-control" value="<?php echo get_settings('system_title'); ?>" required>
</div>
<div class="form-group">
<label for="website_keywords"><?php echo get_phrase('website_keywords'); ?></label>
<input type="text" class="form-control bootstrap-tag-input" id = "website_keywords" name="website_keywords" data-role="tagsinput" style="width: 100%;" value="<?php echo get_settings('website_keywords'); ?>"/>
</div>
<div class="form-group">
<label for="website_description"><?php echo get_phrase('website_description'); ?></label>
<textarea name="website_description" id = "website_description" class="form-control" rows="5"><?php echo get_settings('website_description'); ?></textarea>
</div>
<div class="form-group">
<label for="author"><?php echo get_phrase('author'); ?></label>
<input type="text" name = "author" id = "author" class="form-control" value="<?php echo get_settings('author'); ?>">
</div>
<div class="form-group">
<label for="slogan"><?php echo get_phrase('slogan'); ?><span class="required">*</span></label>
<input type="text" name = "slogan" id = "slogan" class="form-control" value="<?php echo get_settings('slogan'); ?>" required>
</div>
<div class="form-group">
<label for="system_email"><?php echo get_phrase('system_email'); ?><span class="required">*</span></label>
<input type="text" name = "system_email" id = "system_email" class="form-control" value="<?php echo get_settings('system_email'); ?>" required>
</div>
<div class="form-group">
<label for="address"><?php echo get_phrase('address'); ?></label>
<textarea name="address" id = "address" class="form-control" rows="5"><?php echo get_settings('address'); ?></textarea>
</div>
<div class="form-group">
<label for="phone"><?php echo get_phrase('phone'); ?></label>
<input type="text" name = "phone" id = "phone" class="form-control" value="<?php echo get_settings('phone'); ?>">
</div>
<div class="form-group">
<label for="youtube_api_key"><?php echo get_phrase('youtube_API_key'); ?><span class="required">*</span> <a href = "https://developers.google.com/youtube/v3/getting-started" target = "_blank" style="color: #a7a4a4">(<?php echo get_phrase('get_YouTube_API_key'); ?>)</a></label>
<input type="text" name = "youtube_api_key" id = "youtube_api_key" class="form-control" value="<?php echo get_settings('youtube_api_key'); ?>" required>
</div>
<div class="form-group">
<label for="vimeo_api_key"><?php echo get_phrase('vimeo_API_key'); ?><span class="required">*</span> <a href = "https://www.youtube.com/watch?v=Wwy9aibAd54" target = "_blank" style="color: #a7a4a4">(<?php echo get_phrase('get_Vimeo_API_key'); ?>)</a></label>
<input type="text" name = "vimeo_api_key" id = "vimeo_api_key" class="form-control" value="<?php echo get_settings('vimeo_api_key'); ?>" required>
</div>
<div class="form-group">
<label for="purchase_code"><?php echo get_phrase('purchase_code'); ?><span class="required">*</span></label>
<input type="text" name = "purchase_code" id = "purchase_code" class="form-control" value="<?php echo get_settings('purchase_code'); ?>" required>
</div>
<div class="form-group">
<label for="language"><?php echo get_phrase('system_language'); ?></label>
<select class="form-control select2" data-toggle="select2" name="language" id="language">
<?php foreach ($languages as $language): ?>
<option value="<?php echo $language; ?>" <?php if(get_settings('language') == $language) echo 'selected'; ?>><?php echo ucfirst($language); ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="form-group">
<label for="language"><?php echo get_phrase('student_email_verification'); ?></label>
<select class="form-control select2" data-toggle="select2" name="student_email_verification" id="student_email_verification">
<option value="enable" <?php if(get_settings('student_email_verification') == "enable") echo 'selected'; ?>><?php echo get_phrase('enable'); ?></option>
<option value="disable" <?php if(get_settings('student_email_verification') == "disable") echo 'selected'; ?>><?php echo get_phrase('disable'); ?></option>
</select>
</div>
<div class="form-group">
<label for="footer_text"><?php echo get_phrase('footer_text'); ?></label>
<input type="text" name = "footer_text" id = "footer_text" class="form-control" value="<?php echo get_settings('footer_text'); ?>">
</div>
<div class="form-group">
<label for="footer_link"><?php echo get_phrase('footer_link'); ?></label>
<input type="text" name = "footer_link" id = "footer_link" class="form-control" value="<?php echo get_settings('footer_link'); ?>">
</div>
<button type="button" class="btn btn-primary" onclick="checkRequiredFields()"><?php echo get_phrase('save'); ?></button>
</form>
</div>
</div> <!-- end card body-->
</div> <!-- end card -->
</div><!-- end col-->
<div class="col-xl-5">
<div class="card">
<div class="card-body">
<div class="col-lg-12">
<h4 class="mb-3 header-title"><?php echo get_phrase('update_product');?></h4>
<form action="<?php echo site_url('updater/update'); ?>" method="post" enctype="multipart/form-data">
<div class="form-group mb-2">
<label><?php echo get_phrase('file'); ?></label>
<div class="input-group">
<div class="custom-file">
<input type="file" class="custom-file-input" id="file_name" name="file_name" required onchange="changeTitleOfImageUploader(this)">
<label class="custom-file-label" for="file_name"><?php echo get_phrase('update_product'); ?></label>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary"><?php echo get_phrase('update'); ?></button>
</form>
</div>
</div> <!-- end card body-->
</div>
</div>
</div>