LLMS_Course_Data::__construct( int $course_id )

Constructor


Parameters Parameters

$course_id

(int) (Required) WP Post ID of the course


Top ↑

Source Source

File: includes/class.llms.course.data.php

	public function __construct( $course_id ) {

		$this->course_id = $course_id;
		$this->course    = llms_get_post( $this->course_id );
		parent::__construct( $course_id );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.15.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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