This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/upload/config.php
2023-03-22 21:46:15 +01:00

16 lines
443 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class UploadConfig
{
public const COUNT = "upload_count";
public const SIZE = "upload_size";
public const MIN_FREE_SPACE = "upload_min_free_space";
public const TLSOURCE = "upload_tlsource";
public const TRANSLOAD_ENGINE = "transload_engine";
public const MIME_CHECK_ENABLED = "mime_check_enabled";
public const ALLOWED_MIME_STRINGS = "allowed_mime_strings";
}