- 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>
53 lines
1.5 KiB
Smarty
53 lines
1.5 KiB
Smarty
{*
|
|
Template to display config options used by setup.tpl and profile.tpl
|
|
$Id: options.tpl,v 1.6 2006/11/11 15:53:44 andig2 Exp $
|
|
*}
|
|
|
|
{foreach from=$setup item=option}
|
|
<tr class="{cycle values="even,odd"}">
|
|
{if !empty($option.group)}
|
|
<td class="center" colspan="2">
|
|
<h3><a name="{$option.group}"></a>{$lang[$option.group]}</h3>
|
|
</td>
|
|
{else}
|
|
<td class="center" nowrap="nowrap">
|
|
<b>{$option.hl}</b>
|
|
<br/>
|
|
|
|
{if $option.type == 'text'}
|
|
<input type="text" size="20" name="{$option.name}" id="{$option.name}" value="{$option.set|escape}" style="text-align:center"/>
|
|
{/if}
|
|
|
|
{if $option.type == 'boolean'}
|
|
{html_checkbox name=$option.name id=$option.name value=1 checked=$option.set}
|
|
{/if}
|
|
|
|
{if $option.type == 'dropdown'}
|
|
{html_options name=$option.name options=$option.data selected=$option.set}
|
|
{/if}
|
|
|
|
{if $option.type == 'multi'}
|
|
<select name="{$option.name}[]" size="5" multiple="multiple">
|
|
<option value=""></option>
|
|
{html_options options=$option.data selected=$option.set}
|
|
</select>
|
|
{/if}
|
|
|
|
{if $option.type == 'special'}
|
|
{$option.data}
|
|
{/if}
|
|
|
|
{if $option.type == 'link'}
|
|
<a href="{$option.data}">{$option.hl}</a>
|
|
{/if}
|
|
</td>
|
|
<td>
|
|
{$option.help}
|
|
|
|
{if !empty($option.thumbs)}
|
|
{include file="options_thumbs.tpl"}
|
|
{/if} </td>
|
|
{/if}
|
|
</tr>
|
|
{/foreach}
|