Warning: This class has been deprecated.

LLMS_Course_Basic

Basic course class Extends LLMS_Course


Description Description

Basic course is the "standard" single purchase course.


Source Source

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

class LLMS_Course_Basic extends LLMS_Course {

	/**
	 * @var string
	 * @since 1.0.0
	 */
	public $course_type;

	/**
	 * post id
	 * @var int
	 */
	public $id;

	/**
	 * post object
	 * @var object
	 */
	public $post;

	/**
	 * Constructor
	 * Inherits from LLMS_Course
	 *
	 * @param object $course [The course object]
	 */
	public function __construct( $course ) {

		$this->course_type = 'basic';
		parent::__construct( $course );

	}

}

Top ↑

Changelog Changelog

Changelog
Version Description
3.30.3 Introduced.


Top ↑

Methods Methods


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: