functions.php
10.3 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
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
<?php
/**
* Deprecated functions from LD 3.2.3
* The functions will be removed in a later version.
*
* @package LearnDash\Deprecated
* @since 3.2.3
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! function_exists( 'add_essays_data_columns' ) ) {
/**
* Adds custom columns to the essay post type listing in admin.
*
* Fires on `manage_edit-sfwd-essays_columns` hook.
*
* @since 2.1.0
* @deprecated 3.2.3
*
* @param array $cols An array of admin columns for a post type.
*
* @return array $cols An array of admin columns for a post type.
*/
function add_essays_data_columns( $cols ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
return $cols;
}
}
if ( ! function_exists( 'learndash_essay_bulk_actions' ) ) {
/**
* Adds 'Approve' option next to certain selects on the Essay edit screen in the admin.
*
* Fires on `admin_footer` hook.
*
* @todo check if needed, jQuery selector seems incorrect
*
* @since 2.3.0
* @deprecated 3.2.3
*/
function learndash_essay_bulk_actions() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_essay_inline_actions' ) ) {
/**
* Adds inline actions to assignments on post listing hover in the admin.
*
* Fires on `post_row_actions` hook.
*
* @since 2.1.0
* @deprecated 3.2.3
*
* @param array $actions An array of post actions.
* @param WP_Post $post The `WP_Post` object.
*
* @return array $actions An array of post actions.
*/
function learndash_essay_inline_actions( $actions, $post ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
return $actions;
}
}
if ( ! function_exists( 'learndash_modify_admin_essay_listing_query' ) ) {
/**
* Adjust essay post type query in admin
*
* Essay query should only include essays with a 'graded' and 'not_graded' post status.
* Fires on `pre_get_posts` hook.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param WP_Query $essay_query The `WP_Query` instance (passed by reference).
*/
function learndash_modify_admin_essay_listing_query( $essay_query ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_essays_remove_subbmitdiv_metabox' ) ) {
/**
* Removes the default submitdiv meta box from the essay post type in the admin edit screen.
*
* Fires on `admin_menu` hook.
*
* @since 2.2.0
* @deprecated 3.2.3
*/
function learndash_essays_remove_subbmitdiv_metabox() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_register_essay_upload_metabox' ) ) {
/**
* Registers the essay upload metabox.
*
* Fires on `add_meta_boxes_sfwd-essays` hook.
*
* @since 2.2.0
* @deprecated 3.2.3
*/
function learndash_register_essay_upload_metabox() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_essay_upload_meta_box' ) ) {
/**
* Prints the essay upload metabox content.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param WP_Post $essay The `WP_Post` essay object.
*/
function learndash_essay_upload_meta_box( $essay ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_register_essay_grading_response_metabox' ) ) {
/**
* Registers the essay grading response metabox.
*
* Used when a grader wants to respond to a essay submitted by the user.
*
* @since 2.2.0
* @deprecated 3.2.3
*/
function learndash_register_essay_grading_response_metabox() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_essay_grading_response_meta_box' ) ) {
/**
* Prints the essay grading response metabox content.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param WP_Post $essay The `WP_Post` essay object.
*/
function learndash_essay_grading_response_meta_box( $essay ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_save_essay_grading_response' ) ) {
/**
* Saves the essay grading response to the post meta.
*
* Fires on `save_post_sfwd-essays` metabox.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param int $essay_id ID of the essay to be saved.
* @param WP_Post $essay The `WP_Post` essay object.
* @param boolean $update Whether this is an existing post being updated or not.
*/
function learndash_save_essay_grading_response( $essay_id, $essay, $update ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_register_essay_grading_metabox' ) ) {
/**
* Registers the essay grading metabox.
*
* Replaces the submitdiv meta box that comes with every post type.
* Fires on `add_meta_boxes_sfwd-essays` hook.
*
* @since 2.2.0
* @deprecated 3.2.3
*/
function learndash_register_essay_grading_metabox() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_essay_grading_meta_box' ) ) {
/**
* Prints the essay grading metabox content.
*
* Copied/modified version of submitdiv from core.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param WP_Post $essay The `WP_Post` essay object.
*/
function learndash_essay_grading_meta_box( $essay ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_save_essay_status_metabox_data' ) ) {
/**
* Updates the user's essay and quiz data on post save.
*
* Fires on `save_post_sfwd-essays` hook.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param int $essay_id ID of the essay to be saved.
* @param WP_Post $essay The `WP_Post` essay object.
* @param boolean $update Whether this is an existing post being updated or not.
*/
function learndash_save_essay_status_metabox_data( $essay_id, $essay, $update ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_restrict_essay_listings_for_group_admins' ) ) {
/**
* Restricts the assignment listings view to group leader only.
*
* Fires on `parse_query` hook.
*
* @since 2.2.0
* @deprecated 3.2.3
*
* @param object $query The `WP_Query` instance (passed by reference).
*/
function learndash_restrict_essay_listings_for_group_admins( $query ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_essay_bulk_actions_approve' ) ) {
/**
* Handles the approval of the essay in bulk.
*
* Fires on `load-edit.php` hook.
*
* @since 2.3.0
* @deprecated 3.2.3
*/
function learndash_essay_bulk_actions_approve() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_assignment_bulk_actions' ) ) {
/**
* Adds a 'Approve' option next to certain selects on assignment edit screen in admin.
*
* Fires on `admin_footer` hook.
*
* @global WP_Post $post Global post object.
*
* @todo check if needed, jQuery selector seems incorrect
*
* @since 2.1.0
* @deprecated 3.2.3
*/
function learndash_assignment_bulk_actions() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_assignment_bulk_actions_approve' ) ) {
/**
* Handles approval of assignments in bulk.
*
* Fires on `load-edit.php` hook.
*
* @since 2.1.0
* @deprecated 3.2.3
*/
function learndash_assignment_bulk_actions_approve() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_restrict_assignment_listings' ) ) {
/**
* Restricts assignment listings view to group leaders only.
*
* Fires on `parse_query` hook.
*
* @global string $pagenow
* @global string $typenow
*
* @since 2.1.0
* @deprecated 3.2.3
*
* @param WP_Query $query The WP_Query query object.
*/
function learndash_restrict_assignment_listings( $query ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_assignment_approval_link' ) ) {
/**
* Gets assignment approval URL.
*
* @since 2.1.0
* @deprecated 3.2.3
*
* @param int $assignment_id Assignment ID.
*
* @return string Returns assignment approval url.
*/
function learndash_assignment_approval_link( $assignment_id ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
return '';
}
}
if ( ! function_exists( 'learndash_assignment_metabox' ) ) {
/**
* Registers assignment metabox.
*
* Fires on `add_meta_boxes` hook.
*
* @since 2.1.0
* @deprecated 3.2.3
*/
function learndash_assignment_metabox() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_assignment_metabox_content' ) ) {
/**
* Adds approval Link to assignment metabox.
*
* @global WP_Post $post Global post object.
* @global SFWD_LMS $sfwd_lms Global SFWD_LMS object.
*
* @since 2.1.0
* @deprecated 3.2.3
*/
function learndash_assignment_metabox_content() {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}
if ( ! function_exists( 'learndash_assignment_save_metabox_content' ) ) {
/**
* Updates assignment points and approval status.
*
* Fires on `save_post` hook.
*
* @since 2.1.0
* @deprecated 3.2.3
*
* @param int $assignment_id Assignment ID.
*/
function learndash_assignment_save_metabox_content( $assignment_id ) {
if ( function_exists( '_deprecated_function' ) ) {
_deprecated_function( __FUNCTION__, '3.2.3' );
}
}
}