aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/avatar
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/avatar')
-rw-r--r--phpBB/includes/avatar/manager.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/includes/avatar/manager.php b/phpBB/includes/avatar/manager.php
index 68d1133e86..7c2d03f07b 100644
--- a/phpBB/includes/avatar/manager.php
+++ b/phpBB/includes/avatar/manager.php
@@ -20,9 +20,25 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_avatar_manager
{
+ /**
+ * phpBB configuration
+ */
protected $config;
+
+ /**
+ * Array that contains a list of enabled drivers
+ */
static protected $enabled_drivers = false;
+
+ /**
+ * Array that contains all available avatar drivers which are passed via the
+ * service container
+ */
protected $avatar_drivers;
+
+ /**
+ * Service container object
+ */
protected $container;
/**