]> git.mxchange.org Git - friendica-addons.git/blob - gravatar/config/gravatar.config.php
modified: public_server/public_server.php
[friendica-addons.git] / gravatar / config / gravatar.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         'gravatar' => [
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                 // - gravatar : default static Gravatar logo
12                 // - mm       : (mystery-man) a static image
13                 // - identicon: a generated geometric pattern based on email hash
14                 // - monsterid: a generated 'monster' with different colors, faces, etc. based on email hash
15                 // - wavatar  : faces with different features and backgrounds based on email hash
16                 // - retro    : 8-bit arcade-styled pixelated faces based on email hash
17                 'default_avatar' => 'gravatar',
18
19                 // rating (String)
20                 // Gravatar lets users self-rate their images to be used at appropriate audiences.
21                 // Choose which are appropriate for your friendica site:
22                 // - g : suitable for display on all wesites with any audience type
23                 // - pg: may contain rude gestures, provocatively dressed individuals, the lesser swear words, or mild violence
24                 // - r : may contain such things as harsh profanity, intense violence, nudity, or hard drug use
25                 // - x : may contain hardcore sexual imagery or extremely disurbing violence
26                 'rating' => 'g',
27         ],
28 ];