aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [feature/avatars] Call set_name() method in avatars.ymlMarc Alexander2012-12-091-0/+8
| | | | | | This is needed after 8a28271d was merged. PHPBB3-10018
* [feature/avatars] Fix behavior of avatar manager and variablesMarc Alexander2012-12-043-16/+16
| | | | | | | The $force_all variable was only partially removed and the behavior was not consistent in all files. PHPBB3-10018
* [feature/avatars] Use seperate function for retrieving the config nameMarc Alexander2012-12-042-4/+16
| | | | PHPBB3-10018
* [feature/avatars] Use seperate function for retrieving all driversMarc Alexander2012-12-042-4/+23
| | | | PHPBB3-10018
* [feature/avatars] Minor variable naming fixesMarc Alexander2012-12-048-18/+18
| | | | PHPBB3-10018
* [feature/avatars] Removed unneeded dependenciesMarc Alexander2012-12-012-13/+1
| | | | PHPBB3-10018
* [feature/avatars] Fix docblocks and minor cosmetic issuesMarc Alexander2012-12-016-22/+26
| | | | PHPBB3-10018
* [feature/avatars] Create setting for enabling avatar in managerMarc Alexander2012-11-307-69/+31
| | | | PHPBB3-10018
* [feature/avatars] Fix variable namesMarc Alexander2012-11-307-68/+62
| | | | PHPBB3-10018
* [feature/avatars] Let avatar manager handle $ignore_configMarc Alexander2012-11-308-69/+35
| | | | | | | The avatar manager already handles if avatars are enabled. It should also handle ignoring the config settings. PHPBB3-10018
* [feature/avatars] Unify size of avatar_typeMarc Alexander2012-11-308-16/+16
| | | | | | | Previously it was set to 255 in one file while it was 32 in other files. As the size of 32 is rather low this was increased to 255. PHPBB3-10018
* [feature/avatars] Get list of enabled drivers from avatar managerMarc Alexander2012-11-308-96/+88
| | | | | | | | This shouldn't be done in the avatar drivers. We need to force the display all avatar drivers in the ACP or it won't be possible to enable avatars after they have been disabled. PHPBB3-10018
* [feature/avatars] Properly implement custom HTML in the interfaceMarc Alexander2012-11-294-17/+7
| | | | | | | | | Previously the driver class added a variable that defined wether an avatar driver would return custom HTML. The existence of this variable was implied in the interface. It's also not needed which is why it has been removed. PHPBB3-10018
* [feature/avatars] Check for existing functions rather than using _onceMarc Alexander2012-11-264-5/+21
| | | | PHPBB3-10018
* [feature/avatars] Change gravatar explain as discussed in PRMarc Alexander2012-11-251-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Even more fixes to docblocksMarc Alexander2012-11-257-61/+65
| | | | PHPBB3-10018
* [feature/avatars] Docblock fixes and small change for php_extMarc Alexander2012-11-254-36/+34
| | | | PHPBB3-10018
* [feature/avatars] Implement better treatment of avatar errorsMarc Alexander2012-11-254-25/+21
| | | | PHPBB3-10018
* [feature/avatars] Small cosmetic changesMarc Alexander2012-11-254-15/+9
| | | | PHPBB3-10018
* [feature/avatars] Add static methods for handling driver namesMarc Alexander2012-11-255-12/+38
| | | | PHPBB3-10018
* [feature/avatars] Small fixesMarc Alexander2012-11-251-7/+4
| | | | PHPBB3-10018
* [feature/avatars] Only create avatar objects if necessaryMarc Alexander2012-11-257-8/+14
| | | | PHPBB3-10018
* [feature/avatars] Miscellaneous fixesMarc Alexander2012-11-257-27/+30
| | | | PHPBB3-10018
* [feature/avatars] Use new avatar types in database updaterMarc Alexander2012-11-251-3/+3
| | | | PHPBB3-10018
* [feature/avatars] Remove unnecessary abbreviationsMarc Alexander2012-11-2528-157/+157
| | | | PHPBB3-10018
* [feature/avatars] Add allow_avatar_gravatar to schema_data.sqlMarc Alexander2012-11-221-0/+1
| | | | PHPBB3-10018
* [feature/avatars] Remove duplicate form enctypeMarc Alexander2012-11-221-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Remove obsolete functions from functions_user.phpMarc Alexander2012-11-221-466/+0
| | | | | | The removed functions are no longer needed due to the new avatar system. PHPBB3-10018
* [feature/avatars] Add support for modularized avatars to ucp groupsMarc Alexander2012-11-225-160/+125
| | | | | | | This seems to be the last component where the new avatars system was still missing. PHPBB3-10018
* [feature/avatars] Use RecursiveDirectoryIterator for gallery avatarMarc Alexander2012-11-211-33/+21
| | | | | | | RecursiveDirectoryIterator is now used for populating the avatar list array of the gallery avatar. PHPBB3-10018
* [feature/avatars] Get rid of array_keys() in gallery avatarMarc Alexander2012-11-211-3/+6
| | | | PHPBB3-10018
* [feature/avatars] Use isset() instead of in_array()Marc Alexander2012-11-211-2/+2
| | | | PHPBB3-10018
* [feature/avatars] Use in_array() and fix tabbingMarc Alexander2012-11-211-4/+4
| | | | PHPBB3-10018
* [feature/avatars] Move avatar specific settings to driversMarc Alexander2012-11-217-9/+76
| | | | PHPBB3-10018
* [feature/avatars] Check if gravatar is within min/max width/heightMarc Alexander2012-11-211-0/+18
| | | | PHPBB3-10018
* [feature/avatars] Use constant for URL and fix usage of getimagesizeMarc Alexander2012-11-211-16/+39
| | | | | | | | We now use a constant for the gravatar URL. Additionally the usage of getimagesize() was reduced. It should only be run if the user didn't specify both the width and height of the avatar. PHPBB3-10018
* [feature/avatars] Use protected instead of privateMarc Alexander2012-11-194-12/+12
| | | | PHPBB3-10018
* [feature/avatars] Fix the docs and small naming fixesMarc Alexander2012-11-197-20/+71
| | | | PHPBB3-10018
* [feature/avatars] Use https for gravatarMarc Alexander2012-11-191-3/+2
| | | | PHPBB3-10018
* [feature/avatars] Miscellaenous template fixesMarc Alexander2012-11-183-4/+7
| | | | PHPBB3-10018
* [feature/avatars] Fix local and upload avatar in the ACPMarc Alexander2012-11-183-7/+7
| | | | PHPBB3-10018
* [feature/avatars] Handle deletion of avatarsMarc Alexander2012-11-186-4/+19
| | | | | | Previously this wasn't handled correctly if at all. PHPBB3-10018
* [feature/avatars] Add subsilver2 supportMarc Alexander2012-11-186-54/+101
| | | | | | This implementation might not be perfect though. PHPBB3-10018
* [feature/avatars] Add missing assign_block_vars() for avatar optionsMarc Alexander2012-11-181-0/+4
| | | | | | This is needed for selecting the gallery avatar while using subsilver2. PHPBB3-10018
* [feature/avatars] Use request class in upload avatarMarc Alexander2012-11-171-1/+2
| | | | PHPBB3-10018
* [feature/avatars] Small fixes after transition to service containersMarc Alexander2012-11-172-2/+2
| | | | PHPBB3-10018
* [feature/avatars] Fix acp front-end of user and group avatarsMarc Alexander2012-11-177-80/+51
| | | | | | Due to the changes to the avatar manager etc. these had to be updated. PHPBB3-10018
* [feature/avatars] Add missing language variables for avatarsMarc Alexander2012-11-164-6/+21
| | | | PHPBB3-10018
* [feature/avatars] Check for gravatar when checking the avatar module_authMarc Alexander2012-11-162-1/+9
| | | | PHPBB3-10018
* [feature/avatars] Add gravatar to avatar settingsMarc Alexander2012-11-162-0/+2
| | | | PHPBB3-10018