forked from gocodebox/lifterlms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-llms-processor-certificate-sync.php
99 lines (90 loc) · 3.42 KB
/
class-llms-processor-certificate-sync.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
<?php
/**
* LLMS_Processor_Certificate_Sync class
*
* @package LifterLMS/Processors/Classes
*
* @since 6.0.0
* @version 6.0.0
*/
defined( 'ABSPATH' ) || exit;
/**
* Processor: Sync awarded certificates to their certificate template.
*
* @since 6.0.0
*/
class LLMS_Processor_Certificate_Sync extends LLMS_Abstract_Processor_User_Engagement_Sync {
/**
* The type of the user engagement.
*
* @since 6.0.0
*
* @var string
*/
protected $engagement_type = 'certificate';
/**
* Unique identifier for the processor.
*
* @var string
*/
protected $id = 'awarded_certificates_bulk_sync';
/**
* WP Cron Hook for scheduling the background process.
*
* @var string
*/
protected $schedule_hook = 'llms_awarded_certificates_bulk_sync';
/**
* Returns a translated text of the given type.
*
* @since 6.0.0
*
* @param int $text_type One of the LLMS_Abstract_Processor_User_Engagement_Sync::TEXT_ constants.
* @param array $variables Optional variables that are used in sprintf().
* @return string
*/
protected function get_text( $text_type, $variables = array() ) {
$engagement_template_id = $variables['engagement_template_id'] ?? 0;
switch ( $text_type ) {
case self::TEXT_SYNC_NOTICE_ALREADY_SCHEDULED:
return sprintf(
/* translators: %1$s: opening anchor tag that links to the certificate template, %2$s: certificate template name, #%3$d: certificate template ID, %4$s: closing anchor tag */
__( 'Awarded certificates sync already scheduled for the template %1$s%2$s (#%3$d)%4$s.', 'lifterlms' ),
'<a href="' . get_edit_post_link( $engagement_template_id ) . '" target="_blank">',
get_the_title( $engagement_template_id ),
$engagement_template_id,
'</a>'
);
case self::TEXT_SYNC_NOTICE_AWARDED_ENGAGEMENTS_COMPLETE:
return sprintf(
/* translators: %1$s: opening anchor tag that links to the certificate template, %2$s: certificate template name, %3$d: certificate template ID, %4$s: closing anchor tag */
__( 'Awarded certificates sync completed for the template %1$s%2$s (#%3$d)%4$s.', 'lifterlms' ),
'<a href="' . $this->get_edit_post_link( $engagement_template_id ) . '" target="_blank">',
get_the_title( $engagement_template_id ),
$engagement_template_id,
'</a>'
);
case self::TEXT_SYNC_NOTICE_NO_AWARDED_ENGAGEMENTS:
return sprintf(
/* translators: %1$s: opening anchor tag that links to the certificate template, %2$s: certificate template name, #%3$d: certificate template ID, %4$s: closing anchor tag */
__( 'There are no awarded certificates to sync with the template %1$s%2$s (#%3$d)%4$s.', 'lifterlms' ),
'<a href="' . get_edit_post_link( $engagement_template_id ) . '" target="_blank">',
get_the_title( $engagement_template_id ),
$engagement_template_id,
'</a>'
);
case self::TEXT_SYNC_NOTICE_SCHEDULED:
return sprintf(
/* translators: %1$s: opening anchor tag that links to the certificate template, %2$s: certificate template name, #%3$d: certificate template ID, %4$s: closing anchor tag */
__( 'Awarded certificates sync scheduled for the template %1$s%2$s (#%3$d)%4$s.', 'lifterlms' ),
'<a href="' . get_edit_post_link( $engagement_template_id ) . '" target="_blank">',
get_the_title( $engagement_template_id ),
$engagement_template_id,
'</a>'
);
default:
return parent::get_text( $text_type );
}
}
}
return new LLMS_Processor_Certificate_Sync();