2015-06-12 23:49:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Configuration defaults file for Tag Alert plugin
|
|
|
|
*
|
2018-11-15 06:10:28 +00:00
|
|
|
* @author: Simon Delage <sdelage@gmail.com>
|
2015-06-12 23:49:18 +00:00
|
|
|
* @license: CC Attribution-Share Alike 3.0 Unported <http://creativecommons.org/licenses/by-sa/3.0/>
|
|
|
|
*/
|
|
|
|
|
2018-11-15 05:09:20 +00:00
|
|
|
$conf['action'] = 'inline';
|
2018-11-15 06:10:28 +00:00
|
|
|
$conf['error'] = ''; //comma separated list of tags for wich a "tag error" should be thrown
|
|
|
|
$conf['info'] = ''; //comma separated list of tags for wich a "tag info" should be thrown
|
|
|
|
$conf['success'] = ''; //comma separated list of tags for wich a "tag success" should be thrown
|
|
|
|
$conf['notify'] = ''; //comma separated list of tags for wich a "tag notification" should be thrown
|
2018-11-15 06:11:39 +00:00
|
|
|
$conf['forcemsg'] = ''; //comma separated list of tags for wich messages will be forced, even with `inline` setting
|