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


PHP Info::isProductAccessable方法代碼示例

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


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

示例1: getProductId

 protected function getProductId($infoType)
 {
     if (isset($_GET['product_id'])) {
         $productId = $_GET['product_id'];
         if (!Info::isProductAccessable($productId)) {
             throw new CHttpException(400, Yii::t('Common', 'Required URL not found or permission denied.'));
         }
         Yii::app()->user->setState('product', $productId);
         TestUserService::updateUserProductCookie($productId);
         return $productId;
     } else {
         throw new CHttpException(400, Yii::t('Common', 'Required URL not found or permission denied.'));
     }
 }
開發者ID:mjrao,項目名稱:BugFree,代碼行數:14,代碼來源:InfoController.php

示例2: relatedCaseValidator

 public function relatedCaseValidator($attribute, $params)
 {
     if (isset($this->related_case)) {
         $this->related_case = $this->handleSpliter($this->related_case);
         $relatedBugArr = CommonService::splitStringToArray(',', $this->related_case);
         foreach ($relatedBugArr as $caseIdTmp) {
             $infoObj = CaseInfo::model()->findByPk($caseIdTmp);
             if ($infoObj == null || $infoObj->id != $caseIdTmp) {
                 $this->addError('related_case', 'Case ID[' . $caseIdTmp . ']' . Yii::t('Common', 'is not existed'));
             } elseif (!Info::isProductAccessable($infoObj->product_id)) {
                 $this->addError('related_case', 'Case ID[' . $caseIdTmp . ']' . Yii::t('Common', 'No access right'));
             }
         }
     }
 }
開發者ID:mjrao,項目名稱:BugFree,代碼行數:15,代碼來源:Info.php

示例3: getRelatedIdHtml

 /**
  * get info's relate id's html
  *
  * @author                                    youzhao.zxw<swustnjtu@gmail.com>
  * @param   string          $infoType         bug,case or result
  * @param   string          $idStr            related id string
  * @return  string                            relate id's html
  */
 public static function getRelatedIdHtml($infoType, $idStr)
 {
     $returnStr = '';
     $idArr = CommonService::splitStringToArray(',', $idStr);
     $modelName = ucfirst($infoType) . 'Info';
     $targetModel = new $modelName();
     foreach ($idArr as $id) {
         $infoObj = $targetModel->model()->findByPk($id);
         if ($infoObj != null) {
             if (!Info::isProductAccessable($infoObj->product_id)) {
                 $singleLink = '<a title="' . Yii::t('Common', 'No access right') . '" href="' . Yii::app()->createUrl('info/edit', array('type' => $infoType, 'id' => $id)) . '" target="_blank">' . $id . '</a>';
             } else {
                 $singleLink = '<a title="' . $infoObj->title . '" href="' . Yii::app()->createUrl('info/edit', array('type' => $infoType, 'id' => $id)) . '" target="_blank">' . $id . '</a>';
             }
             if ('' == $returnStr) {
                 $returnStr = $singleLink;
             } else {
                 $returnStr .= ',' . $singleLink;
             }
         }
     }
     if ('' != $returnStr) {
         $returnStr = '<div style="word-break:break-all;word-wrap:break-word;">' . $returnStr . '</div>';
     }
     return $returnStr;
 }
開發者ID:mjrao,項目名稱:BugFree,代碼行數:34,代碼來源:InfoService.php

示例4: duplicateIdValidator

 public function duplicateIdValidator($attribute, $params)
 {
     if (self::DUPLICATE_SOLUTION == $this->solution) {
         $duplicatedIdError = $this->getError('duplicate_id');
         if (empty($duplicatedIdError)) {
             if (empty($this->duplicate_id)) {
                 $this->addError('duplicate_id', Yii::t('BugInfo', self::ERROR_DUPLICATE_ID));
             } else {
                 $this->duplicate_id = $this->handleSpliter($this->duplicate_id);
                 $duplicatedIdArr = CommonService::splitStringToArray(',', $this->duplicate_id);
                 foreach ($duplicatedIdArr as $dupId) {
                     if ($dupId != ceil($dupId)) {
                         $this->addError('duplicate_id', 'Duplicate ID[' . $dupId . ']' . Yii::t('BugInfo', self::ERROR_DUPLICATE_ID));
                     } else {
                         $infoObj = BugInfo::model()->findByPk($dupId);
                         if ($infoObj == null || $infoObj->id != $dupId) {
                             $this->addError('duplicate_id', 'Duplicate ID[' . $dupId . ']' . Yii::t('BugInfo', self::ERROR_DUPLICATE_ID));
                         } elseif (!Info::isProductAccessable($infoObj->product_id)) {
                             $this->addError('duplicate_id', 'Duplicate ID[' . $dupId . ']' . Yii::t('Common', 'No access right'));
                         }
                     }
                 }
             }
         }
     } else {
         $this->duplicate_id = null;
     }
 }
開發者ID:mjrao,項目名稱:BugFree,代碼行數:28,代碼來源:BugInfo.php


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