12345678910111213141516171819202122 |
- <?php
- /**
- * Default configuration for noiewarning plugin
- *
- * @license: GPL 2 (http://www.gnu.org/licenses/gpl.html)
- * @author: Luis Machuca <luis.machuca@gulix.cl>
- */
- /* method: the method to send the notification */
- $conf['method'] = 'subsection';
- /* datasrc: where to pick the data from */
- $conf['source'] = 'banner';
- /* wikipage: for source=wikipage, the pagename of the banner page */
- $conf['wikipage'] = 'wiki:noie';
- /* banner: bare default */
- $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]]!';
- /* min_ie_version: the minimal version of IE for which warning won't be shown,
- by default is *very* high because, well, it is No Internet Explorer!
- */
- $conf['min_ie_version'] = '999';
|