EssaysReportsGenerator::formatData( $activity )
Format the activity results for each column
Description
Source
File: bp-integrations/learndash/buddypress/generators/EssaysReportsGenerator.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, 'quiz' => $activity->quiz_title, 'essay' => $activity->essay_title, 'completion_date' => get_date_from_gmt($activity->essay_modify_date, $this->args['date_format']), 'updated_date' => get_date_from_gmt($activity->essay_post_date, $this->args['date_format']), 'score' => $this->getEssayScore($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.