LLMS_Course::set_instructors( array $instructors = array() )
Save instructor information
Parameters Parameters
- $instructors
-
(array) (Optional) Array of course instructor information.
Default value: array()
Source Source
File: includes/models/model.llms.course.php
// No user or no prereqs so no reason to proceed.
if ( ! $student_id || ! $this->has_prerequisite( $type ) ) {
return false;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.13.0 | Introduced. |