LLMS_Student::instructor()

Retrieve an instance of the LLMS_Instructor model for the current user


Return Return

(LLMS_Instructor|false)


Top ↑

Source Source

File: includes/models/model.llms.student.php

	 */
	public function instructor() {
		if ( $this->is_instructor() ) {
			return llms_get_instructor( $this->get_id() );
		}
		return false;


Top ↑

Changelog Changelog

Changelog
Version Description
3.14.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.