1<?php
2/**
3 * Metadata for configuration manager plugin
4 * Additions for the minima template
5 *
6 * @author    Esther Brunner <wikidesign@gmail.com>
7 */
8$meta['color']            = array(
9  'multichoice',
10  '_choices' => array('blue', 'brown', 'gray', 'green', 'pink', 'purple')
11);
12$meta['width']            = array(
13  'multichoice',
14  '_choices' => array('narrow', 'medium', 'wide')
15);
16$meta['sidebar_position'] = array(
17  'multichoice',
18  '_choices' => array('left', 'right')
19);
20$meta['sidebar_page']     = array('string');
21$meta['tabs_page']        = array('string');
22$meta['showpageinfo']     = array('onoff');
23$meta['showsiteactions']  = array('onoff');
24$meta['showuseractions']  = array('onoff');
25
26//Setup VIM: ex: et ts=2 enc=utf-8 :
27