Google Classroom
Actions
add_action( 'stm_lms_google_classroom_course_imported', 'stm_lms_google_classroom_course_imported_function', 10, 2 );
function stm_lms_google_classroom_course_imported_function( $course, $imported_course_id ) {
if ( ! empty( $course['auditory'] ) ) {
$auditory_id = $this->find_autidory_by_title( $course['auditory'] );
update_post_meta( $imported_course_id, 'stm_lms_auditory_id', $auditory_id );
}
}Last updated
Was this helpful?

