コード例 #1
0
ファイル: Environment.php プロジェクト: ascertain/NGshop
 /**
  * sets current checkout tenant which is used for cart and checkout manager
  *
  * @param $tenant string
  * @return mixed
  */
 public function setCurrentCheckoutTenant($tenant)
 {
     if ($this->currentCheckoutTenant != $tenant) {
         $this->currentCheckoutTenant = $tenant;
         OnlineShop_Framework_Factory::resetInstance();
     }
 }