Difference between revisions of "VbzCart/v1/class/vcCartData Buyer"

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
Line 7: Line 7:
 
* '''call links''':
 
* '''call links''':
 
** '''field creation''':
 
** '''field creation''':
*** $this->'''CreateFields'''() [events API]:
+
*** $this->'''CreateFields'''() [events API] calls...
**** '''calls''' {{l/version|class|vcCartData_Contact}}::CreateFields() (parent)
+
**** {{l/version|class|vcCartData_Contact}}::CreateFields() (parent)
**** '''calls''' $this->'''OrderMessageField'''(); // add this field to the standard ones
+
**** $this->'''OrderMessageField'''(); // add this field to the standard ones
**** '''calls''' $this->'''CardNumberField'''();
+
**** $this->'''CardNumberField'''();
**** '''calls''' $this->'''CardExpiryField'''();
+
**** $this->'''CardExpiryField'''();
 
** '''rendering''':
 
** '''rendering''':
*** $this->'''RenderPayment'''($doEdit) [public]:
+
*** $this->'''RenderPayment'''($doEdit) [public] calls...
**** '''calls''' $this->'''RenderPayTypeSection'''($doEdit)
+
**** $this->'''RenderPayTypeSection'''($doEdit), which calls...
***** '''calls''' $this->'''RenderPayCardSection'''($doEdit)
+
***** $this->'''RenderPayCardSection'''($doEdit), which calls...
****** '''calls''' $this->'''RenderPayCardNumberSection'''($doEdit)
+
****** $this->'''RenderPayCardNumberSection'''($doEdit)
****** '''calls''' $this->'''RenderPayCardAddrSection'''($doEdit)
+
****** $this->'''RenderPayCardAddrSection'''($doEdit)
 
** '''capture''':
 
** '''capture''':
*** $this->'''CapturePayment'''() [public]:
+
*** {{l/version|class|vcCartDataManager}}::'''CaptureBillingPage'''() calls...
**** '''called by''' {{l/version|class|vcCartDataManager}}::'''CaptureBillingPage'''()
+
**** $this->'''CapturePayment'''() [public], which calls...
**** '''calls''' $this->'''ReceiveForm'''()
+
***** $this->'''ReceiveForm'''(), which is...
***** '''defined in''' {{l/version|class|vtCartData_NameAddress}}
+
****** ...'''defined in''' {{l/version|class|vtCartData_NameAddress}}, and which...
****** Doesn't actually seem to receive the form
+
******* ...doesn't actually seem to do anything to receive the form.

Revision as of 11:27, 17 April 2019

  • file: cart/cart.data.fg.buyer.php
  • extends vcCartData_Contact which...
  • call links:
    • field creation:
      • $this->CreateFields() [events API] calls...
        • vcCartData_Contact::CreateFields() (parent)
        • $this->OrderMessageField(); // add this field to the standard ones
        • $this->CardNumberField();
        • $this->CardExpiryField();
    • rendering:
      • $this->RenderPayment($doEdit) [public] calls...
        • $this->RenderPayTypeSection($doEdit), which calls...
          • $this->RenderPayCardSection($doEdit), which calls...
            • $this->RenderPayCardNumberSection($doEdit)
            • $this->RenderPayCardAddrSection($doEdit)
    • capture:
      • vcCartDataManager::CaptureBillingPage() calls...
        • $this->CapturePayment() [public], which calls...
          • $this->ReceiveForm(), which is...
            • ...defined in vtCartData_NameAddress, and which...
              • ...doesn't actually seem to do anything to receive the form.