14b9ca6686
* Theme Funktionalität hinzugefügt * style.css und sora.ttf in eigenes Theme verschoben
22 lines
375 B
PHP
22 lines
375 B
PHP
<?php
|
|
|
|
// Title
|
|
$title = "imgpaste by gideonstar";
|
|
|
|
// Displayed text
|
|
$text = "Click or drop image here...";
|
|
|
|
// 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;
|
|
|
|
?>
|