1<?php
2/**
3 * Default configuration for noiewarning plugin
4 *
5 * @license:    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author:     Luis Machuca <luis.machuca@gulix.cl>
7 */
8
9/* method: the method to send the notification */
10$conf['method']       = 'subsection';
11/* datasrc: where to pick the data from */
12$conf['source']       = 'banner';
13/* wikipage: for source=wikipage, the pagename of the banner page */
14$conf['wikipage']     = 'wiki:noie';
15/* banner: bare default */
16$conf['banner']       = 'You are using a defective browser: //Internet Explorer//. Don\'t complain if you have troubles seeing this page; instead, get a better browser such as [[http://www.getfirefox.com|Firefox]]!';
17/* min_ie_version: the minimal version of IE for which warning won't be shown,
18  by default is *very* high because, well, it is No Internet Explorer!
19  */
20$conf['min_ie_version']  = '999';
21
22