38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
|
|
//
|
|
// This file contains some global configuration you might wanna do
|
|
//
|
|
|
|
$site_name = "insert-coin"; // what the site will be called
|
|
|
|
|
|
|
|
// vars related to URL shortening
|
|
|
|
$url_aliasize_img = "res/img/mask-big.png";
|
|
$url_aliasize_alt = "A mask, floating in mid-air.";
|
|
$url_aliasize_win_img = "res/img/mask_win-big.png";
|
|
$url_aliasize_win_alt = "A whimsical mask sparkling.";
|
|
$url_aliasize_die_img = "res/img/mask_die-big.png";
|
|
$url_aliasize_die_alt = "A whimsical mask on fire.";
|
|
|
|
$url_aliasize_item = "mask"; // what the alias is affectionately called
|
|
$url_aliasize_dir = "u/"; // where the redirects go
|
|
$url_aliasize_suffix = ".php"; // suffix to redirect links; some web-servers
|
|
// only execute ".php" files, so you might
|
|
// wanna keep ".php" as the suffix
|
|
|
|
|
|
// vars related to file uploading
|
|
|
|
$file_beam_img = "res/img/coin-big.png";
|
|
$file_beam_alt = "A big & yellow coin lying before a coin-slot";
|
|
$file_beam_win_img = "res/img/coin_win-big.png";
|
|
$file_beam_win_alt = "A coin inserted into a coin slot.";
|
|
$file_beam_die_img = "res/img/coin_die-big.png";
|
|
$file_beam_die_alt = "A coin on fire.";
|
|
|
|
$file_beam_item = "coin"; // what the file is affectionately called
|
|
$file_beam_dir = "p/"; // where the files go
|