mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
28 lines
544 B
PHP
28 lines
544 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums;
|
|
|
|
/**
|
|
* Constants for blacklist/whitelist operations.
|
|
* Migrated from Blacklight\Binaries.
|
|
*/
|
|
final class BlacklistConstants
|
|
{
|
|
// Operation type constants
|
|
public const OPTYPE_BLACKLIST = 1;
|
|
|
|
public const OPTYPE_WHITELIST = 2;
|
|
|
|
// Blacklist status constants
|
|
public const BLACKLIST_ENABLED = 1;
|
|
|
|
// Blacklist field constants
|
|
public const BLACKLIST_FIELD_SUBJECT = 1;
|
|
|
|
public const BLACKLIST_FIELD_FROM = 2;
|
|
|
|
public const BLACKLIST_FIELD_MESSAGEID = 3;
|
|
}
|