]> git.mxchange.org Git - friendica-addons.git/blob - libravatar/config/libravatar.config.php
Wrong type-hint, fixes #11731
[friendica-addons.git] / libravatar / config / libravatar.config.php
1 <?php
2
3 // Warning: Don't change this file! It only holds the default config values for this addon.
4 // Instead overwrite these config values in config/addon.config.php in your Friendica directory
5
6 return [
7         'libravatar' => [
8                 // default_avatar (String)
9                 // If no avatar was found for an email Gravatar can create some pseudo-random generated avatars based on an email hash.
10                 // You can choose between these presets:
11                 // - mm       : (mystery-man) a static image
12                 // - identicon: a generated geometric pattern based on email hash
13                 // - monsterid: a generated 'monster' with different colors, faces, etc. based on email hash
14                 // - wavatar  : faces with different features and backgrounds based on email hash
15                 // - retro    : 8-bit arcade-styled pixelated faces based on email hash
16                 'default_avatar' => 'identicon',
17         ],
18 ];