VbzCart/docs/v1/class/vcCartDataManager/GetBuyerObject

From Woozle Writes Code
< VbzCart‎ | docs‎ | v1/class‎ | vcCartDataManager
Revision as of 11:34, 18 April 2019 by imported>Woozle (Created page with "{{page/code/class/method}} ==about== '''Purpose''': returns {{l/version|class|vcCartData_Buyer}}, creating it if needed ==called by== * $this->'''{{l/same|RenderShippingPage}}...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Page/code/class/method

about

Purpose: returns Template:L/version, creating it if needed

called by

code

    private $oBuyer = NULL;
    // PUBLIC so the shopping cart object can access
    public function GetBuyerObject() {
	if (is_null($this->oBuyer)) {
	    $this->oBuyer = new vcCartData_Buyer($this->GetFormObject());
	}
	return $this->oBuyer;
    }