mediawiki-extensions-Echo/includes/EmailFrequency.php
Stephane Bisson 6f6e10084c HTML email formatter using presentation model
Bug: T121067
Change-Id: I77f466f0b507ffa49a9714ddba95bea8db1d8438
2016-05-12 09:29:24 -04:00

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
}