- Add videodb PHP/MySQL media collection manager (Blu-ray, DVD, CD) - Dockerfile: PHP 8.1 + Apache with GD/mysqli/exif extensions - docker-compose.yml: app on port 6761 + MySQL 8.0 with health checks - docker-entrypoint.sh: auto-generates config.inc.php from env vars, waits for MySQL, initializes DB schema idempotently - init-db.php: CLI schema installer using app's own prefix_query() logic - Persistent volumes for DB, cache, and cover images Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
41 lines
1.5 KiB
Smarty
41 lines
1.5 KiB
Smarty
{*
|
|
This is the footer which is displayed on bottom of every page
|
|
$Id: footer.tpl,v 2.25 2008/10/19 10:45:28 andig2 Exp $
|
|
*}
|
|
|
|
{$DEBUG}
|
|
|
|
<table class="tablefooter">
|
|
<tr>
|
|
<td><a href="#top"><img src="images/top.gif" alt=""/></a></td>
|
|
<td style="text-align:center" nowrap="nowrap">
|
|
<span class="version">
|
|
{if !empty($pageno) && !empty($maxpageno)}
|
|
{if $pageno != 1}<a href="?pageno={$pageno-1}">«</a>{/if}
|
|
Page {$pageno} of {$maxpageno}
|
|
{if $pageno != $maxpageno}<a href="?pageno={$pageno+1}">»</a>{/if}
|
|
|
|
{/if}
|
|
{if !empty($totalresults)}<span id="count">{$totalresults}</span> {$lang.records}.{/if}
|
|
</span>
|
|
</td>
|
|
|
|
<td align="right" style="text-align:right" nowrap="nowrap">
|
|
{if !empty($pdf)}
|
|
<a href="{$pdf}export=pdf&ext=.pdf"><img src="images/pdfexport.png" style="float:right;margin-left:3px;"/></a>
|
|
{/if}
|
|
{if !empty($xls)}
|
|
<a href="{$xls}export=xls&ext=.xls"><img src="images/xlsexport.png" style="float:right;margin-left:3px;"/></a>
|
|
{/if}
|
|
{if !empty($xml)}
|
|
<a href="{$xml}export=xml" target="_blank"><img src="images/xmlexport.png" style="float:right;margin-left:3px;"/></a>
|
|
{/if}
|
|
{if !empty($rss)}
|
|
<a href="{$rss}export=rss" target="_blank"><img src="images/rssexport.png" style="float:right;margin-left:3px;"/></a>
|
|
{/if}
|
|
<a href="https://github.com/andig/videodb.git" class="splitbrain">v.{$version|strip}</a>{if !empty($loggedin)}<span class="version">, {$lang.loggedinas} {$loggedin}</span>{/if}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |