1<?php 2/** 3 * Configuration defaults file for Userhomepage plugin 4 * Previous authors: James GuanFeng Lin, Mikhail I. Izmestev, Daniel Stonier 5 * @author Simon DELAGE <sdelage@gmail.com> 6 * @license: CC Attribution-Share Alike 3.0 Unported <http://creativecommons.org/licenses/by-sa/3.0/> 7 */ 8 9 $conf['create_private_ns'] = 0; 10 $conf['use_name_string'] = 0; 11 $conf['use_start_page'] = 1; 12 $conf['users_namespace'] = 'user'; 13 $conf['group_by_name'] = 0; 14 $conf['edit_before_create'] = 0; 15 $conf['acl_all_private'] = '0'; 16 $conf['acl_user_private'] = '0'; 17 $conf['groups_private'] = ''; 18 $conf['create_public_page'] = 0; 19 $conf['public_pages_ns'] = 'user'; 20 $conf['acl_all_public'] = '1'; 21 $conf['acl_user_public'] = '1'; 22 $conf['groups_public'] = ''; 23 $conf['templates_path'] = './pages/user'; 24 $conf['templatepath'] = 'lib/plugins/userhomepage/_template.txt'; 25 $conf['acl_all_templates'] = '1'; 26 $conf['acl_user_templates'] = '1'; 27 $conf['no_acl'] = 0; 28 $conf['redirection'] = 1; 29 $conf['action'] = 'edit'; 30 $conf['userlink_replace'] = 1; 31 $conf['userlink_classes'] = 'interwiki iw_user'; 32 $conf['userlink_icons'] = 'png'; 33 $conf['userlink_fa'] = 0; 34 35