mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
2afb728a10
Bug: T253169 Change-Id: I506e43629a30ef34c9154b8212878255de7d90b9
9 lines
305 B
PHP
9 lines
305 B
PHP
<?php
|
|
|
|
class EchoEmailFrequency {
|
|
public const NEVER = -1; // Never send email notifications
|
|
public const IMMEDIATELY = 0; // Send email notifications immediately as they come in
|
|
public const DAILY_DIGEST = 1; // Send daily email digests
|
|
public const WEEKLY_DIGEST = 7; // Send weekly email digests
|
|
}
|