X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=gravatar%2FREADME.md;h=02b9bfd26aab7e2786223790fad31965548c934d;hb=70f541c58b3ad1cf429e1f7997a798931c902dd7;hp=0145570b79506277e612bae0726a207f3695ffe4;hpb=39dd3dffe07efd69fa1ac6d0bd243c7fc0e3a66f;p=friendica-addons.git diff --git a/gravatar/README.md b/gravatar/README.md index 0145570b..02b9bfd2 100644 --- a/gravatar/README.md +++ b/gravatar/README.md @@ -30,13 +30,19 @@ Gravatar lets users self-rate their images to be used at appropriate audiences. See more information at [Gravatar][1]. ## Alternative Configuration -Open the .htconfig.php file and add "gravatar" to the list of activated addons: +Open the `config/local.config.php` file and add "gravatar" to the list of activated addons: - $a->config['system']['addon'] = "..., gravatar"; + 'system' => [ + ... + 'addon' => '...,gravatar' + ... + ] -You can add two configuration variables for the addon: +You can add two configuration variables for the addon to the `config/addon.config.php` file: - $a->config['gravatar']['default_avatar'] = "identicon"; - $a->config['gravatar']['rating'] = "g"; + 'gravatar' => [ + 'default_avatar' => 'identicon', + 'rating' => 'g', + ], [1]: http://www.gravatar.com/site/implement/images/ "See documentation at Gravatar for more information"