
Please visit his website http://www.aadmm.org/fp-patch/ and read patch-description.txt to learn more about the details of the patch. I adapted the patch slighty: It now does not just add a __construct() function to the existing class-named one, instead it replaces it completely. Therefore, some parent::__construct() calls had to be changed, too.
113 lines
3.1 KiB
Smarty
113 lines
3.1 KiB
Smarty
<link rel="stylesheet" type="text/css" href="{$mmurl}res/style.css" />
|
|
<h2>{$plang.head}</h2>
|
|
<p>{$plang.description}</p>
|
|
{include file=shared:errorlist.tpl}
|
|
|
|
{html_form class=option-set}
|
|
{$plang.page}: {$paginator.current} / {$paginator.total}</br>
|
|
{if $currentgallery!=""}<h3>gallery '{$currentgallery}'</h3>{/if}
|
|
<table class="entrylist">
|
|
<thead>
|
|
<colgroup><col/><col width="50%"/><col/><col/><col/></colgroup>
|
|
<tr>
|
|
<th> </th>
|
|
<th>{$plang.colname}</th>
|
|
<th>{$plang.colusecount}</th>
|
|
<th>{$plang.colsize}</th>
|
|
<th>{$plang.colmtime}</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{if $currentgallery!=""}
|
|
<tr><td> </td>
|
|
<td class="main-cell type-gallery" colspan="5">
|
|
<a class="link-general" href="admin.php?p=uploader&action=mediamanager">{$plang.up}</a>
|
|
</td>
|
|
</tr>
|
|
{else}
|
|
{foreach from=$galleries item=v}
|
|
<tr>
|
|
<td>
|
|
|
|
</td>
|
|
<td class="main-cell type-{$v.type}">
|
|
<a class="link-general" href="admin.php?p=uploader&action=mediamanager&gallery={$v.name}">{$v.name}</a>
|
|
</td>
|
|
<td>{if $v.usecount>0}
|
|
<a class="link-general" href="search.php?q=images%2F{$v.name}&stype=full&Date_Day=&Date_Month=&Date_Year=&submit=Search">{$v.usecount}</a>
|
|
{else}
|
|
0
|
|
{/if}
|
|
</td>
|
|
<td>{$v.size}</td>
|
|
<td>{$v.mtime}</td>
|
|
<td>
|
|
<a class="link-delete" href="{$mmbaseurl}&deletefile={$v.type}-{$v.name}">{$plang.delete}</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
{/if}
|
|
{if $totalfilescount=="0" }
|
|
<tr><td colspan="6"><br>{$plang.nofiles} <a class="link-general" href="admin.php?p=uploader&action=default">{$plang.loadfile}</a><br><br></td></tr>
|
|
{else}
|
|
{foreach from=$files item=v}
|
|
<tr>
|
|
<td>
|
|
{if $v.type=='images'}
|
|
<input type='checkbox' name='file[{$v.type}-{$v.name}]'>
|
|
{else}
|
|
|
|
{/if}
|
|
</td>
|
|
<td class="main-cell type-{$v.type}"><a class="link-general" {if $v.type=='images'}rel="lightbox[mm]"{/if} href="{$v.url}">{$v.name}</a></td>
|
|
<td>{if $v.usecount>0}
|
|
<a class="link-general" href="search.php?q={$v.type}%2F{$v.name}&stype=full&Date_Day=&Date_Month=&Date_Year=&submit=Search">{$v.usecount}</a>
|
|
{else}
|
|
0
|
|
{/if}
|
|
</td>
|
|
<td>{$v.size}</td>
|
|
<td>{$v.mtime}</td>
|
|
<td>
|
|
<a class="link-delete" href="{$mmbaseurl}&deletefile={$v.type}-{$v.name}">{$plang.delete}</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
{/if}
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- paginator -->
|
|
<p class="paginator">
|
|
{foreach name=pagelist from=$paginator.pages item=page}
|
|
{if $paginator.current==$page}
|
|
{$page}
|
|
{else}
|
|
<a href="{$mmbaseurl}&page={$page}">{$page}</a>
|
|
{/if}
|
|
{if $smarty.foreach.pagelist.last==false} - {/if}
|
|
{/foreach}
|
|
</p>
|
|
|
|
|
|
<p>
|
|
{$plang.selected}:
|
|
<select name='action'>
|
|
<option value='-'>{$plang.selectaction}</option>
|
|
<{foreach from=$dwgalleries item=v}
|
|
<option value='atg-{$v.name}'>{$plang.addtogallery} '{$v.name}'</option>
|
|
{/foreach}
|
|
</select>
|
|
<input type="submit" name="mm-addto" value="{$plang.go}"/>
|
|
</p>
|
|
<p>
|
|
<label>{$plang.newgallery}:
|
|
<input type="text" name="mm-newgallery-name" />
|
|
</label>
|
|
<input type="submit" name="mm-newgallery" value="{$plang.add}"/>
|
|
</p>
|
|
|
|
{/html_form}
|
|
|