当前位置: 首页>>代码示例>>PHP>>正文


PHP Eloquent::update方法代码示例

本文整理汇总了PHP中Eloquent::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Eloquent::update方法的具体用法?PHP Eloquent::update怎么用?PHP Eloquent::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Eloquent的用法示例。


在下文中一共展示了Eloquent::update方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: update_

 public function update_(array $attributes = [])
 {
     $this->throwValidationException = true;
     $callResult = parent::update($attributes);
     $this->throwValidationException = false;
     return $callResult;
 }
开发者ID:daegon,项目名称:laravel-model-validation,代码行数:7,代码来源:Model.php

示例2: update

 /**
  * When updating a post, run the attributes through a validator first.
  * @param array $attributes
  * @return void
  */
 public function update(array $attributes = array(), array $options = array())
 {
     App::make('Components\\Posts\\Validation\\PostValidator')->validateForUpdate($attributes);
     $extras = array();
     $extras['contact_page'] = isset($attributes['contact']);
     $extras['contact_coords'] = isset($attributes['contact_coords']) ? $attributes['contact_coords'] : '';
     $attributes['extras'] = json_encode($extras);
     $attributes['featured'] = isset($attributes['featured']) ? true : false;
     $attributes['updated_by'] = current_user()->id;
     return parent::update($attributes);
 }
开发者ID:doptor,项目名称:doptor,代码行数:16,代码来源:Post.php

示例3: update

 public function update(array $attributes = array())
 {
     $success = false;
     $parent_id = $this->getAttribute('id');
     $uid = (int) $this->getAttribute('uid');
     // delete old items
     EloquentTranslatedModel::items_delete(strtolower(get_called_class()), $parent_id, $uid);
     $translated = filter_by_key_prefix($attributes, 'translated_', true);
     $translated['uid'] = $uid;
     $translated['module'] = strtolower(get_called_class());
     $translated['parent_id'] = $parent_id;
     // we create child translated
     $success = EloquentTranslatedModel::create($translated);
     return $success ? parent::update($attributes) : false;
 }
开发者ID:huglester,项目名称:pyrocms-helpers,代码行数:15,代码来源:eloquenttranslated.php

示例4: update

 /**
  * When updating a post, run the attributes through a validator first.
  * @param array $attributes
  * @return void
  */
 public function update(array $attributes = array(), array $options = array())
 {
     App::make('Components\\Posts\\Validation\\CategoryValidator')->validateForUpdate($attributes);
     $attributes['updated_by'] = current_user()->id;
     return parent::update($attributes);
 }
开发者ID:doptor,项目名称:doptor,代码行数:11,代码来源:Category.php

示例5: update

 /**
  * When updating a theme, run the attributes through a validator first.
  * @param array $attributes
  * @return void
  */
 public function update(array $attributes = array(), array $options = array())
 {
     $attributes['updated_by'] = current_user()->id;
     return parent::update($attributes);
 }
开发者ID:doptor,项目名称:doptor,代码行数:10,代码来源:ThemeSetting.php

示例6: update

 /**
  * When updating a theme, run the attributes through a validator first.
  * @param array $attributes
  * @return void
  */
 public function update(array $attributes = array())
 {
     // App::make('Components\\ThemeManager\\Validation\\ThemeValidator')->validateForUpdate($attributes);
     $attributes['updated_by'] = current_user()->id;
     return parent::update($attributes);
 }
开发者ID:jrafaelca,项目名称:Doptor,代码行数:11,代码来源:Theme.php

示例7: update

 public function update(array $options = array())
 {
     $this->config = serialize($this->config);
     return parent::update($options);
 }
开发者ID:agelxnash,项目名称:l4-confirm-action,代码行数:5,代码来源:ConfirmUser.php


注:本文中的Eloquent::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。