mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[feature/avatars] Add gravatar to avatar settings
PHPBB3-10018
This commit is contained in:
parent
517d3f56ac
commit
ca30135391
2 changed files with 2 additions and 0 deletions
|
@ -118,6 +118,7 @@ class acp_board
|
||||||
'avatar_max_height' => array('lang' => 'MAX_AVATAR_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false),
|
'avatar_max_height' => array('lang' => 'MAX_AVATAR_SIZE', 'validate' => 'int:0', 'type' => false, 'method' => false, 'explain' => false),
|
||||||
|
|
||||||
'allow_avatar' => array('lang' => 'ALLOW_AVATARS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
'allow_avatar' => array('lang' => 'ALLOW_AVATARS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
||||||
|
'allow_avatar_gravatar' => array('lang' => 'ALLOW_GRAVATAR', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
||||||
'allow_avatar_local' => array('lang' => 'ALLOW_LOCAL', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
'allow_avatar_local' => array('lang' => 'ALLOW_LOCAL', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
||||||
'allow_avatar_remote' => array('lang' => 'ALLOW_REMOTE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
'allow_avatar_remote' => array('lang' => 'ALLOW_REMOTE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
||||||
'allow_avatar_upload' => array('lang' => 'ALLOW_UPLOAD', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
'allow_avatar_upload' => array('lang' => 'ALLOW_UPLOAD', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
|
||||||
|
|
|
@ -99,6 +99,7 @@ $lang = array_merge($lang, array(
|
||||||
|
|
||||||
'ALLOW_AVATARS' => 'Enable avatars',
|
'ALLOW_AVATARS' => 'Enable avatars',
|
||||||
'ALLOW_AVATARS_EXPLAIN' => 'Allow general usage of avatars;<br />If you disable avatars in general or avatars of a certain mode, the disabled avatars will no longer be shown on the board, but users will still be able to download their own avatars in the User Control Panel.',
|
'ALLOW_AVATARS_EXPLAIN' => 'Allow general usage of avatars;<br />If you disable avatars in general or avatars of a certain mode, the disabled avatars will no longer be shown on the board, but users will still be able to download their own avatars in the User Control Panel.',
|
||||||
|
'ALLOW_GRAVATAR' => 'Enable gravatar avatars',
|
||||||
'ALLOW_LOCAL' => 'Enable gallery avatars',
|
'ALLOW_LOCAL' => 'Enable gallery avatars',
|
||||||
'ALLOW_REMOTE' => 'Enable remote avatars',
|
'ALLOW_REMOTE' => 'Enable remote avatars',
|
||||||
'ALLOW_REMOTE_EXPLAIN' => 'Avatars linked to from another website.',
|
'ALLOW_REMOTE_EXPLAIN' => 'Avatars linked to from another website.',
|
||||||
|
|
Loading…
Add table
Reference in a new issue