forked from coppermine-gallery/cpg1.6.x
-
Notifications
You must be signed in to change notification settings - Fork 1
/
anycontent.php
41 lines (32 loc) · 1.21 KB
/
anycontent.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
<?php
/*************************
Coppermine Photo Gallery
************************
Copyright (c) 2003-2016 Coppermine Dev Team
v1.0 originally written by Gregory Demar
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 3
as published by the Free Software Foundation.
********************************************
Coppermine version: 1.6.01
$HeadURL$
**********************************************/
/**
* This file gets included in index.php if you set the option on the configuration panel: "content of the main page".
* It can be used to display any content from any program, it is to be edited according to one's tastes.
*/
if (!defined('IN_COPPERMINE')) {
die('Not in Coppermine...');
}
starttable("100%", $lang_index_php['welcome']);
echo <<<EOT
<tr>
<td class="tableb">
Here is text in the "anycontent" block.<br />
Edit the file "anycontent.php" in your Coppermine folder to change what is shown here.<br />
To show this block on your gallery, go to the configuration panel under "Album List View", then "content of the main page".
</td>
</tr>
EOT;
endtable();
//EOF