1<?php
2/**
3 * @brief Default configuration for clock plugin
4 * @license:    GPL 2 (http://www.gnu.org/licenses/gpl.html)
5 * @author:     Luis Machuca Bezzaza <luis.machuca [at] gulix.cl>
6 */
7
8/* default clock object ID
9  Note 1: this can't be changed from Config Manager
10  Note 2: if you change this value, you must change the IDs for
11          the CSS styles as well! (Javascript will update itself)
12 */
13
14$conf['clock_id']        = 'dw_clock_object';
15/* text = default, analog-css, analog-js */
16$conf['clock_type']      = 'text';
17$clock['clock_fmt']      = '%H:%M:%s';
18$conf['clock_style']     = 'plain';
19/* helpbar: controls whether the helpbar will be visible */
20$conf['helpbar']         = 1;
21$conf['toolbar']         = 0;
22/* clock_infopage: wikilink for helpbar (the official plugin page if empty) */
23$conf['clock_infopage']  = ':wiki:clock';
24/* nojs_fallback: behaviour when JavaScript is not enabled */
25$conf['nojs_fallback']   = 0;
26/* font_fallback: fallback CSS family for clock font
27   (this property is currently unused) */
28$conf['font_fallback']   = 'monospace';
29