Expose the backend of IUser

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/11786/head
Roeland Jago Douma 6 years ago
parent df4fa2695e
commit 1fd640b40b
No known key found for this signature in database
GPG Key ID: F941078878347C0C
  1. 4
      lib/private/User/User.php
  2. 7
      lib/public/IUser.php

@ -302,6 +302,10 @@ class User implements IUser {
return get_class($this->backend);
}
public function getBackend() {
return $this->backend;
}
/**
* check if the backend allows the user to change his avatar on Personal page
*

@ -108,6 +108,13 @@ interface IUser {
*/
public function getBackendClassName();
/**
* Get the backend for the current user object
*
* @since 15.0.0
*/
public function getBackend();
/**
* check if the backend allows the user to change his avatar on Personal page
*

Loading…
Cancel
Save