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

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;
}