VbzCart/docs/v1/class/vcCartData Buyer: Difference between revisions

From Woozle Writes Code
< VbzCart‎ | docs‎ | v1/class
Jump to navigation Jump to search
imported>Woozle
mNo edit summary
imported>Woozle
No edit summary
Line 7: Line 7:
* '''call links''':
* '''call links''':
** '''field creation''':
** '''field creation''':
*** $this->'''CreateFields'''() [events API] calls...
*** {{l/version|class|vcCartDataFieldGroup}}::'''__construct'''({{l/version|class|vcCartForm}} $oForm) calls...
**** {{l/version|class|vcCartData_Contact}}::CreateFields() (parent)
**** $this->'''CreateFields'''() [protected], which calls...
**** $this->'''OrderMessageField'''(); // add this field to the standard ones
***** {{l/version|class|vcCartData_Contact}}::CreateFields() (parent)
**** $this->'''CardNumberField'''();
***** $this->'''OrderMessageField'''(); // add this field to the standard ones
**** $this->'''CardExpiryField'''();
***** $this->'''CardNumberField'''();
***** $this->'''CardExpiryField'''();
** '''rendering''':
** '''rendering''':
*** $this->'''RenderPayment'''($doEdit) [public] calls...
*** {{l/version|class|vcCartDataManager}}::'''RenderBillingPage'''() calls
**** $this->'''RenderPayTypeSection'''($doEdit), which calls...
**** $this->'''{{l/sub|RenderPayment}}'''($doEdit) [public]
***** $this->'''RenderPayCardSection'''($doEdit), which calls...
****** $this->'''RenderPayCardNumberSection'''($doEdit)
****** $this->'''RenderPayCardAddrSection'''($doEdit)
** '''capture''':
** '''capture''':
*** {{l/version|class|vcCartDataManager}}::'''CaptureBillingPage'''() calls...
*** {{l/version|class|vcCartDataManager}}::'''CaptureBillingPage'''() calls...
**** $this->'''CapturePayment'''() [public], which calls...
**** $this->'''{{l/sub|CapturePayment}}'''() [public]
***** $this->'''ReceiveForm'''(), which is...
****** ...'''defined in''' {{l/version|class|vtCartData_NameAddress}}, where it...
******* ...doesn't actually seem to do anything to receive the form.

Revision as of 10:59, 18 April 2019

Template:Page/code/class