2023-03-22 23:10:33 +01:00
|
|
|
<?php
|
|
|
|
|
2023-03-23 11:15:05 +01:00
|
|
|
// 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';
|
|
|
|
|
2023-03-23 18:05:57 +01:00
|
|
|
// Themes can be found in the themes directory
|
|
|
|
$theme = "gideonstar";
|
|
|
|
|
2023-03-23 11:15:05 +01:00
|
|
|
// Writeable directory for images. Will be created if it does not exist.
|
2023-03-22 23:10:33 +01:00
|
|
|
$datadir = "i";
|
|
|
|
|
2023-03-23 11:15:05 +01:00
|
|
|
// 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
|
|
|
?>
|