coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: jlove on October 19, 2007, 01:38:33 AM

Title: Need Help with theme.php and stats area
Post by: jlove on October 19, 2007, 01:38:33 AM
If you look at the attached image, you'll understand.

I want to add text in the stats area on the main page with gallery info from other galleries. Just a generic message like, 1000+ Files at Gallery 2 bellow "12145 files in 210 albums and 76 categories with 2 comments viewed 24782 times"


I've gone through the sample theme's theme.php, but I just can't figure out how to do it.
Title: Re: Need Help with theme.php and stats area
Post by: jlove on October 19, 2007, 01:40:38 AM
Oy, can't edit sorry.


I also searched the forum and went through tons of threads, but nothing.

I want this because I moved a lot of my pictures into 2 other galleries and re-built the first one, so I want to have a little note saying what's what.
Title: Re: Need Help with theme.php and stats area
Post by: jlove on October 22, 2007, 06:45:12 PM
Resolved.




// HTML template for the category list
$template_cat_list = <<<EOT
<!-- BEGIN header -->
        <tr>
                <td class="tableh1" width="80%" align="left"><b>{CATEGORY}</b></td>
                <td class="tableh1" width="10%" align="center"><b>{ALBUMS}</b></td>
                <td class="tableh1" width="10%" align="center"><b>{PICTURES}</b></td>
        </tr>
<!-- END header -->
<!-- BEGIN catrow_noalb -->
        <tr>
                <td class="catrow_noalb" colspan="3"><table border="0"><tr><td align="left">{CAT_THUMB}</td><td align="left"><span class="catlink"><b>{CAT_TITLE}</b></span>{CAT_DESC}</td></tr></table></td>
        </tr>
<!-- END catrow_noalb -->
<!-- BEGIN catrow -->
        <tr>
                <td class="catrow" align="left"><table border="0"><tr><td>{CAT_THUMB}</td><td><span class="catlink"><b>{CAT_TITLE}</b></span>{CAT_DESC}</td></tr></table></td>
                <td class="catrow" align="center">{ALB_COUNT}</td>
                <td class="catrow" align="center">{PIC_COUNT}</td>
        </tr>
        <tr>
            <td class="tableb" colspan="3">{CAT_ALBUMS}</td>
        </tr>
<!-- END catrow -->
<!-- BEGIN footer -->
        <tr>
                <td colspan="3" class="tableh1" align="center"><span class="statlink">{STATISTICS}</span></td>
        </tr>
<!-- END footer -->
<!-- BEGIN spacer -->
        <img src="images/spacer.gif" width="1" height="7" border="" alt="" /><br />
<!-- END spacer -->

EOT;