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