diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-06-27 21:02:07 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-06-27 21:02:07 +0200 |
commit | df16bd1c49e6e970b147f15e752825dd3186fb87 (patch) | |
tree | 43dd9efd101d97a2a9efceba4d4e90c17724372d /phpBB/includes/ucp/ucp_profile.php | |
parent | 13f4bfabbeab77698f06c3431931b73ebedc587c (diff) | |
download | forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar.gz forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar.bz2 forums-df16bd1c49e6e970b147f15e752825dd3186fb87.tar.xz forums-df16bd1c49e6e970b147f15e752825dd3186fb87.zip |
[feature/avatars] Rewrite drivers to use full class name
* Use full driver class name as avatar_type value
* Move avatar drivers to core namespace
* Make avatars installable through extensions
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/ucp/ucp_profile.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_profile.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php index 6b2133796d..f406e9dc5b 100644 --- a/phpBB/includes/ucp/ucp_profile.php +++ b/phpBB/includes/ucp/ucp_profile.php @@ -623,18 +623,18 @@ class ucp_profile } $focused_driver = request_var('avatar_driver', $user->data['user_avatar_type']); - + foreach ($avatar_drivers as $driver) { - if ($config["allow_avatar_$driver"]) + $avatar = $phpbb_avatar_manager->get_driver($driver); + + if ($avatar->is_enabled()) { $avatars_enabled = true; $template->set_filenames(array( - 'avatar' => "ucp_avatar_options_$driver.html", + 'avatar' => $avatar->get_template_name(), )); - $avatar = $phpbb_avatar_manager->get_driver($driver); - if ($avatar->prepare_form($template, $avatar_data, $error)) { $driver_u = strtoupper($driver); |