aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/avatar/driver/interface.php
Commit message (Collapse)AuthorAgeFilesLines
* [feature/avatars] Remove trailing whitespace from avatar codeMarc Alexander2013-02-191-5/+5
| | | | PHPBB3-10018
* [feature/avatars] Pass phpbb_user to prepare and process form functionsMarc Alexander2013-02-191-2/+4
| | | | | | | The phpbb_user object might be used for language variables and other things. PHPBB3-10018
* [feature/avatars] Correct license, copyright and package infoMarc Alexander2013-02-031-3/+3
| | | | PHPBB3-10018
* [feature/avatars] Pass phpbb_user object to prepare_form_acp()Marc Alexander2013-01-081-1/+3
| | | | | | | The phpbb_user object might be used for language variables. Pass it as a function argument to prepare_form_acp() instead of using globals. PHPBB3-10018
* [feature/avatars] Pass phpbb_user object to get_custom_html()Marc Alexander2013-01-081-1/+4
| | | | | | | | Pass the phpbb_user object to function get_custom_html(). This object is used in that method. Also fixed incorrect arguments to get_custom_html() in phpbb_get_avatar(). PHPBB3-10018
* [feature/avatars] Remove $request property and pass as argument if neededMarc Alexander2013-01-071-2/+4
| | | | | | | | Remove the $request property from the phpbb_avatar_driver class and rather pass it as function argument if it's needed in a function. Currently this is only the case for the class methods prepare_form() and process_form(). PHPBB3-10018
* [feature/avatars] Fix docblocks and minor cosmetic issuesMarc Alexander2012-12-011-9/+18
| | | | PHPBB3-10018
* [feature/avatars] Let avatar manager handle $ignore_configMarc Alexander2012-11-301-9/+7
| | | | | | | 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-7/+0
| | | | | | | | 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-291-2/+1
| | | | | | | | | 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] Even more fixes to docblocksMarc Alexander2012-11-251-19/+19
| | | | PHPBB3-10018
* [feature/avatars] Move avatar specific settings to driversMarc Alexander2012-11-211-0/+7
| | | | PHPBB3-10018
* [feature/avatars] Fix the docs and small naming fixesMarc Alexander2012-11-191-5/+29
| | | | PHPBB3-10018
* [feature/avatars] Add service containers for avatarsMarc Alexander2012-11-151-0/+7
| | | | PHPBB3-10018
* [feature/avatars] Add support for custom avatar HTML codeMarc Alexander2012-11-141-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Rewrite drivers to use full class nameIgor Wiedler2012-06-271-0/+10
| | | | | | | | * 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-271-1/+1
| | | | PHPBB3-10018
* [feature/avatars] Simplify clean_row, move it to avatar managerIgor Wiedler2012-04-081-11/+0
| | | | PHPBB3-10018
* [feature/avatars] Introduce an avatar driver interfaceIgor Wiedler2012-04-081-0/+71
PHPBB3-10018