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

17 lines
443 B
PHP
Raw Normal View History

<?php
2023-01-10 21:21:26 +00:00
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";
2023-03-22 20:08:23 +00:00
public const MIME_CHECK_ENABLED = "mime_check_enabled";
public const ALLOWED_MIME_STRINGS = "allowed_mime_strings";
}