VbzCart/v1/class/vcCartDataManager/GetRecipObject

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Revision as of 11:50, 18 April 2019 by Woozle (talk | contribs) (Created page with "{{page/code/class/method}} ==about== '''Purpose''': returns {{l/version|class|vcCartData_Recip}}, creating it if needed ==called by== * $this->'''{{l/same|RenderShippingPage}}...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

{{#set:in project=VbzCart}}{{#set:thing type=VbzCart/class method}}{{#set:class name=vcCartDataManager}}{{#set:function name=GetRecipObject}}{{#set:version=v1}}

about

Purpose: returns vcCartData_Recip, creating it if needed

called by

code

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