forked from solaymanhaider/notify-woosms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
320 lines (232 loc) · 9.19 KB
/
admin.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<?php
function notify_woosms_scripts() {
wp_enqueue_style( 'notify_woosms_style', plugin_dir_url( __FILE__ ) . "/css/style.css");
}
add_action( 'admin_print_styles', 'notify_woosms_scripts' );
add_action( 'admin_menu', 'notify_woosms_add_admin_menu' );
add_action( 'admin_init', 'notify_woosms_settings_init' );
function notify_woosms_add_admin_menu( ) {
add_options_page( 'Notify WooSMS', 'Notify WooSMS', 'manage_options', 'notify_woosms', 'notify_woosms_options_page' );
}
function notify_woosms_settings_init( ) {
register_setting( 'pluginPage', 'notify_woosms_settings' );
add_settings_section(
'notify_woosms_pluginPage_api_section',
__( 'API SETTINGS', 'notify-woosms' ),
'notify_woosms_settings_api_section_callback',
'pluginPage'
);
add_settings_field(
'notify_woosms_enable_sms',
__( 'SMS Notification:', 'notify-woosms' ),
'notify_woosms_enable_sms_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_field(
'notify_woosms_select_provider',
__( 'Select SMS Provider', 'notify_woosms' ),
'notify_woosms_select_provider_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_field(
'notify_woosms_api_key',
__( 'API Key:', 'notify-woosms' ),
'notify_woosms_api_key_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_field(
'notify_woosms_api_user_name',
__( 'User Name:', 'notify-woosms' ),
'notify_woosms_api_user_name_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_field(
'notify_woosms_api_password',
__( 'Password:', 'notify-woosms' ),
'notify_woosms_api_password_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_field(
'notify_woosms_api_mask',
__( 'Masking Name:', 'notify-woosms' ),
'notify_woosms_api_mask_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_field(
'notify_woosms_api_src',
__( 'SenderId:', 'notify-woosms' ),
'notify_woosms_api_src_render',
'pluginPage',
'notify_woosms_pluginPage_api_section'
);
add_settings_section(
'notify_woosms_pluginPage_section',
__( 'SMS TEMPLATES', 'notify-woosms' ),
'notify_woosms_settings_section_callback',
'pluginPage'
);
add_settings_field(
'notify_woosms_check_order_placed',
__( 'New Order:', 'notify-woosms' ),
'notify_woosms_check_order_placed_render',
'pluginPage',
'notify_woosms_pluginPage_section'
);
add_settings_field(
'notify_woosms_template_order_placed',
__( 'SMS Template:', 'notify-woosms' ),
'notify_woosms_template_order_placed_render',
'pluginPage',
'notify_woosms_pluginPage_section'
);
add_settings_field(
'notify_woosms_check_order_processing',
__( 'Order Processing:', 'notify-woosms' ),
'notify_woosms_check_order_processing_render',
'pluginPage',
'notify_woosms_pluginPage_section'
);
add_settings_field(
'notify_woosms_template_order_processing',
__( 'SMS Template:', 'notify-woosms' ),
'notify_woosms_template_order_processing_render',
'pluginPage',
'notify_woosms_pluginPage_section'
);
add_settings_field(
'notify_woosms_check_order_completed',
__( 'Order Complete:', 'notify-woosms' ),
'notify_woosms_check_order_completed_render',
'pluginPage',
'notify_woosms_pluginPage_section'
);
add_settings_field(
'notify_woosms_template_order_completed',
__( 'SMS Template:', 'notify-woosms' ),
'notify_woosms_template_order_completed_render',
'pluginPage',
'notify_woosms_pluginPage_section'
);
}
function notify_woosms_enable_sms_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='checkbox' name='notify_woosms_settings[notify_woosms_enable_sms]' <?php checked( $options['notify_woosms_enable_sms'], 1 ); ?> value='1'> Enable
<?php
}
function notify_woosms_select_provider_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<select name='notify_woosms_settings[notify_woosms_select_provider]'>
<option value='tiniyo' <?php selected( $options['notify_woosms_select_provider'], 'tiniyo' ); ?>>Tiniyo</option>
<option value='dianahost_psms' <?php selected( $options['notify_woosms_select_provider'], 'dianahost_psms' ); ?>>DianaHost Psms</option>
<option value='dianahost_esms' <?php selected( $options['notify_woosms_select_provider'], 'dianahost_esms' ); ?>>DianaHost Esms</option>
<option value='dianahost_gsms' <?php selected( $options['notify_woosms_select_provider'], 'dianahost_gsms' ); ?>>DianaHost Gsms</option>
</select>
<?php
}
function notify_woosms_api_key_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='text' name='notify_woosms_settings[notify_woosms_api_key]' value='<?php echo $options['notify_woosms_api_key']; ?>'>
<p><i>If you use API KEY, You don't have to enter user name and password.</i></p>
<?php
}
function notify_woosms_api_user_name_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='text' name='notify_woosms_settings[notify_woosms_api_user_name]' value='<?php echo $options['notify_woosms_api_user_name']; ?>'>
<?php
}
function notify_woosms_api_password_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='password' name='notify_woosms_settings[notify_woosms_api_password]' value='<?php echo $options['notify_woosms_api_password']; ?>'>
<?php
}
function notify_woosms_api_src_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='text' name='notify_woosms_settings[notify_woosms_api_src]' value='<?php echo $options['notify_woosms_api_src']; ?>'>
<?php
}
function notify_woosms_api_mask_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='text' name='notify_woosms_settings[notify_woosms_api_mask]' value='<?php echo $options['notify_woosms_api_mask']; ?>'>
<?php
}
function notify_woosms_check_order_placed_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='checkbox' name='notify_woosms_settings[notify_woosms_check_order_placed]' <?php checked( $options['notify_woosms_check_order_placed'], 1 ); ?> value='1'> Enable SMS
<?php
}
function notify_woosms_template_order_placed_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<textarea cols='40' rows='5' name='notify_woosms_settings[notify_woosms_template_order_placed]'><?php echo $options['notify_woosms_template_order_placed']; ?></textarea>
<?php
}
function notify_woosms_check_order_processing_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='checkbox' name='notify_woosms_settings[notify_woosms_check_order_processing]' <?php checked( $options['notify_woosms_check_order_processing'], 1 ); ?> value='1'> Enable SMS
<?php
}
function notify_woosms_template_order_processing_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<textarea cols='40' rows='5' name='notify_woosms_settings[notify_woosms_template_order_processing]'><?php echo $options['notify_woosms_template_order_processing']; ?></textarea>
<?php
}
function notify_woosms_check_order_completed_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<input type='checkbox' name='notify_woosms_settings[notify_woosms_check_order_completed]' <?php checked( $options['notify_woosms_check_order_completed'], 1 ); ?> value='1'> Enable SMS
<?php
}
function notify_woosms_template_order_completed_render( ) {
$options = get_option( 'notify_woosms_settings' );
?>
<textarea cols='40' rows='5' name='notify_woosms_settings[notify_woosms_template_order_completed]'><?php echo $options['notify_woosms_template_order_completed']; ?></textarea>
<?php
}
function notify_woosms_settings_section_callback( ) {
echo __( 'Please enter your sms body text you want to send. <p>Use <span>{{ordernumber}}</span> <span>{{customername}}</span> for dynamic information.</p>', 'notify-woosms' );
}
function notify_woosms_settings_api_section_callback( ) {
echo __( 'Please enter your SMS API information of Notify.', 'notify-woosms' );
}
function notify_woosms_options_page( ) {
?>
<div class="notify_woosms_settings_page">
<div class="notify_woosms_settings_page_inner">
<div class="notify_woosms_settings_page_header">
<div class="notify_woosms_settings_page_header_info">
<h2><?php echo __("Notify WooSMS");?></h2>
</div>
</div>
<div class="notify_woosms_settings_page_body">
<form action='options.php' method='post'>
<?php
settings_fields( 'pluginPage' );
do_settings_sections( 'pluginPage' );
submit_button();
?>
</form>
</div>
<div class="notify_woosms_settings_page_footer">
<h4><strong><?php echo __("Please Note:</strong> This is a third-party plugin.<br>This plugin is not developed or managed by SMS providers.");?></h4>
<p>Developed by: <a href="https://solaymanhaider.com" target="_blank"><?php echo __("Solayman Haider");?></a></p>
</div>
</div>
</div>
<?php
}