Difference between revisions of "VbzCart/v1/class/vcCartDataManager"

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
(Replaced content with "{{page/code/class}} * '''file''': {{l/project|file|cart/cart.data.mgr.php}} * Nothing inherits this class. * '''purpose''': essentially a helper class for {{l/version|clas...")
Tag: Replaced
Line 1: Line 1:
 
{{page/code/class}}
 
{{page/code/class}}
 +
==About==
 +
* '''purpose''': essentially a helper class for {{l/version|class|vcrCart}}.
 +
* '''jobs''':
 +
** Gets and sets the serialized blob field from the Cart record (GetBlobString(), SetBlobString())
 +
** Creates the BuyerObject ({{l/version|class|vcCartData_Buyer}}) and SellerObject ({{l/version|class|vcCartData_Recip}})
 
* '''file''': {{l/project|file|cart/cart.data.mgr.php}}
 
* '''file''': {{l/project|file|cart/cart.data.mgr.php}}
 +
==Links==
 +
* This class inherits nothing.
 
* Nothing inherits this class.
 
* Nothing inherits this class.
* '''purpose''': essentially a helper class for {{l/version|class|vcrCart}}.
 
 
* '''created by''': {{l/version|class|vcrCart}}::FieldsManager()
 
* '''created by''': {{l/version|class|vcrCart}}::FieldsManager()
 
* '''points to''':
 
* '''points to''':
Line 8: Line 14:
 
** {{l/version|class|vcCartForm}}
 
** {{l/version|class|vcCartForm}}
 
* '''call links''':
 
* '''call links''':
** this::RenderBillingPage()
+
** $this->'''RenderBillingPage'''()
 
*** '''called by''' {{l/version|class|vcPageContent_ckout}}:
 
*** '''called by''' {{l/version|class|vcPageContent_ckout}}:
**** ::RenderBillingPage()
+
**** ::'''RenderBillingPage'''()
**** ::RenderContent()
+
**** ::'''RenderContent'''()
 
*** '''calls''' {{l/version|class|vcCartData_Buyer}}::RenderPayment()
 
*** '''calls''' {{l/version|class|vcCartData_Buyer}}::RenderPayment()
* '''jobs''':
+
** $this->'''CaptureBillingPage'''()
** Gets and sets the serialized blob field from the Cart record (GetBlobString(), SetBlobString())
+
*** '''called by''' {{l/version|class|vcPageContent_ckout}}::'''CaptureBilling'''()
** Creates the BuyerObject ({{l/version|class|vcCartData_Buyer}}) and SellerObject ({{l/version|class|vcCartData_Recip}})
+
**** ...which is not called by anything!
 +
*** '''calls''' {{l/version|class|vcCartData_Buyer}}::'''CapturePayment'''()

Revision as of 12:52, 16 April 2019

About

Links