LLMS_Coupon::get_products()

Get an array of all products the coupon can be used with Combines $this->coupon_courses & $this->coupon_membership


Return Return

(array)


Top ↑

Source Source

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

	public function get_products() {
		return array_merge( $this->get_array( 'coupon_courses' ), $this->get_array( 'coupon_membership' ) );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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