Stevemo\Cpanel\Group\Repo\CpanelGroupInterface::findAll PHP Method

findAll() public method

Returns all groups.
Author: Steve Montambeault
public findAll ( ) : array
return array $groups
    public function findAll();

Usage Example

Beispiel #1
0
 /**
  * Display the user edit form
  *
  * @author Steve Montambeault
  * @link   http://stevemo.ca
  *
  * @param int $id
  *
  * @return \Illuminate\Http\RedirectResponse
  */
 public function edit($id)
 {
     try {
         $user = $this->users->findById($id);
         $groups = $this->groups->findAll();
         $userPermissions = $user->getPermissions();
         $genericPermissions = $this->permissions->generic();
         $modulePermissions = $this->permissions->module();
         //get only the group id the user belong to
         $userGroupsId = array_pluck($user->getGroups()->toArray(), 'id');
         return View::make(Config::get('cpanel::views.users_edit'))->with('user', $user)->with('groups', $groups)->with('userGroupsId', $userGroupsId)->with('genericPermissions', $genericPermissions)->with('modulePermissions', $modulePermissions)->with('userPermissions', $userPermissions);
     } catch (UserNotFoundException $e) {
         return Redirect::route('cpanel.users.index')->with('error', $e->getMessage());
     }
 }
All Usage Examples Of Stevemo\Cpanel\Group\Repo\CpanelGroupInterface::findAll