File: /home/freeval/public_html/e-cards/anycontent.php
<?php
/*************************
Coppermine Photo Gallery
************************
Copyright (c) 2003-2010 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.4.27
$HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.4.x/anycontent.php $
$Revision: 7334 $
$Author: gaugau $
$Date: 2010-03-23 08:09:04 +0100 (Di, 23. Mär 2010) $
**********************************************/
/**
* Coppermine Photo Gallery 1.4.20 anycontent.php
*
* 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%", "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();
?>