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


PHP AttributeValue::column方法代碼示例

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


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

示例1: getTypeAttributesForSearchFromQuery

 /**
  * @param CHttpRequest $request
  * @return array
  */
 public function getTypeAttributesForSearchFromQuery(CHttpRequest $request)
 {
     $attributes = Yii::app()->getCache()->get('Store::filter::attributes');
     if (false === $attributes) {
         $attributes = [];
         $models = Attribute::model()->findAll(['select' => ['name', 'id', 'type']]);
         foreach ($models as $model) {
             $attributes[$model->name] = $model;
         }
         Yii::app()->getCache()->set('Store::filter::attributes', $attributes);
     }
     $result = [];
     $attributeValue = new AttributeValue();
     foreach ($attributes as $name => $attribute) {
         $searchParams = $request->getQuery($attribute->name);
         //пропускаем пустые значения
         if (null === $searchParams) {
             continue;
         }
         if (is_array($searchParams)) {
             if (isset($searchParams['from']) && null == $searchParams['from']) {
                 unset($searchParams['from']);
             }
             if (isset($searchParams['to']) && null == $searchParams['to']) {
                 unset($searchParams['to']);
             }
             if (empty($searchParams)) {
                 continue;
             }
         }
         $result[$attribute->name] = ['value' => $searchParams, 'attribute_id' => (int) $attribute->id, 'column' => $attributeValue->column($attribute->type)];
     }
     return $result;
 }
開發者ID:alextravin,項目名稱:yupe,代碼行數:38,代碼來源:AttributeFilter.php

示例2: changeType

 /**
  * @param $currentType
  * @param $newType
  * @return bool
  */
 public function changeType($currentType, $newType)
 {
     if ($currentType == $newType) {
         return true;
     }
     $value = new AttributeValue();
     $currentCol = $value->column($currentType);
     $newCol = $value->column($newType);
     if ($currentCol == $newCol) {
         return true;
     }
     $transaction = Yii::app()->getDb()->beginTransaction();
     try {
         Yii::app()->getDb()->createCommand(sprintf('UPDATE {{store_product_attribute_value}} SET %s = %s WHERE attribute_id = :id', $newCol, $currentCol))->bindValue(':id', $this->id)->execute();
         Yii::app()->getDb()->createCommand(sprintf('UPDATE {{store_product_attribute_value}} SET %s = null WHERE attribute_id = :id', $currentCol))->bindValue(':id', $this->id)->execute();
         $transaction->commit();
         return true;
     } catch (Exception $e) {
         $transaction->rollback();
         return false;
     }
 }
開發者ID:syrexby,項目名稱:domovoishop.by,代碼行數:27,代碼來源:Attribute.php


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