1<?php
2/**
3 * Default settings for the CountdownV2 plugin
4 *
5 * @author Frank Kosanke <digger@error-404.de>
6 */
7
8// keys need to match the config setting name
9$conf['colordefault'] = '';
10$conf['colorok'] = '#009900';
11$conf['colorwarning'] = '#cc9900';
12$conf['colorcritical'] = '#cc0000';
13
14// when left this seconds or lesser, than use warning color
15$conf['yearwarning'] = 2592000;     // 30 days
16$conf['monthwarning'] = 1209600;    // 14 days
17$conf['weekwarning'] = 604800;      // 7 days
18$conf['daywarning'] = 86400;        // 24 hours
19$conf['hourwarning'] = 3600;        // 1 hour
20$conf['minutewarning'] = 120;       // 2 minutes
21
22// time formats
23$conf['dateformat'] = '%d.%m.%Y';
24$conf['timeformat'] = '%H:%M';
25$conf['datetimeformat'] = '%d.%m.%Y %H:%M';
26