AssignmentsReportsGenerator::formatData( $activity )
Format the activity results for each column
Description
Source
File: bp-integrations/learndash/buddypress/generators/AssignmentsReportsGenerator.php
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, 'assignment' => $activity->assignment_title, 'completion_date' => get_date_from_gmt($activity->assignment_modify_date, $this->args['date_format']), 'updated_date' => get_date_from_gmt($activity->assignment_post_date, $this->args['date_format']), 'score' => $this->getAssignmentScore($activity) ]; }
Changelog
Version | Description |
---|---|
BuddyBoss 1.0.0 | Introduced. |
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.