} else {
$view = 'renewMembership';
- $member_invoice_id = $BillingSupport->getMembersInvoiceTypeByRefDest( $this->memberID );
+ $member_invoice_id = $BillingSupport->getMembersInvoiceTypeByRefDest( $this->memberId );
if ( $member_invoice_id ) {
$member_invoice = $BillingSupport->getInvoiceTypeById( $member_invoice_id );
} else {
$error = true;
}
- $employees = $BillingSupport->getListOfAccountEmployees( $this->memberID );
+ $employees = $BillingSupport->getListOfAccountEmployees( $this->memberId );
$invoice_data = array(
'account_id' => $accountID,
$payable_types = $BillingSupport->getAllPayableInvoiceTypes();
- $member_invoice_id = $BillingSupport->getMembersInvoiceTypeByRefDest( $this->memberID );
+ $member_invoice_id = $BillingSupport->getMembersInvoiceTypeByRefDest( $this->memberId );
if ( $member_invoice_id ) {
$member_invoice = $BillingSupport->getInvoiceTypeById( $member_invoice_id );
}
// Get a list of this accounts employees. If they have any.
- $employees = $BillingSupport->getListOfAccountEmployees( $this->memberID );
+ $employees = $BillingSupport->getListOfAccountEmployees( $this->memberId );
// Load DataClass for Management.
require_once GLM_MEMBERS_BILLING_PLUGIN_CLASS_PATH . '/data/dataManagement.php';