mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
6f6e10084c
Bug: T121067 Change-Id: I77f466f0b507ffa49a9714ddba95bea8db1d8438
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
|
|
}
|