mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 03:35:01 +00:00
a101ce674c
Change-Id: I2ecaf71c8836d627f20629d667b78ffbf420e4ee
24 lines
352 B
PHP
24 lines
352 B
PHP
<?php
|
|
|
|
class EchoEmailFrequency {
|
|
/**
|
|
* Never send email notifications
|
|
*/
|
|
public const NEVER = -1;
|
|
|
|
/**
|
|
* Send email notifications immediately as they come in
|
|
*/
|
|
public const IMMEDIATELY = 0;
|
|
|
|
/**
|
|
* Send daily email digests
|
|
*/
|
|
public const DAILY_DIGEST = 1;
|
|
|
|
/**
|
|
* Send weekly email digests
|
|
*/
|
|
public const WEEKLY_DIGEST = 7;
|
|
}
|