spivurno
11/6/2014 - 4:12 PM

Gravity Wiz // Gravity Forms // Get the percentage reached for the entry limit

Gravity Wiz // Gravity Forms // Get the percentage reached for the entry limit

// # Function
function gwiz_get_entry_limit_percentage( $form_id ) {

	$form = GFAPI::get_form( $form_id );
	$entry_count = RGFormsModel::get_lead_count( $form['id'], '', null, null, null, null, 'active' );
	$entry_limit = rgar( $form, 'limitEntriesCount' );

	$percentage = ( $entry_count * 100 ) / $entry_limit;

	return $percentage;
}

// # Usage
echo gwiz_get_entry_limit_percentage( 449 );