CoursesReportsGenerator

Extends report generator for courses reports

Description

Source

File: bp-integrations/learndash/buddypress/generators/CoursesReportsGenerator.php

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
class CoursesReportsGenerator extends ReportsGenerator
{
    /**
     * Constructor
     *
     * @since BuddyBoss 1.0.0
     */
    public function __construct()
    {
        $this->completed_table_title = __('Completed Courses', 'buddyboss');
        $this->incompleted_table_title = __('Incomplete Courses', 'buddyboss');
 
        parent::__construct();
    }
 
    /**
     * Returns the columns and their settings
     *
     * @since BuddyBoss 1.0.0
     */
    protected function columns()
    {
        return [
            'user_id'         => $this->column('user_id'),
            'user'            => $this->column('user'),
            'course_id'       => $this->column('course_id'),
            'course'          => $this->column('course'),
            'start_date'      => $this->column('start_date'),
            'completion_date' => $this->column('completion_date'),
            'updated_date'    => $this->column('updated_date'),
            'time_spent'      => $this->column('time_spent'),
            'points'          => $this->column('points'),
        ];
    }
 
    /**
     * Format the activity results for each column
     *
     * @since BuddyBoss 1.0.0
     */
    protected function formatData($activity)
    {
        return [
            'user_id'         => $activity->user_id,
            'user'            => $activity->user_display_name,
            'course_id'       => $activity->activity_course_id,
            'course'          => $activity->activity_course_title,
            'start_date'      => $activity->activity_started_formatted,
            'completion_date' => $this->completionDate($activity),
            'updated_date'    => $this->updatedDate($activity),
            'time_spent'      => $this->timeSpent($activity),
            'points'          => $this->coursePointsEarned($activity)
        ];
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Methods

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.