LLMS_Processor_Course_Data::is_already_processing_course( int $course_id )
Determines if the supplied course is already being processed.
Description Description
If it’s already being processed we’ll throttle the processing so we’ll wait until the course completes its current data processing and start again later.
Parameters Parameters
- $course_id
-
(int) (Required) WP_Post ID of the course.
Return Return
(boolean)
Source Source
File: includes/processors/class.llms.processor.course.data.php
protected function is_already_processing_course( $course_id ) { return llms_parse_bool( get_post_meta( $course_id, '_llms_temp_calc_data_lock', true ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.12.0 | Introduced. |