- 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>
30 lines
667 B
Smarty
30 lines
667 B
Smarty
{*
|
|
Setup template
|
|
$Id: setup.tpl,v 1.4 2013/03/16 10:10:07 andig2 Exp $
|
|
*}
|
|
|
|
<!-- {$smarty.template} -->
|
|
|
|
<form action="setup.php" method="post">
|
|
<input type="hidden" name="save" value="1" />
|
|
|
|
<div class="row header">
|
|
<div class="small-12 columns">
|
|
<ul class="button-group right">
|
|
<a class="button small" href="setup.php?cacheempty=1">{$lang.cacheempty}</a>
|
|
<a class="button small submit" href="#">{$lang.save}</a>
|
|
</ul><!-- nav-bar -->
|
|
</div><!-- button-bar -->
|
|
</div>
|
|
|
|
|
|
{if $cacheclear}
|
|
<div class="alert-box sticky">
|
|
{$lang.msg_cachecleared}
|
|
<a href="#" class="close">×</a>
|
|
</div>
|
|
{/if}
|
|
|
|
{include file="options.tpl"}
|
|
</form>
|