1<?php
2/**
3 * Configuration metadata 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    $meta['create_private_ns'] = array('onoff');
10    $meta['use_name_string'] = array('onoff');
11    $meta['use_start_page'] = array('onoff');
12    $meta['users_namespace'] = array('string','_pattern' => '/^(|[a-zA-Z\-:]+)$/');
13    $meta['group_by_name'] = array('onoff');
14    $meta['edit_before_create'] = array('onoff');
15    $meta['acl_all_private'] = array('multichoice','_choices'=>array('0','1','2','4','8','16','noacl'));
16    $meta['acl_user_private'] = array('multichoice','_choices'=>array('0','1','2','4','8','16','noacl'));
17    $meta['groups_private'] = array('string');
18    $meta['create_public_page'] = array('onoff');
19    $meta['public_pages_ns'] = array('string','_pattern' => '/^(|[a-zA-Z\-:%]+)$/','_caution' => 'warning');
20    $meta['acl_all_public'] = array('multichoice','_choices'=>array('0','1','2','noacl'));
21    $meta['acl_user_public'] = array('multichoice','_choices'=>array('0','1','2','noacl'));
22    $meta['groups_public'] = array('string');
23    $meta['templates_path'] = array('string');
24    $meta['templatepath'] = array('string');
25    $meta['acl_all_templates'] = array('multichoice','_choices'=>array('0','1','2','noacl'));
26    $meta['acl_user_templates'] = array('multichoice','_choices'=>array('0','1','2','noacl'));
27    $meta['no_acl'] = array('onoff');
28    $meta['redirection'] = array('onoff');
29    $meta['action'] = array('multichoice','_choices'=>array('edit','show'));
30    $meta['userlink_replace'] = array('onoff');
31    $meta['userlink_classes'] = array('string');
32    $meta['userlink_icons'] = array('multichoice','_choices'=>array('png','svg'));
33    $meta['userlink_fa'] = array('onoff');
34