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


PHP JModelLegacy::update方法代碼示例

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


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

示例1: update

 public function update($null_values = false)
 {
     $return = parent::update($null_values);
     Product::updateDefaultAttribute($this->id_product);
     return $return;
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:6,代碼來源:combination.php

示例2: update

 public function update($null_values = false)
 {
     // Empty related caches
     if (isset(self::$_countriesIds[$this->address_id])) {
         unset(self::$_countriesIds[$this->address_id]);
     }
     if (isset(self::$_zonesIds[$this->address_id])) {
         unset(self::$_zonesIds[$this->address_id]);
     }
     if (JeproshopTools::isUnsignedInt($this->customer_id)) {
         JeproshopCustomerModelCustomer::resetAddressCache($this->customer_id);
     }
     return parent::update($null_values);
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:14,代碼來源:address.php

示例3: update

 public function update($nullValues = false)
 {
     if ($this->group_type == 'color') {
         $this->is_color_group = 1;
     } else {
         $this->is_color_group = 0;
     }
     $return = parent::update($nullValues);
     Hook::exec('actionAttributeGroupSave', array('id_attribute_group' => $this->id));
     return $return;
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:11,代碼來源:attribute.php

示例4: update

 public function update($null_values = false)
 {
     Cache::clean('getContextualValue_' . $this->id . '_*');
     return parent::update($null_values);
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:5,代碼來源:cart.php

示例5: update

 public function update($null_values = false)
 {
     $this->file_size = filesize(_PS_DOWNLOAD_DIR_ . $this->file);
     return parent::update($null_values);
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:5,代碼來源:attachment.php

示例6: update

 public function update($null_values = false)
 {
     return parent::update($null_values) && $this->_updateCache();
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:4,代碼來源:group.php

示例7: update

 public function update($autodate = true, $nullValues = false)
 {
     if ((double) $this->conversion_rate <= 0) {
         return false;
     }
     return parent::update($autodate, $nullValues);
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:7,代碼來源:currency.php

示例8: update

 public function update($nullValues = false)
 {
     $this->birthday = empty($this->years) ? $this->birthday : (int) $this->years . '-' . (int) $this->months . '-' . (int) $this->days;
     if ($this->newsletter && !Validate::isDate($this->newsletter_date_add)) {
         $this->newsletter_date_add = date('Y-m-d H:i:s');
     }
     if (isset(Context::getContext()->controller) && Context::getContext()->controller->controller_type == 'admin') {
         $this->updateGroup($this->groupBox);
     }
     if ($this->deleted) {
         $addresses = $this->getAddresses((int) Configuration::get('PS_LANG_DEFAULT'));
         foreach ($addresses as $address) {
             $obj = new Address((int) $address['id_address']);
             $obj->delete();
         }
     }
     return parent::update(true);
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:18,代碼來源:customer.php

示例9: update

 public function update($null_values = false)
 {
     if (empty($this->stats_date_from) || $this->stats_date_from == '0000-00-00') {
         $this->stats_date_from = date('Y-m-d');
     }
     if (empty($this->stats_date_to) || $this->stats_date_to == '0000-00-00') {
         $this->stats_date_to = date('Y-m-d');
     }
     $this->saveOptin();
     $this->updateTextDirection();
     return parent::update($null_values);
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:12,代碼來源:employee.php

示例10: update

 public function update($null_values = false)
 {
     if (parent::update($null_values)) {
         // Refresh cache of feature detachable because the row can be deactive
         Configuration::updateGlobalValue('PS_VIRTUAL_PROD_FEATURE_ACTIVE', ProductDownload::isCurrentlyUsed($this->def['table'], true));
         return true;
     }
     return false;
 }
開發者ID:jeprodev,項目名稱:jeproshop,代碼行數:9,代碼來源:product.php


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