當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Coupon::isSingle方法代碼示例

本文整理匯總了PHP中Coupon::isSingle方法的典型用法代碼示例。如果您正苦於以下問題:PHP Coupon::isSingle方法的具體用法?PHP Coupon::isSingle怎麽用?PHP Coupon::isSingle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Coupon的用法示例。


在下文中一共展示了Coupon::isSingle方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: procShopToolInsertCoupon

 /**
  * Inserts single codes, generates bulks
  */
 public function procShopToolInsertCoupon()
 {
     $repository = new CouponRepository();
     $args = Context::getRequestVars();
     $args->active = (int) $args->active;
     $args->module_srl = $this->module_info->module_srl;
     $logged_info = Context::get('logged_info');
     if ($logged_info->member_srl) $args->member_srl = $logged_info->member_srl;
     $args->ip = $_SERVER['REMOTE_ADDR'];
     $coupon = new Coupon($args);
     try {
         /**
          * Update [both]
          */
         if ($coupon->isPersisted() && $exists = $repository->get($coupon->srl)) { //
             /** @var $exists Coupon */
             $coupon->type = $exists->type;
             $out = $coupon->save();
             $repository->check($out);
             if ($coupon->isGroup()) {
                 $this->setMessage("Updated group <b>{$coupon->name}</b>");
             }
             elseif ($coupon->isSingle()) {
                 $this->setMessage("Updated coupon <b>{$coupon->code}</b>");
             }
         }
         /**
          * Group Insert
          */
         elseif (is_numeric($n = Context::get('codes_number')) && $n > 1) {
             $coupon->type = Coupon::TYPE_PARENT;
             $out = $coupon->save();
             $repository->check($out);
             $length = Context::get('code_length');
             $type = Context::get('code_type');
             $pattern = Context::get('code_pattern');
             if (!strstr($pattern, 'CODE')) throw new ShopException('Pattern must contain "CODE"');
             $pattern = str_replace('CODE', 'X', $pattern);
             $separateEvery = Context::get('separate_at');
             $coupons = $coupon->generateBulk($n, $length, $type, $pattern, $separateEvery);
             $this->setMessage('Generated ' . count($coupons) . ' (grouped) coupons');
         }
         /**
          * Single insert
          */
         else {
             $coupon->type = Coupon::TYPE_SINGLE;
             $out = $coupon->save();
             $repository->check($out);
             $this->setMessage("Generated single coupon with code <b>{$coupon->code}</b>");
         }
     }
     catch (Exception $e) {
         $msg = $e->getMessage();
         if (strstr($msg, 'unique_module_code')) {
             $msg = "Code '<b>{$coupon->code}</b>' is already in use";
         }
         return new Object(-1, $msg);
     }
     $this->setRedirectUrl(getNotEncodedUrl('', 'act', 'dispShopToolDiscountCodes', 'highlight', $coupon->srl));
 }
開發者ID:haegyung,項目名稱:xe-module-shop,代碼行數:64,代碼來源:shop.controller.php


注:本文中的Coupon::isSingle方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。