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


PHP Role::fill方法代碼示例

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


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

示例1: save

 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function save($data)
 {
     $this->validate($data);
     $model = new Role();
     $model->fill($data);
     if ($model->save()) {
         return 'Role was saved.';
     }
     return 'Role was not saved.';
 }
開發者ID:dasigr,項目名稱:laravelcommerce,代碼行數:16,代碼來源:RoleRepository.php

示例2: update

 /**
  * Update the specified resource in storage.
  *
  * @param $id
  * @return Response
  */
 public function update($id)
 {
     //Buscamos el rol original relacionado con el id
     $this->role = Role::find($id);
     //Llenamos los parametros que vienen de la forma
     $this->role->fill(Input::all());
     //Si no puede guardarse entonces mostramos errores en pantalla
     if (!$this->role->save()) {
         return Redirect::back()->withErrors($this->role->errors());
     }
     //Si pasa la validación entonces guardamos los permisos relacionados con el rol
     $this->role->savePermissions(Input::get('permissions'));
     //Dado que fue exitosa la actualización mostramos la salida al usaurio.
     return Redirect::to('admin/role/' . $this->role->id . '/edit')->with('success', '¡Se ha actualizado correctamente el rol: ' . $this->role->name . " !");
 }
開發者ID:ferns24,項目名稱:catastro,代碼行數:21,代碼來源:AdminRolesController.php

示例3: store

 /**
  * Store a newly created role in storage.
  *
  * @return Response
  */
 public function store()
 {
     $data = Input::all();
     if (!Role::canCreate()) {
         return $this->_access_denied();
     }
     Role::setRules('store');
     $role = new Role();
     $role->fill($data);
     if (!$role->save()) {
         return $this->_validation_error($role);
     }
     $data['perms'] = isset($data['perms']) ? $data['perms'] : [];
     $role->perms()->sync($data['perms']);
     if (Request::ajax()) {
         return Response::json($role, 201);
     }
     return Redirect::route('roles.index')->with('notification:success', $this->created_message);
 }
開發者ID:k4ml,項目名稱:laravel-base,代碼行數:24,代碼來源:RolesController.php


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