mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
9 lines
277 B
PHP
9 lines
277 B
PHP
|
<?php
|
||
|
|
||
|
class EchoEmailFrequency {
|
||
|
const NEVER = -1; // Never send email notifications
|
||
|
const IMMEDIATELY = 0; // Send email notifications immediately as they come in
|
||
|
const DAILY_DIGEST = 1; // Send daily email digests
|
||
|
const WEEKLY_DIGEST = 7; // Send weekly email digests
|
||
|
}
|