-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimages.php
54 lines (52 loc) · 2.08 KB
/
images.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
//=========================================================================
// IMAGE CONFIGURATIONS FOR FORUM-SIGNATURE
//=========================================================================
//-------------------------------------------------------------------------
// List of Allowed MINE Types
//-------------------------------------------------------------------------
// You can add or remove any of the MINE types down below, but we suggest
// you to only add "image/*" types as the response should contain images
// only.
//-------------------------------------------------------------------------
$_MIME = array(
"IMAGE" => array(
"image/bmp",
"image/gif",
"image/jpeg",
"image/png",
"image/webp"
)
);
//-------------------------------------------------------------------------
// List of Available Images
//-------------------------------------------------------------------------
// Modify the list below to add more images. Each image should include a
// local path, a short name, and a redirect URL.
//
// NOTE: The short name of the images MUST BE unique, otherwise will only
// redirect using the URL within the topmost entry with that short name.
//-------------------------------------------------------------------------
$_IMAGES = array(
array(
"IMAGE_PATH" => "images/dynamic.png",
"SHORT_NAME" => "dynamic",
"FORWARD_URL" => "https://www.google.com/"
),
array(
"IMAGE_PATH" => "images/testing.png",
"SHORT_NAME" => "testing",
"FORWARD_URL" => "https://github.com/"
),
array(
"IMAGE_PATH" => "images/imjasonhk.png",
"SHORT_NAME" => "imjasonhk",
"FORWARD_URL" => "https://en.wikipedia.org/"
),
array(
"IMAGE_PATH" => "images/pokemon.png",
"SHORT_NAME" => "pokemon",
"FORWARD_URL" => "https://duckduckgo.com/"
),
);
?>