Warning: This class has been deprecated.

LLMS_Lesson_Basic

Basic lesson class


Description Description

Basic lesson is the standard, single lesson.


Source Source

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

class LLMS_Lesson_Basic extends LLMS_Lesson {

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

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

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

	/**
	 * [__construct description]
	 * @param int $lesson [ID of lesson post]
	 */
	public function __construct( $lesson ) {

		$this->lesson_type = 'basic';
		parent::__construct( $lesson );

	}

}

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: