1<?php
2/**
3 * Options for the Avatar Plugin.
4 * DokuWiki Avatar Plugin: displays avatar images with syntax, see:
5 * <https://www.dokuwiki.org/plugin:avatar>.
6 *
7 * Copyright (C) 2005-2007 by Esther Brunner <wikidesign@gmail.com>
8 * Copyright (C) 2008-2009 by Gina Häußge, Michael Klier <dokuwiki@chimeric.de>
9 * Copyright (C) 2013 by Michael Hamann <michael@content-space.de>
10 * Copyright (C) 2023 by Daniel Dias Rodrigues <danieldiasr@gmail.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, see <https://www.gnu.org/licenses/>.
24 */
25
26$conf['namespace']        = 'user';        // user namespace where local avatars are stored
27$conf['size']             = 80;            // default size of avatars: 20, 40, 80 or 120 pixel
28$conf['rating']           = 'PG';          // max rating of gravatar images: G, PG, R or X
29$conf['gravatar_default'] = 'default';     // default fallback for gravatar
30$conf['local_default']    = 'monsterid';   // default fallback for local avatars
31