VbzCart/docs/v1/class/vcCartDataManager/CaptureBillingPage: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
imported>Woozle
No edit summary
 
(No difference)

Latest revision as of 01:57, 25 February 2024

Template:Page/code/class/method

Call Chains

Code

public function CaptureBillingPage() {
	//echo 'GOT TO CaptureBillingPage()<br>';
	//$oCDMgr = $this->FieldsManager();
	$oCDMgr = $this;
	$oCDMgr->FetchBlob();
	
	$oCD_Buyer = $oCDMgr->GetBuyerObject();
	$oCD_Buyer->CapturePayment();	// card #/exp, and I *think* name/address
	$this->AddMissing($oCD_Buyer->GetMissingArray());
	
	// calculate resulting blob
	$oCDMgr->UpdateBlob($oCD_Buyer);
}