當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。