aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/avatar/manager.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11404] Use a default data row if $row is empty in clean_row()Marc Alexander2013-03-071-10/+16
| | | | | | | | A statically defined $default_row will be used inside the phpbb_avatar_manager::clean_row() method if the $row passed to it is empty. PHPBB3-11404
* [ticket/11404] Return empty array of avatar data if $row is emptyMarc Alexander2013-03-061-0/+11
| | | | | | | | | | While creating a group in the acp, the group data ($group_row) is empty. Due to that array_combine in phpbb_avatar_manager::clean_row() will cause PHP Warnings. In addition to that the required indexes 'avatar', 'avatar_width', 'avatar_height', and 'avatar_type' won't be defined. This patch will solve that issue. PHPBB3-11404
* [feature/avatars] Correct license, copyright and package infoMarc Alexander2013-02-031-2/+2
| | | | PHPBB3-10018
* [feature/avatars] Add missing @var to docblocks in avatar managerMarc Alexander2013-01-091-0/+4
| | | | PHPBB3-10018
* [feature/avatars] Add function for localizing errorsMarc Alexander2013-01-061-4/+29
| | | | PHPBB3-10018
* [feature/avatars] Add missing docblocks to avatar managerMarc Alexander2013-01-051-0/+16
| | | | PHPBB3-10018
* [feature/avatars] Add missing explanation to docblock of get_all_drivers()Marc Alexander2012-12-271-0/+4
| | | | PHPBB3-10018
* [feature/avatars] Some more miscellaneous changesMarc Alexander2012-12-271-22/+22
| | | | PHPBB3-10018
* [feature/avatars] Use callback method in avatar manager's clean rowMarc Alexander2012-12-171-7/+12
| | | | PHPBB3-10018
* [feature/avatars] Fix behavior of avatar manager and variablesMarc Alexander2012-12-041-10/+10
| | | | | | | 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-041-3/+15
| | | | PHPBB3-10018
* [feature/avatars] Use seperate function for retrieving all driversMarc Alexander2012-12-041-3/+22
| | | | PHPBB3-10018
* [feature/avatars] Removed unneeded dependenciesMarc Alexander2012-12-011-9/+1
| | | | PHPBB3-10018
* [feature/avatars] Fix docblocks and minor cosmetic issuesMarc Alexander2012-12-011-9/+4
| | | | PHPBB3-10018
* [feature/avatars] Create setting for enabling avatar in managerMarc Alexander2012-11-301-0/+16
| | | | PHPBB3-10018
* [feature/avatars] Fix variable namesMarc Alexander2012-11-301-0/+1
| | | | PHPBB3-10018
* [feature/avatars] Let avatar manager handle $ignore_configMarc Alexander2012-11-301-4/+5
| | | | | | | The avatar manager already handles if avatars are enabled. It should also handle ignoring the config settings. PHPBB3-10018
* [feature/avatars] Get list of enabled drivers from avatar managerMarc Alexander2012-11-301-4/+25
| | | | | | | | 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] Even more fixes to docblocksMarc Alexander2012-11-251-17/+17
| | | | PHPBB3-10018
* [feature/avatars] Add static methods for handling driver namesMarc Alexander2012-11-251-0/+26
| | | | 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] Use protected instead of privateMarc Alexander2012-11-191-9/+9
| | | | PHPBB3-10018
* [feature/avatars] Fix the docs and small naming fixesMarc Alexander2012-11-191-9/+29
| | | | PHPBB3-10018
* [feature/avatars] Shorten avatar driver's class nameMarc Alexander2012-11-161-3/+3
| | | | | | | | 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] Add service containers for avatarsMarc Alexander2012-11-151-31/+15
| | | | PHPBB3-10018
* [feature/avatars] Fix coding guidelines infractionsMarc Alexander2012-11-121-3/+8
|
* [feature/avatars] Rewrite drivers to use full class nameIgor Wiedler2012-06-271-28/+27
| | | | | | | | * Use full driver class name as avatar_type value * Move avatar drivers to core namespace * Make avatars installable through extensions PHPBB3-10018
* [feature/avatars] Fix error in avatar_manager::clean_rowIgor Wiedler2012-06-271-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Fix clean_row regex, thanks to chrisIgor Wiedler2012-04-081-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Simplify clean_row, move it to avatar managerIgor Wiedler2012-04-081-0/+19
| | | | PHPBB3-10018
* [feature/avatars] Fix CSIgor Wiedler2012-04-071-1/+2
| | | | PHPBB3-10018
* [feature/avatars] Use request object in avatar driversIgor Wiedler2012-04-071-2/+4
| | | | PHPBB3-10018
* [feature/avatars] Remove unneeded require (class is now autoloaded)Igor Wiedler2012-04-071-2/+0
| | | | PHPBB3-10018
* [feature/avatars] Fixing typos in avatar manager and local avatarsCullen Walsh2012-03-181-1/+1
| | | | | | See above PHPBB3-10018
* [feature/avatars] Support proper avatar deletion, stub ACPCullen Walsh2012-03-181-0/+14
| | | | | | | | Fixing avatar deletion in the UCP and ACP, and stubbing the ACP configuration page. I'll admit I kind of got caught carried away, so this really should be a couple separate commits. PHPBB3-10018
* [feature/avatars] Various cosmetic changesCullen Walsh2012-03-181-10/+11
| | | | | | | | | | | | Various small changes based on feedback from nn- * Renaming $php_ext to $phpEx * Fixing copyright years * Explain $ignore_config * Explain Regex * Copypasta package error * rename get_singleton PHPBB3-10018
* [feature/avatars] UCP Avatar InterfaceCullen Walsh2012-03-181-0/+21
| | | | | | | | | This stubs out the avatar form fields and how form processing will occur. Form processing is not yet implemented, but shouldn't be too hard. After this I will refactor/duplicate some of the logic for the ACP. PHPBB3-10018
* [feature/avatars] Refactor avatars to use managerCullen Walsh2012-03-181-0/+91
Manager now stores singletons of each driver to speed loading. PHPBB3-10018