aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | [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] 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-256-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Miscellaneous fixesMarc Alexander2012-11-256-17/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Remove unnecessary abbreviationsMarc Alexander2012-11-258-63/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-221-93/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-196-20/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Use https for gravatarMarc Alexander2012-11-191-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Fix local and upload avatar in the ACPMarc Alexander2012-11-181-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Handle deletion of avatarsMarc Alexander2012-11-183-4/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously this wasn't handled correctly if at all. 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-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Fix acp front-end of user and group avatarsMarc Alexander2012-11-173-31/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to the changes to the avatar manager etc. these had to be updated. PHPBB3-10018
| * | | | | | [feature/avatars] Check for gravatar when checking the avatar module_authMarc Alexander2012-11-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Add gravatar to avatar settingsMarc Alexander2012-11-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Use correct names of input fieldsMarc Alexander2012-11-163-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The name of the avatar input fields seem to have been copied from the local avatar (gallery avatar). Since the input fields have different names in the template files of the remote and gravatar avatars this will not properly default to the entered values. Additionally, the focused driver wasn't correctly filtered causing use to always default to no avatar. PHPBB3-10018
| * | | | | | [feature/avatars] Shorten avatar driver's class nameMarc Alexander2012-11-167-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The addition of "core_" that was used until now would require additional avatar drivers (e.g. in extensions) to also include that in their class name which would be incorrect. PHPBB3-10018
| * | | | | | [feature/avatars] Shorten needed language variable for avatar titleMarc Alexander2012-11-161-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Add service containers for avatarsMarc Alexander2012-11-157-52/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Add support for custom avatar HTML codeMarc Alexander2012-11-143-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Add barebone gravatar driverMarc Alexander2012-11-131-0/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| * | | | | | [feature/avatars] Fix coding guidelines infractionsMarc Alexander2012-11-123-5/+12
| | | | | | |
| * | | | | | Merge branch 'feature/avatars' of https://github.com/igorw/phpbb3 into ↵Marc Alexander2012-11-1215-248/+1239
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | feature/avatars Conflicts: phpBB/adm/style/acp_groups.html phpBB/adm/style/acp_users_avatar.html phpBB/includes/acp/acp_groups.php phpBB/includes/acp/acp_users.php phpBB/includes/functions_display.php phpBB/install/database_update.php phpBB/install/schemas/mssql_schema.sql phpBB/styles/prosilver/template/ucp_avatar_options.html
| | * \ \ \ \ \ Merge branch 'develop' into feature/avatarsIgor Wiedler2012-07-2140-275/+1736
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop: (201 commits) [feature/new-tz-handling] Don't use global user but make it a parameter [feature/new-tz-handling] Fix size of suggestion button in chrome [feature/new-tz-handling] Fall back to UTC, if the timezone is invalid [feature/new-tz-handling] Add previous selected value to validation if valid [feature/new-tz-handling] Display suggestion when a different value is selected [ticket/10998] Add border-radius to forum rules block - prosilver [feature/new-tz-handling] Remove additional marking of selected items [feature/new-tz-handling] Move update helper function to new class [feature/new-tz-handling] Fix unit test [feature/new-tz-handling] Delete old variable which is not used anymore [feature/new-tz-handling] Rename $user->tz back to $user->timezone [feature/pagination-as-list] New parameter for name of start var [feature/pagination-as-list] Updates for nils comments [feature/pagination-as-list] Rename and deprecate functions [feature/pagination-as-list] Various fixes and improvements [ticket/10968] Render pagination within the template [feature/new-tz-handling] Remove "timezone might be numeric" [feature/new-tz-handling] Add function to update the timezone [feature/new-tz-handling] Correctly update user and board timezones on update [ticket/10996] Use correct DBMS name in Travis config for PostgreSQL ...
| | * | | | | | | [feature/avatars] Rewrite drivers to use full class nameIgor Wiedler2012-06-277-36/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use full driver class name as avatar_type value * Move avatar drivers to core namespace * Make avatars installable through extensions PHPBB3-10018
| | * | | | | | | [feature/avatars] Remove unneeded argument for driver prepare_form()Igor Wiedler2012-06-274-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| | * | | | | | | [feature/avatars] Fix error in avatar_manager::clean_rowIgor Wiedler2012-06-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| | * | | | | | | Merge remote-tracking branch 'upstream/develop' into feature/avatarsIgor Wiedler2012-06-2745-420/+884
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (255 commits) [ticket/10935] Limit number of PM rules per user to 5000 [ticket/10801] Fixed quickmod tools. [ticket/9551] uncomment line and change length to 255 [ticket/10925] Clarify installation requirements for SQLite [ticket/10938] Serve subforum listing on forumlist from template loop [ticket/10640] Change subject length in mcp in subsilver [ticket/10640] Change subject length in MCP [ticket/10640] Do not change default value of truncate_string() [ticket/10640] Change maximum subject length [ticket/10936] remove PCRE and mbstring support check [ticket/10936] fix language key [ticket/10829] Delete T_STYLESHEET_NAME - no longer used. [ticket/10829] $style_name -> $style_path in style class. [ticket/10743] Renaming user->theme [ticket/10743] Changing obtain_cfg_items [ticket/10882] Fix test name - oops. [ticket/10931] Apply strtolower() correctly, i.e. not on false. [ticket/10931] Also test get_bytes() and get_string() with false. [ticket/10931] Make to_numeric function globally available. [ticket/10932] Use included composer.phar in build process ... Conflicts: phpBB/includes/mcp/mcp_warn.php phpBB/install/database_update.php phpBB/styles/prosilver/template/ucp_avatar_options.html
| | * | | | | | | | [feature/avatars] Fix clean_row regex, thanks to chrisIgor Wiedler2012-04-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| | * | | | | | | | [feature/avatars] Do not assign in an if statementIgor Wiedler2012-04-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| | * | | | | | | | [feature/avatars] Update avatars in database_updateIgor Wiedler2012-04-081-57/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| | * | | | | | | | [feature/avatars] Simplify clean_row, move it to avatar managerIgor Wiedler2012-04-087-57/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018
| | * | | | | | | | [feature/avatars] Introduce an avatar driver interfaceIgor Wiedler2012-04-086-33/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHPBB3-10018