xref: /template/ad-hominem/conf/metadata.php (revision ee4968b19d26f90695f4b6fc8b56ef6fa4dea5a1)
1<?php
2/**
3 * Configuration settings for the Ad Hominem template
4 *
5 * @author     Sascha Leib <sascha@leib.be>
6 */
7
8$meta['darkmode'] = array('multichoice',
9						'_choices' => array ('allow', 'disable'));
10
11$meta['navtrail'] = array('multichoice',
12						'_choices' => array ('none', 'text', 'link'));
13
14$meta['printstyle'] = array('multichoice',
15						'_choices' => array ('basic', 'compact'));
16
17$meta['cookiepos'] = array('multichoice',
18						'_choices' => array ('hide', 'top', 'bottom'));
19
20/* there seems to be a bug with arrays. so here's a workaround: */
21
22/*$meta['darkmode'] =  = array('string');
23
24$meta['navtrail'] =  = array('string');
25
26$meta['printstyle'] =  = array('string');
27
28$meta['cookiepos'] = array('string');*/
29
30/* the following are expected to be strings: */
31
32$meta['cookiemsg'] = array('string');
33
34$meta['cookielink'] = array('string');
35
36$meta['homelink'] = array('string');
37
38