当前位置: 首页>>代码示例>>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;未经允许,请勿转载。