LLMS_Analytics_Memberships::expired_members( [array] $search )

Total coupon $ used


Description Description


Parameters Parameters

$search

([array]) (Required) [array of order objects]


Top ↑

Return Return

([html])


Top ↑

Source Source

File: includes/admin/analytics/class.llms.analytics.memberships.php

	public function expired_members( $search ) {

		$total = isset( $search->members ) ? LLMS_Analytics::get_total_current_expired_users( $search->members ) : '0';
		$html = '<p class="llms-label">' . __( 'Expired Members', 'lifterlms' ) . '</p>';
		$html .= '<h1>' . $total . '</h1>';

		return $html;
	}


Top ↑

User Contributed Notes User Contributed Notes

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