1<?php 2/** 3 * Options for the Avatar Plugin 4 * 5 * Understanding Image Requests: 6 * https://docs.gravatar.com/sdk/images 7 */ 8 9$conf['namespace'] = 'user'; // user namespace where local avatars are stored 10$conf['size'] = 80; // default size of gravatar: 20, 40 or 80 pixel 11$conf['rating'] = 'PG'; // max rating of gravatar images: G, PG, R or X 12$conf['default'] = 'monsterid'; // type of default images of gravatar 13 14