25 lines
493 B
PHP
25 lines
493 B
PHP
<?php
|
|
|
|
// Title
|
|
$title = "imgpaste by gideonstar";
|
|
|
|
// Dropzone text
|
|
$text = "Click or drop image here...";
|
|
|
|
// 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.
|
|
$datadir = "i";
|
|
|
|
// Length of the generated file names
|
|
$length = 8;
|
|
|
|
// Image lifetime in seconds
|
|
$lifetime = 3600;
|
|
|
|
?>
|