summaryrefslogtreecommitdiffstats
path: root/inc/User
Commit message (Collapse)AuthorAgeFilesLines
* Fixed typo (Lisener → Listener)Elias Probst2011-01-012-4/+4
|
* fix login issue after logging outRobin Appelman2010-11-041-0/+3
|
* initial version for user managment tab in the settings pageRobin Appelman2010-09-202-15/+51
|
* add functions to get a list of all users or groupsRobin Appelman2010-09-151-0/+12
|
* use caching for user-group relationsRobin Appelman2010-09-121-24/+57
|
* Moved LDAP authentication into a pluginAldo "xoen" Giambelluca2010-07-232-231/+0
| | | | | Used the current plugin system to define `USER_OC_LDAP` class that can be used as backend for OC_USER
* Cleaned up and added some documentationAldo "xoen" Giambelluca2010-07-223-259/+338
|
* Created class `OC_USER_BACKEND` for general user managmentAldo "xoen" Giambelluca2010-07-214-286/+385
| | | | | | It's possible to use `OC_USER` as normal but the real stuff is done by the `OC_USER::$_backend` class, setted using `OC_USER::setBackend()` (this is done in inc/lib_user.php)
* OC_USER now is an abstract class (OC_USER_ABSTRACT)Aldo "xoen" Giambelluca2010-07-193-14/+19
| | | | | | | | | | At start the choosen user manager is created (e.g. OC_USER_DATABASE, OC_USER_LDAP) and put into the global variable `$userManager`. This is the variable to use instead of `OC_USER` class. TODO: A better name than $userManager?
* Reverted to self::$classType syntax and fixed the use of self in non-objectAldo "xoen" Giambelluca2010-07-193-21/+19
|
* Minor style changesAldo "xoen" Giambelluca2010-07-152-65/+67
| | | | | * camelCase * spaces here and there
* Fixed a cache-check in `OC_USER_Database::getGroupName()` and minor style ↵Aldo "xoen" Giambelluca2010-07-151-164/+179
| | | | | | | changes * Added spaces here and there * Using camelCase for same variable
* Minor style changesAldo "xoen" Giambelluca2010-07-151-73/+75
| | | | | | * Using camelCase for `$classType` property * Using `self` keyword instead of class name * Added spaces here and there
* Support for mod_auth addedfabian2010-07-153-0/+525