LDAP - move from constants to class member constants

* fixes scrutinizer warnings
* drops the usage of deprecated code usage
This commit is contained in:
Morris Jobke 2015-04-18 15:29:08 +02:00
parent 8cb0d97b10
commit 58e5878b4d
1 changed files with 5 additions and 5 deletions

View File

@ -355,11 +355,11 @@ class USER_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
* compared with OC_USER_BACKEND_CREATE_USER etc.
*/
public function implementsActions($actions) {
return (bool)((OC_USER_BACKEND_CHECK_PASSWORD
| OC_USER_BACKEND_GET_HOME
| OC_USER_BACKEND_GET_DISPLAYNAME
| OC_USER_BACKEND_PROVIDE_AVATAR
| OC_USER_BACKEND_COUNT_USERS)
return (bool)((\OC_User_Backend::CHECK_PASSWORD
| \OC_User_Backend::GET_HOME
| \OC_User_Backend::GET_DISPLAYNAME
| \OC_User_Backend::PROVIDE_AVATAR
| \OC_User_Backend::COUNT_USERS)
& $actions);
}