imgpaste/config.dist.php

25 lines
493 B
PHP
Raw Permalink Normal View History

2023-03-22 23:10:33 +01:00
<?php
// Title
2023-03-22 23:10:33 +01:00
$title = "imgpaste by gideonstar";
2023-03-25 12:15:07 +01:00
// Dropzone text
2023-03-23 00:35:35 +01:00
$text = "Click or drop image here...";
2023-03-22 23:10:33 +01:00
2023-03-25 12:15:07 +01:00
// Footer text
$footer = '<a href="https://git.stefanritter.de/gideonstar/imgpaste.git">imgpaste</a> by gideonstar';
// Themes can be found in the themes directory
$theme = "gideonstar";
// Writeable directory for images. Will be created if it does not exist.
2023-03-22 23:10:33 +01:00
$datadir = "i";
// Length of the generated file names
2023-03-23 07:41:12 +01:00
$length = 8;
2023-03-22 23:10:33 +01:00
2023-03-23 13:41:28 +01:00
// Image lifetime in seconds
$lifetime = 3600;
2023-03-22 23:10:33 +01:00
?>