VbzCart/v1/class/vcCartDataManager/CaptureBillingPage
< VbzCart | v1/class | vcCartDataManager
Jump to navigation
Jump to search
Call Chains
- vcPageContent_ckout::CapturePage() [protected] calls...
- vcPageContent_ckout::CaptureBilling() [protected], which calls...
- vcCartDataManager::GetBuyerObject()
- vcCartDataManager::CaptureBillingPage(), which calls...
- vcCartDataManager::UpdateBlob($oCD_Buyer)
- vcPageContent_ckout::CaptureBilling() [protected], which calls...
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);
}