diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-01-06 13:26:23 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-01-06 13:26:23 +0100 |
commit | ea6bcdff52fb3f4dc916d39e427643bc00982352 (patch) | |
tree | 36cbf137435c31bbccad00ceb3ce03f59d553351 /phpBB/phpbb/avatar/driver/driver_interface.php | |
parent | 82b4eb6d3d9a7747f48ad3d2302d9716c37dac95 (diff) | |
parent | 11b79fec4d3e48d2446d1c73ed2f8c2b20c1ab5c (diff) | |
download | forums-ea6bcdff52fb3f4dc916d39e427643bc00982352.tar forums-ea6bcdff52fb3f4dc916d39e427643bc00982352.tar.gz forums-ea6bcdff52fb3f4dc916d39e427643bc00982352.tar.bz2 forums-ea6bcdff52fb3f4dc916d39e427643bc00982352.tar.xz forums-ea6bcdff52fb3f4dc916d39e427643bc00982352.zip |
Merge branch '3.1.x'
Diffstat (limited to 'phpBB/phpbb/avatar/driver/driver_interface.php')
-rw-r--r-- | phpBB/phpbb/avatar/driver/driver_interface.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/phpbb/avatar/driver/driver_interface.php b/phpBB/phpbb/avatar/driver/driver_interface.php index 835609745a..7d6c2cff8a 100644 --- a/phpBB/phpbb/avatar/driver/driver_interface.php +++ b/phpBB/phpbb/avatar/driver/driver_interface.php @@ -26,6 +26,13 @@ interface driver_interface public function get_name(); /** + * Returns the config name of the driver. To be used in accessing the CONFIG variables. + * + * @return string Config name of driver. + */ + public function get_config_name(); + + /** * Get the avatar url and dimensions * * @param array $row User data or group data that has been cleaned with @@ -110,4 +117,11 @@ interface driver_interface * @return string Avatar driver's template name */ public function get_template_name(); + + /** + * Get the avatar driver's template name (ACP) + * + * @return string Avatar driver's template name + */ + public function get_acp_template_name(); } |