<?php
/**
 * Default settings for the CountdownV2 plugin
 *
 * @author Frank Kosanke <digger@error-404.de>
 */

// keys need to match the config setting name
$conf['colordefault'] = '';
$conf['colorok'] = '#009900';
$conf['colorwarning'] = '#cc9900';
$conf['colorcritical'] = '#cc0000';

// when left this seconds or lesser, than use warning color
$conf['yearwarning'] = 2592000;     // 30 days
$conf['monthwarning'] = 1209600;    // 14 days
$conf['weekwarning'] = 604800;      // 7 days
$conf['daywarning'] = 86400;        // 24 hours
$conf['hourwarning'] = 3600;        // 1 hour
$conf['minutewarning'] = 120;       // 2 minutes

// time formats
$conf['dateformat'] = '%d.%m.%Y';
$conf['timeformat'] = '%H:%M';
$conf['datetimeformat'] = '%d.%m.%Y %H:%M';
