VbzCart/v1/class/vcCartDataManager/RenderBillingPage

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Call Chains

Code

public function RenderBillingPage() {
	//echo 'GOT TO RenderBillingPage()<br>';
	//$oCDMgr = $this->FieldsManager();
	$oCDMgr = $this;
	$oCDMgr->FetchBlob();	// fetch blob data from db
	
	$oCD_Buyer = $oCDMgr->GetBuyerObject();
	
	$oHdr = new fcSectionHeader('Payment information:');
	
	$out =
	  $oHdr->Render()
	  .$oCD_Buyer->RenderPayment(TRUE)	// edit payment information
	  ;
	return $out;
}