welcome on board new 'Sparkle' theme and also welcome on board BNoiZe as theme maintainer (creater of Sparkle theme)

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2013-10-01 15:21:35 +02:00
parent ecdb9ddbdc
commit 38a53e49fd
390 changed files with 7923 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
$header
<article>
<header>
<h2>
<img src="templates/{$theme}/assets/img/icons/autoresponder_big.png" alt="" />&nbsp;
{$lng['menue']['email']['autoresponder']}
</h2>
</header>
<section>
<if ($userinfo['email_autoresponder_used'] < $userinfo['email_autoresponder'] || $userinfo['email_autoresponder'] == '-1') && 15 < $count >
<div class="overviewadd">
<img src="templates/{$theme}/assets/img/icons/autoresponder_add.png" alt="" />&nbsp;
<a href="{$linker->getLink(array('section' => 'autoresponder', 'action' => 'add'))}">{$lng['autoresponder']['autoresponder_add']}</a>
</div>
</if>
<table class="bradiusodd">
<thead>
<tr>
<th>{$lng['emails']['emailaddress']}</th>
<th>{$lng['autoresponder']['active']}</th>
<th>{$lng['autoresponder']['startenddate']}</th>
<th>{$lng['panel']['options']}</th>
</tr>
</thead>
<tbody>
{$autoresponder}
</tbody>
</table>
<if ($userinfo['email_autoresponder_used'] < $userinfo['email_autoresponder'] || $userinfo['email_autoresponder'] == '-1') >
<div class="overviewadd">
<img src="templates/{$theme}/assets/img/icons/autoresponder_add.png" alt="" />&nbsp;
<a href="{$linker->getLink(array('section' => 'autoresponder', 'action' => 'add'))}">{$lng['autoresponder']['autoresponder_add']}</a>
</div>
</if>
</section>
</article>
$footer

View File

@@ -0,0 +1,30 @@
$header
<article>
<header>
<h2>
<img src="templates/{$theme}/assets/img/icons/autoresponder_add_big.png" alt="{$title}" />&nbsp;
{$title}
</h2>
</header>
<section class="fullform bradiusodd">
<form action="{$linker->getLink(array('section' => 'autoresponder'))}" method="post" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;{$title}</legend>
<table class="formtable">
{$autoresponder_add_form}
</table>
<p style="display: none;">
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="action" value="$action" />
<input type="hidden" name="send" value="send" />
</p>
</fieldset>
</form>
</section>
</article>
$footer

View File

@@ -0,0 +1,17 @@
<tr>
<td>{$row['email']}</td>
<td>
<if $row['enabled'] != 0>{$lng['panel']['yes']}</if>
<if $row['enabled'] == 0>{$lng['panel']['no']}</if>
</td>
<td>$activated_date</td>
<td>
<a href="{$linker->getLink(array('section' => 'autoresponder', 'action' => 'edit', 'email' => $row['email']))}" style="text-decoration:none;">
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" />
</a>&nbsp;
<a href="{$linker->getLink(array('section' => 'autoresponder', 'action' => 'delete', 'email' => $row['email']))}" style="text-decoration:none;">
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" />
</a>
</td>
</tr>

View File

@@ -0,0 +1,31 @@
$header
<article>
<header>
<h2>
<img src="templates/{$theme}/assets/img/icons/autoresponder_edit_big.png" alt="{$title}" />&nbsp;
{$title}
</h2>
</header>
<section class="fullform bradiusodd">
<form action="{$linker->getLink(array('section' => 'autoresponder'))}" method="post" enctype="application/x-www-form-urlencoded">
<fieldset>
<legend>Froxlor&nbsp;-&nbsp;{$title}</legend>
<table class="formtable">
{$autoresponder_edit_form}
</table>
<p style="display: none;">
<input type="hidden" name="s" value="$s" />
<input type="hidden" name="page" value="$page" />
<input type="hidden" name="action" value="$action" />
<input type="hidden" name="account" value="$email" />
<input type="hidden" name="send" value="send" />
</p>
</fieldset>
</form>
</section>
</article>
$footer