LLMS_Notification_View_Quiz_Graded::set_merge_data( string $code )

Replace merge codes with actual values


Parameters Parameters

$code

(string) (Required) The merge code to get merged data for.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/notifications/views/class.llms.notification.view.quiz.graded.php

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
protected function set_merge_data( $code ) {
 
    $attempt = new LLMS_Quiz_Attempt( $this->notification->get( 'post_id' ) );
    if ( ! $attempt->exists() ) {
        return '';
    }
    $lesson = llms_get_post( $attempt->get( 'lesson_id' ) );
    if ( ! $lesson ) {
        return '';
    }
 
    switch ( $code ) {
 
        case '{{COURSE_TITLE}}':
            $course = $lesson->get_course();
            if ( $course ) {
                $code = $course->get( 'title' );
            } else {
                $code = '';
            }
            break;
 
        case '{{GRADE}}':
            $code = llms()->grades()->round( $attempt->get( 'grade' ) ) . '%';
            break;
 
        case '{{LESSON_TITLE}}':
            $code = $lesson->get( 'title' );
            break;
 
        case '{{QUIZ_TITLE}}':
            $code = get_the_title( $attempt->get( 'quiz_id' ) );
            break;
 
        case '{{REVIEW_URL}}':
            $code = $attempt->get_permalink();
            break;
 
        case '{{STATUS}}':
            $code = $attempt->l10n( 'status' );
            break;
 
        case '{{STUDENT_NAME}}':
            $code = $this->user->get_name();
            break;
 
    }// End switch().
 
    return $code;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.24.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.