LLMS_Table_Course_Students::get_export_lock_key()
Get a lock key unique to the table & user for locking the table during export generation
Contents
Return Return
(string)
Source Source
File: includes/admin/reporting/tables/llms.table.course.students.php
public function get_export_lock_key() {
$args = $this->get_args();
return sprintf( '%1$s:%2$d:%3$d', $this->id, get_current_user_id(), $args['course_id'] );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.15.0 | Introduced. |