Maketank theme
This commit is contained in:
28
templates/Maketank/customer/domains/domain_ssleditor.tpl
Normal file
28
templates/Maketank/customer/domains/domain_ssleditor.tpl
Normal file
@@ -0,0 +1,28 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/lock_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'domains'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<if $do_insert == 1>
|
||||
<input type="hidden" name="do_insert" value="1" />
|
||||
</if>
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$ssleditor_form}
|
||||
</table>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
59
templates/Maketank/customer/domains/domainlist.tpl
Normal file
59
templates/Maketank/customer/domains/domainlist.tpl
Normal file
@@ -0,0 +1,59 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/domains_big.png" alt="" />
|
||||
{$lng['domains']['domainsettings']} ({$domains_count})
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'domains'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<if ($userinfo['subdomains_used'] < $userinfo['subdomains'] || $userinfo['subdomains'] == '-1') && $parentdomains_count != 0 >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domains', 'action' => 'add'))}">{$lng['domains']['subdomain_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['domains']['domainname']} {$arrowcode['d.domain']}</th>
|
||||
<th>{$lng['panel']['path']}</th>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="3">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$domains}
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<if ($userinfo['subdomains_used'] < $userinfo['subdomains'] || $userinfo['subdomains'] == '-1') && 15 < $domains_count && $parentdomains_count != 0 >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domains', 'action' => 'add'))}">{$lng['domains']['subdomain_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
8
templates/Maketank/customer/domains/domains.tpl
Normal file
8
templates/Maketank/customer/domains/domains.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="neutralcontainer bradius">
|
||||
<div class="neutraltitle">{$lng['menue']['domains']['domains']}</div>
|
||||
<div class="neutral">{$lng['domains']['description']}</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
24
templates/Maketank/customer/domains/domains_add.tpl
Normal file
24
templates/Maketank/customer/domains/domains_add.tpl
Normal file
@@ -0,0 +1,24 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/domain_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'domains'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$subdomain_add_form}
|
||||
</table>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
@@ -0,0 +1,5 @@
|
||||
<tr>
|
||||
<td><strong>{$row['domain']}</strong> [<a href="http://{$row['domain']}/{$statsapp}" rel="external">{$lng['domains']['statstics']}</a>]</td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
48
templates/Maketank/customer/domains/domains_domain.tpl
Normal file
48
templates/Maketank/customer/domains/domains_domain.tpl
Normal file
@@ -0,0 +1,48 @@
|
||||
<if $row['termination_date'] != ''>
|
||||
<tr class="{$row['termination_css']}">
|
||||
</if>
|
||||
<if $row['termination_date'] == ''>
|
||||
<tr>
|
||||
</if>
|
||||
<td>
|
||||
<a href="http://{$row['domain']}" target="_blank">{$row['domain']}</a>
|
||||
<if $row['termination_date'] != ''>
|
||||
<br><small><div class="red">({$lng['domains']['termination_date_overview']} {$row['termination_date']})</div></small>
|
||||
</if>
|
||||
</td>
|
||||
<td>
|
||||
<if $row['aliasdomain'] == ''>{$row['documentroot']}</if>
|
||||
<if isset($row['aliasdomainid']) && $row['aliasdomainid'] != 0>{$lng['domains']['aliasdomain']} {$row['aliasdomain']}</if>
|
||||
</td>
|
||||
<td>
|
||||
<if $row['caneditdomain'] == '1'>
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domains', 'action' => 'edit', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
||||
</a>
|
||||
</if>
|
||||
<if $row['parentdomainid'] != '0' && !(isset($row['domainaliasid']) && $row['domainaliasid'] != 0)>
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domains', 'action' => 'delete', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||
</a>
|
||||
</if>
|
||||
<if $row['isbinddomain'] == '1' && $userinfo['dnsenabled'] == '1' && $row['caneditdomain'] == '1' && Settings::Get('system.bind_enable') == '1' && Settings::Get('system.dnsenabled') == '1'>
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domaindnseditor', 'domain_id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/dns_edit.png" alt="{$lng['dnseditor']['edit']}" title="{$lng['dnseditor']['edit']}" />
|
||||
</a>
|
||||
</if>
|
||||
<if $show_ssledit == 1>
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domainssleditor', 'action' => 'view', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/ssl_<if $row['domain_hascert'] == 1>customer</if><if $row['domain_hascert'] == 2>shared</if><if $row['domain_hascert'] == 0>global</if>.png" alt="{$lng['panel']['ssleditor']}" title="{$lng['panel']['ssleditor']}" />
|
||||
</a>
|
||||
</if>
|
||||
<if $row['letsencrypt'] == '1'>
|
||||
<img src="templates/{$theme}/assets/img/icons/ssl_letsencrypt.png" alt="{$lng['panel']['letsencrypt']}" title="{$lng['panel']['letsencrypt']}" />
|
||||
</if>
|
||||
<if $row['parentdomainid'] == '0' && !(isset($row['domainaliasid']) && $row['domainaliasid'] != 0)>
|
||||
({$lng['domains']['isassigneddomain']})
|
||||
</if>
|
||||
<if isset($row['domainaliasid']) && $row['domainaliasid'] != 0>
|
||||
<a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domains', 'searchfield' => 'd.aliasdomain', 'searchtext' => $row['id']))}">{$lng['domains']['hasaliasdomains']}</a>
|
||||
</if>
|
||||
</td>
|
||||
</tr>
|
||||
28
templates/Maketank/customer/domains/domains_edit.tpl
Normal file
28
templates/Maketank/customer/domains/domains_edit.tpl
Normal file
@@ -0,0 +1,28 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/domain_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
<if $result['isbinddomain'] == '1' && $userinfo['dnsenabled'] == '1' && Settings::Get('system.bind_enable') == '1' && Settings::Get('system.dnsenabled') == '1'>
|
||||
(<small><a href="{$linker->getLink(array('section' => 'domains', 'page' => 'domaindnseditor', 'domain_id' => $id))}">{$lng['dnseditor']['edit']}</a></small>)
|
||||
</if>
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'domains'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$subdomain_edit_form}
|
||||
</table>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
26
templates/Maketank/customer/email/account_add.tpl
Normal file
26
templates/Maketank/customer/email/account_add.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/email_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$account_add_form}
|
||||
</table>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
26
templates/Maketank/customer/email/account_changepw.tpl
Normal file
26
templates/Maketank/customer/email/account_changepw.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/email_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$account_changepw_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
26
templates/Maketank/customer/email/account_changequota.tpl
Normal file
26
templates/Maketank/customer/email/account_changequota.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/email_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$quota_edit_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
8
templates/Maketank/customer/email/email.tpl
Normal file
8
templates/Maketank/customer/email/email.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="neutralcontainer bradius">
|
||||
<div class="neutraltitle">{$lng['menue']['email']['email']}</div>
|
||||
<div class="neutral">{$lng['emails']['description']}</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
65
templates/Maketank/customer/email/emails.tpl
Normal file
65
templates/Maketank/customer/email/emails.tpl
Normal file
@@ -0,0 +1,65 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/emails_big.png" alt="" />
|
||||
{$lng['menue']['email']['emails']} ({$emailscount})
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
|
||||
<if ($userinfo['emails_used'] < $userinfo['emails'] || $userinfo['emails'] == '-1') && $emaildomains_count !=0 >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'email', 'page' => $page, 'action' => 'add'))}">{$lng['emails']['emails_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['emails']['emailaddress']} {$arrowcode['m.email_full']}</th>
|
||||
<th>{$lng['emails']['forwarders']} {$arrowcode['m.destination']}</th>
|
||||
<th>{$lng['emails']['account']}</th>
|
||||
<if Settings::Get('catchall.catchall_enabled') == '1'><th>{$lng['emails']['catchall']}</th></if>
|
||||
<if Settings::Get('system.mail_quota_enabled') == '1'>
|
||||
<th>{$lng['emails']['quota']}</th>
|
||||
</if>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="6">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$accounts}
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<if ($userinfo['emails_used'] < $userinfo['emails'] || $userinfo['emails'] == '-1') && 15 < $emails_count && $emaildomains_count !=0 >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'email', 'page' => $page, 'action' => 'add'))}">{$lng['emails']['emails_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
34
templates/Maketank/customer/email/emails_add.tpl
Normal file
34
templates/Maketank/customer/email/emails_add.tpl
Normal file
@@ -0,0 +1,34 @@
|
||||
$header
|
||||
<article>
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/email_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<if $domains == ''>
|
||||
<div class="messagewrapperfull">
|
||||
<div class="warningcontainer bradius">
|
||||
<div class="warningtitle">{$lng['admin']['warning']}</div>
|
||||
<div class="warning"><br /><strong>{$lng['emails']['noemaildomainaddedyet']}</strong></div>
|
||||
</div>
|
||||
</div>
|
||||
<else>
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$email_add_form}
|
||||
</table>
|
||||
</form>
|
||||
</section>
|
||||
</if>
|
||||
</article>
|
||||
$footer
|
||||
3
templates/Maketank/customer/email/emails_domain.tpl
Normal file
3
templates/Maketank/customer/email/emails_domain.tpl
Normal file
@@ -0,0 +1,3 @@
|
||||
<tr>
|
||||
<td colspan="7"><b>{$domainname}</b></td>
|
||||
</tr>
|
||||
28
templates/Maketank/customer/email/emails_edit.tpl
Normal file
28
templates/Maketank/customer/email/emails_edit.tpl
Normal file
@@ -0,0 +1,28 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/email_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<table class="full">
|
||||
<thead>
|
||||
<tr><th colspan="2"></th></tr>
|
||||
</thead>
|
||||
{$email_edit_form}
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2"><a href="{$linker->getLink(array('section' => 'email', 'page' => 'emails'))}">{$lng['emails']['back_to_overview']}</a></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
@@ -0,0 +1,2 @@
|
||||
$destination [<a href="{$linker->getLink(array('section' => 'email', 'page' => 'forwarders', 'action' => 'delete', 'id' => $id, 'forwarderid' => $dest_id))}">{$lng['panel']['delete']}</a>]
|
||||
<br />
|
||||
15
templates/Maketank/customer/email/emails_email.tpl
Normal file
15
templates/Maketank/customer/email/emails_email.tpl
Normal file
@@ -0,0 +1,15 @@
|
||||
<tr>
|
||||
<td>{$row['email_full']}</td>
|
||||
<td><if $row['destination'] == ''> <else>{$row['destination']}</if></td>
|
||||
<td><if $row['popaccountid'] != 0>{$lng['panel']['yes']} ({$row['mboxsize']})</if><if $row['popaccountid'] == 0>{$lng['panel']['no']}</if></td>
|
||||
<if Settings::Get('catchall.catchall_enabled') == '1'><td><if $row['iscatchall'] != 0>{$lng['panel']['yes']}</if><if $row['iscatchall'] == 0>{$lng['panel']['no']}</if></td></if>
|
||||
<if Settings::Get('system.mail_quota_enabled') == '1'><td><if $row['quota'] == 0>{$lng['emails']['noquota']}<else>{$row['quota']} MiB</if></if></td>
|
||||
<td>
|
||||
<a href="{$linker->getLink(array('section' => 'email', 'page' => $page, 'action' => 'edit', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
||||
</a>
|
||||
<a href="{$linker->getLink(array('section' => 'email', 'page' => $page, 'action' => 'delete', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
26
templates/Maketank/customer/email/forwarder_add.tpl
Normal file
26
templates/Maketank/customer/email/forwarder_add.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/email_forwarder_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'email'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$forwarder_add_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
35
templates/Maketank/customer/extras/backup.tpl
Normal file
35
templates/Maketank/customer/extras/backup.tpl
Normal file
@@ -0,0 +1,35 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/backup_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<if !empty($existing_backupJob)>
|
||||
<div class="messagewrapperfull">
|
||||
<div class="warningcontainer bradius">
|
||||
<div class="warningtitle">{$lng['admin']['warning']}</div>
|
||||
<div class="warning">{$lng['error']['customerhasongoingbackupjob']}</div>
|
||||
</div>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$backup_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
26
templates/Maketank/customer/extras/backup_listexisting.tpl
Normal file
26
templates/Maketank/customer/extras/backup_listexisting.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['panel']['path']}</th>
|
||||
<th>{$lng['extras']['backup_web']}</th>
|
||||
<th>{$lng['extras']['backup_mail']}</th>
|
||||
<th>{$lng['extras']['backup_dbs']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{$row['path']}</td>
|
||||
<td>{$row['backup_web']}</td>
|
||||
<td>{$row['backup_mail']}</td>
|
||||
<td>{$row['backup_dbs']}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<p>
|
||||
<input type="hidden" name="backup_job_entry" value="{$existing_backupJob['id']}" />
|
||||
<input type="submit" value="{$lng['panel']['abort']}" class="nobutton" />
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
8
templates/Maketank/customer/extras/extras.tpl
Normal file
8
templates/Maketank/customer/extras/extras.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="neutralcontainer bradius">
|
||||
<div class="neutraltitle">{$lng['menue']['extras']['extras']}</div>
|
||||
<div class="neutral">{$lng['extras']['description']}</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
63
templates/Maketank/customer/extras/htaccess.tpl
Normal file
63
templates/Maketank/customer/extras/htaccess.tpl
Normal file
@@ -0,0 +1,63 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/htaccess_big.png" alt="" />
|
||||
{$lng['menue']['extras']['pathoptions']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htaccess', 'action' => 'add'))}">{$lng['extras']['pathoptions_add']}</a>
|
||||
</div>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['panel']['path']} {$arrowcode['path']}</th>
|
||||
<th>{$lng['extras']['view_directory']} {$arrowcode['options_indexes']}</th>
|
||||
<th>{$lng['extras']['error404path']} {$arrowcode['error404path']}</th>
|
||||
<th>{$lng['extras']['error403path']} {$arrowcode['error403path']}</th>
|
||||
<th>{$lng['extras']['error500path']} {$arrowcode['error500path']}</th>
|
||||
<if $cperlenabled == 1 >
|
||||
<th>{$lng['extras']['execute_perl']} {$arrowcode['options_cgi']}</th>
|
||||
</if>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="7">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$htaccess}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<if 15 < $count >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htaccess', 'action' => 'add'))}">{$lng['extras']['pathoptions_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
26
templates/Maketank/customer/extras/htaccess_add.tpl
Normal file
26
templates/Maketank/customer/extras/htaccess_add.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/htaccess_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$htaccess_add_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
27
templates/Maketank/customer/extras/htaccess_edit.tpl
Normal file
27
templates/Maketank/customer/extras/htaccess_edit.tpl
Normal file
@@ -0,0 +1,27 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/htaccess_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$htaccess_edit_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
18
templates/Maketank/customer/extras/htaccess_htaccess.tpl
Normal file
18
templates/Maketank/customer/extras/htaccess_htaccess.tpl
Normal file
@@ -0,0 +1,18 @@
|
||||
<tr>
|
||||
<td>{$row['path']}</td>
|
||||
<td>{$row['options_indexes']}</td>
|
||||
<td>{$row['error404path']}</td>
|
||||
<td>{$row['error403path']}</td>
|
||||
<td>{$row['error500path']}</td>
|
||||
<if $cperlenabled == 1 >
|
||||
<td>{$row['options_cgi']}</td>
|
||||
</if>
|
||||
<td>
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htaccess', 'action' => 'edit', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
||||
</a>
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htaccess', 'action' => 'delete', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
59
templates/Maketank/customer/extras/htpasswds.tpl
Normal file
59
templates/Maketank/customer/extras/htpasswds.tpl
Normal file
@@ -0,0 +1,59 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/htpasswd_big.png" alt="" />
|
||||
{$lng['menue']['extras']['directoryprotection']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htpasswds', 'action' => 'add'))}">{$lng['extras']['directoryprotection_add']}</a>
|
||||
</div>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['login']['username']} {$arrowcode['username']}</th>
|
||||
<th>{$lng['panel']['path']} {$arrowcode['path']}</th>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="3">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$htpasswds}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<if 15 < $count >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htpasswds', 'action' => 'add'))}">{$lng['extras']['directoryprotection_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
26
templates/Maketank/customer/extras/htpasswds_add.tpl
Normal file
26
templates/Maketank/customer/extras/htpasswds_add.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/htpasswd_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$htpasswd_add_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
27
templates/Maketank/customer/extras/htpasswds_edit.tpl
Normal file
27
templates/Maketank/customer/extras/htpasswds_edit.tpl
Normal file
@@ -0,0 +1,27 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/htpasswd_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'extras'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$htpasswd_edit_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
12
templates/Maketank/customer/extras/htpasswds_htpasswd.tpl
Normal file
12
templates/Maketank/customer/extras/htpasswds_htpasswd.tpl
Normal file
@@ -0,0 +1,12 @@
|
||||
<tr>
|
||||
<td>{$row['username']}</td>
|
||||
<td>{$row['path']}</td>
|
||||
<td>
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htpasswds', 'action' => 'edit', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
||||
</a>
|
||||
<a href="{$linker->getLink(array('section' => 'extras', 'page' => 'htpasswds', 'action' => 'delete', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
61
templates/Maketank/customer/ftp/accounts.tpl
Normal file
61
templates/Maketank/customer/ftp/accounts.tpl
Normal file
@@ -0,0 +1,61 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/group_edit_big.png" alt="" />
|
||||
{$lng['menue']['ftp']['accounts']} ({$ftps_count})
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'ftp'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<if ($userinfo['ftps_used'] < $userinfo['ftps'] || $userinfo['ftps'] == '-1') >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'ftp', 'page' => 'accounts', 'action' => 'add'))}">{$lng['ftp']['account_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['login']['username']} {$arrowcode['username']}</th>
|
||||
<th>{$lng['panel']['ftpdesc']} {$arrowcode['description']}</th>
|
||||
<th>{$lng['panel']['path']} {$arrowcode['homedir']}</th>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="3">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$accounts}
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<if ($userinfo['ftps_used'] < $userinfo['ftps'] || $userinfo['ftps'] == '-1') && 15 < $ftps_count >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'ftp', 'page' => 'accounts', 'action' => 'add'))}">{$lng['ftp']['account_add']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
13
templates/Maketank/customer/ftp/accounts_account.tpl
Normal file
13
templates/Maketank/customer/ftp/accounts_account.tpl
Normal file
@@ -0,0 +1,13 @@
|
||||
<tr>
|
||||
<td>{$row['username']}</td>
|
||||
<td>{$row['description']}</td>
|
||||
<td>{$row['documentroot']}</td>
|
||||
<td>
|
||||
<a href="{$linker->getLink(array('section' => 'ftp', 'page' => 'accounts', 'action' => 'edit', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
||||
</a>
|
||||
<a href="{$linker->getLink(array('section' => 'ftp', 'page' => 'accounts', 'action' => 'delete', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
25
templates/Maketank/customer/ftp/accounts_add.tpl
Normal file
25
templates/Maketank/customer/ftp/accounts_add.tpl
Normal file
@@ -0,0 +1,25 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/user_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'ftp'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$ftp_add_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
26
templates/Maketank/customer/ftp/accounts_edit.tpl
Normal file
26
templates/Maketank/customer/ftp/accounts_edit.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/user_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'ftp'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
<input type="hidden" name="id" value="$id" />
|
||||
|
||||
<table class="full">
|
||||
{$ftp_edit_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
8
templates/Maketank/customer/ftp/ftp.tpl
Normal file
8
templates/Maketank/customer/ftp/ftp.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="neutralcontainer bradius">
|
||||
<div class="neutraltitle">{$lng['menue']['ftp']['ftp']}</div>
|
||||
<div class="neutral">{$lng['ftp']['description']}</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
36
templates/Maketank/customer/index/change_language.tpl
Normal file
36
templates/Maketank/customer/index/change_language.tpl
Normal file
@@ -0,0 +1,36 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/flag.png" alt="" />
|
||||
{$lng['menue']['main']['changelanguage']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<form method="post" action="{$linker->getLink(array('section' => 'index'))}" enctype="application/x-www-form-urlencoded">
|
||||
<fieldset>
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
<table class="tiny center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="50%"><label for="def_language">{$lng['login']['language']}:</label></td>
|
||||
<td><select id="def_language" name="def_language">$language_options</select></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<input type="submit" value="{$lng['menue']['main']['changelanguage']}" />
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
55
templates/Maketank/customer/index/change_password.tpl
Normal file
55
templates/Maketank/customer/index/change_password.tpl
Normal file
@@ -0,0 +1,55 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/lock_big.png" alt="" />
|
||||
{$lng['menue']['main']['changepassword']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<form method="post" action="{$linker->getLink(array('section' => 'index'))}" enctype="application/x-www-form-urlencoded">
|
||||
<fieldset>
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
<table class="middle center">
|
||||
<tr>
|
||||
<td width="50%"><label for="old_password">{$lng['changepassword']['old_password']}:</label></td>
|
||||
<td><input type="password" id="old_password" name="old_password" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="new_password">{$lng['changepassword']['new_password']}:</label></td>
|
||||
<td><input type="password" id="new_password" name="new_password" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="new_password_confirm">{$lng['changepassword']['new_password_confirm']}:</label></td>
|
||||
<td><input type="password" id="new_password_confirm" name="new_password_confirm" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
<input type="checkbox" name="change_main_ftp" id="change_main_ftp" value="true" />
|
||||
<label for="change_main_ftp">{$lng['changepassword']['also_change_ftp']}</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
<input type="checkbox" name="change_webalizer" id="change_webalizer" value="true" />
|
||||
<label for="change_webalizer">{$lng['changepassword']['also_change_webalizer']}</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<input type="submit" value="{$lng['menue']['main']['changepassword']}" />
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
34
templates/Maketank/customer/index/change_theme.tpl
Normal file
34
templates/Maketank/customer/index/change_theme.tpl
Normal file
@@ -0,0 +1,34 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/display_big.png" alt="" />
|
||||
{$lng['menue']['main']['changetheme']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<form method="post" action="{$linker->getLink(array('section' => 'index'))}" enctype="application/x-www-form-urlencoded">
|
||||
<fieldset>
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
<table class="tiny center">
|
||||
<tr>
|
||||
<td width="50%"><label for="theme">{$lng['panel']['theme']}:</label></td>
|
||||
<td><select id="theme" name="theme">$theme_options</select></td>
|
||||
</tr>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="2" align="center">
|
||||
<input class="bottom" type="submit" value="{$lng['menue']['main']['changetheme']}" />
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
251
templates/Maketank/customer/index/index.tpl
Normal file
251
templates/Maketank/customer/index/index.tpl
Normal file
@@ -0,0 +1,251 @@
|
||||
$header
|
||||
<article>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/domains_big.png" alt="" />
|
||||
{$lng['panel']['dashboard']}
|
||||
</h2>
|
||||
|
||||
<div class="grid-g">
|
||||
<div class="grid-u-1-2" id="statsbox">
|
||||
<if $userinfo['subdomains'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="subdomains" class="circular" data-used="{$userinfo['subdomains_used']}" data-available="{$userinfo['subdomains']}">
|
||||
<canvas id="subdomains-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['subdomains']}<br />
|
||||
<small>
|
||||
{$userinfo['subdomains_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['subdomains'] != '∞'>
|
||||
{$userinfo['subdomains']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['diskspace'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="diskspace" class="circular" data-used="{$userinfo['diskspace_used']}" data-available="{$userinfo['diskspace']}">
|
||||
<canvas id="diskspace-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['diskspace']}<br />
|
||||
<small>
|
||||
{$userinfo['diskspace_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['diskspace'] != '∞'>
|
||||
{$userinfo['diskspace']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['traffic'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="traffic" class="circular" data-used="{$userinfo['traffic_used']}" data-available="{$userinfo['traffic']}">
|
||||
<canvas id="traffic-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['traffic']}<br />
|
||||
<small>
|
||||
{$userinfo['traffic_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['traffic'] != '∞'>
|
||||
{$userinfo['traffic']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['emails'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="emails" class="circular" data-used="{$userinfo['emails_used']}" data-available="{$userinfo['emails']}">
|
||||
<canvas id="emails-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['emails']}<br />
|
||||
<small>
|
||||
{$userinfo['emails_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['emails'] != '∞'>
|
||||
{$userinfo['emails']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['email_accounts'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="email_accounts" class="circular" data-used="{$userinfo['email_accounts_used']}" data-available="{$userinfo['email_accounts']}">
|
||||
<canvas id="email_accounts-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['accounts']}<br />
|
||||
<small>
|
||||
{$userinfo['email_accounts_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['email_accounts'] != '∞'>
|
||||
{$userinfo['email_accounts']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['email_forwarders'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="email_forwarders" class="circular" data-used="{$userinfo['email_forwarders_used']}" data-available="{$userinfo['email_forwarders']}">
|
||||
<canvas id="email_forwarders-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['forwarders']}<br />
|
||||
<small>
|
||||
{$userinfo['email_forwarders_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['email_forwarders'] != '∞'>
|
||||
{$userinfo['email_forwarders']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if Settings::Get('system.mail_quota_enabled') == 1 && $userinfo['email_quota'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="email_quota" class="circular" data-used="{$userinfo['email_quota_used']}" data-available="{$userinfo['email_quota']}">
|
||||
<canvas id="email_quota-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['email_quota']}<br />
|
||||
<small>
|
||||
{$userinfo['email_quota_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['email_quota'] != '∞'>
|
||||
{$userinfo['email_quota']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['mysqls'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="mysqls" class="circular" data-used="{$userinfo['mysqls_used']}" data-available="{$userinfo['mysqls']}">
|
||||
<canvas id="mysqls-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['mysqls']}<br />
|
||||
<small>
|
||||
{$userinfo['mysqls_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['mysqls'] != '∞'>
|
||||
{$userinfo['mysqls']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $userinfo['ftps'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="ftps" class="circular" data-used="{$userinfo['ftps_used']}" data-available="{$userinfo['ftps']}">
|
||||
<canvas id="ftps-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['ftps']}<br />
|
||||
<small>
|
||||
{$userinfo['ftps_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['ftps'] != '∞'>
|
||||
{$userinfo['ftps']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if (int)Settings::Get('ticket.enabled') == 1 && $userinfo['tickets'] != '0'>
|
||||
<div class="canvasbox">
|
||||
<input type="hidden" id="tickets" class="circular" data-used="{$userinfo['tickets_used']}" data-available="{$userinfo['tickets']}">
|
||||
<canvas id="tickets-canvas" width="120" height="76"></canvas><br />
|
||||
{$lng['customer']['tickets']}<br />
|
||||
<small>
|
||||
{$userinfo['tickets_used']} {$lng['panel']['used']}<br />
|
||||
<if $userinfo['tickets'] != '∞'>
|
||||
{$userinfo['tickets']} {$lng['panel']['available']}
|
||||
</if>
|
||||
</small>
|
||||
</div>
|
||||
</if>
|
||||
</div>
|
||||
|
||||
<div class="grid-u-1-2">
|
||||
<if Settings::Get('customer.show_news_feed') == '1'>
|
||||
<table class="dboarditem full" id="newsfeed" data-role="customer">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>News</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<ul class="newsfeed" id="newsfeeditems"></ul>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</if>
|
||||
|
||||
<table class="dboarditem">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">{$lng['index']['accountdetails']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>{$lng['login']['username']}:</td>
|
||||
<td>{$userinfo['loginname']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$lng['customer']['domains']}:</td>
|
||||
<td>$domains</td>
|
||||
</tr>
|
||||
<if $stdsubdomain != ''>
|
||||
<tr>
|
||||
<td>{$lng['admin']['stdsubdomain']}:</td>
|
||||
<td>$stdsubdomain</td>
|
||||
</tr>
|
||||
</if>
|
||||
<tr>
|
||||
<td>{$lng['customer']['services']}:</td>
|
||||
<td>$services_enabled</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<table class="dboarditem">
|
||||
<thead>
|
||||
<tr>
|
||||
<th colspan="2">{$lng['index']['customerdetails']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<if $userinfo['customernumber'] >
|
||||
<tr>
|
||||
<td>{$lng['customer']['customernumber']}:</td>
|
||||
<td>{$userinfo['customernumber']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
<if $userinfo['company'] >
|
||||
<tr>
|
||||
<td>{$lng['customer']['company']}:</td>
|
||||
<td>{$userinfo['company']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
<if $userinfo['name'] >
|
||||
<tr>
|
||||
<td>{$lng['customer']['name']}:</td>
|
||||
<td>{$userinfo['firstname']} {$userinfo['name']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
<if $userinfo['street'] >
|
||||
<tr>
|
||||
<td>{$lng['customer']['street']}:</td>
|
||||
<td>{$userinfo['street']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
<if $userinfo['city'] >
|
||||
<tr>
|
||||
<td>{$lng['customer']['zipcode']}/{$lng['customer']['city']}:</td>
|
||||
<td>{$userinfo['zipcode']} {$userinfo['city']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
<if $userinfo['email'] >
|
||||
<tr>
|
||||
<td>{$lng['customer']['email']}:</td>
|
||||
<td>{$userinfo['email']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
<if $userinfo['custom_notes'] != '' && $userinfo['custom_notes_show'] == '1'>
|
||||
<tr>
|
||||
<td colspan="2">{$userinfo['custom_notes']}</td>
|
||||
</tr>
|
||||
</if>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
43
templates/Maketank/customer/index/send_error_report.tpl
Normal file
43
templates/Maketank/customer/index/send_error_report.tpl
Normal file
@@ -0,0 +1,43 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/error_report_big.png" alt="" />
|
||||
{$lng['error']['send_report_title']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<form method="post" action="{$linker->getLink(array('section' => 'index', 'errorid' => $errid))}" enctype="application/x-www-form-urlencoded">
|
||||
<fieldset>
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
<table class="full">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<p>{$lng['error']['send_report_desc']}</p>
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<code>{$mail_html}</code>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<input class="bottom" type="submit" value="{$lng['error']['send_report']}" />
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form>
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
48
templates/Maketank/customer/logger/logger.tpl
Normal file
48
templates/Maketank/customer/logger/logger.tpl
Normal file
@@ -0,0 +1,48 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/syslog_big.png" alt="" />
|
||||
{$lng['menue']['logger']['logger']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'logger'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s"/>
|
||||
<input type="hidden" name="page" value="$page"/>
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<div class="overviewadd">
|
||||
{$pagingcode}
|
||||
</div>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['logger']['date']} {$arrowcode['date']}</th>
|
||||
<th>{$lng['logger']['type']} {$arrowcode['type']}</th>
|
||||
<th>{$lng['logger']['action']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
$log
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<if 15 < $log_count >
|
||||
<div class="overviewadd">
|
||||
{$pagingcode}
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
3
templates/Maketank/customer/logger/logger_action.tpl
Normal file
3
templates/Maketank/customer/logger/logger_action.tpl
Normal file
@@ -0,0 +1,3 @@
|
||||
<tr>
|
||||
<td colspan="3"><strong>{$row['action']}</strong></td>
|
||||
</tr>
|
||||
5
templates/Maketank/customer/logger/logger_log.tpl
Normal file
5
templates/Maketank/customer/logger/logger_log.tpl
Normal file
@@ -0,0 +1,5 @@
|
||||
<tr>
|
||||
<td>{$row['date']}</td>
|
||||
<td>{$row['type']}</td>
|
||||
<td>{$row['text']}</td>
|
||||
</tr>
|
||||
8
templates/Maketank/customer/mysql/mysql.tpl
Normal file
8
templates/Maketank/customer/mysql/mysql.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="neutralcontainer bradius">
|
||||
<div class="neutraltitle">{$lng['menue']['mysql']['mysql']}</div>
|
||||
<div class="neutral">{$lng['mysql']['description']}</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
62
templates/Maketank/customer/mysql/mysqls.tpl
Normal file
62
templates/Maketank/customer/mysql/mysqls.tpl
Normal file
@@ -0,0 +1,62 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/mysql_big.png" alt="" />
|
||||
{$lng['menue']['mysql']['databases']} ({$mysqls_count})
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'mysql'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<if ($userinfo['mysqls_used'] < $userinfo['mysqls'] || $userinfo['mysqls'] == '-1') >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'mysql', 'page' => 'mysqls', 'action' => 'add'))}">{$lng['mysql']['database_create']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['mysql']['databasename']} {$arrowcode['databasename']}</th>
|
||||
<th>{$lng['mysql']['databasedescription']} {$arrowcode['description']}</th>
|
||||
<th>{$lng['mysql']['size']}</th>
|
||||
<if 1 < $count_mysqlservers><th>{$lng['mysql']['mysql_server']}</th></if>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="5">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$mysqls}
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<if ($userinfo['mysqls_used'] < $userinfo['mysqls'] || $userinfo['mysqls'] == '-1') && 15 < $mysqls_count >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'mysql', 'page' => 'mysqls', 'action' => 'add'))}">{$lng['mysql']['database_create']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
|
||||
25
templates/Maketank/customer/mysql/mysqls_add.tpl
Normal file
25
templates/Maketank/customer/mysql/mysqls_add.tpl
Normal file
@@ -0,0 +1,25 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/mysql_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'mysql'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$mysql_add_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
14
templates/Maketank/customer/mysql/mysqls_database.tpl
Normal file
14
templates/Maketank/customer/mysql/mysqls_database.tpl
Normal file
@@ -0,0 +1,14 @@
|
||||
<tr>
|
||||
<td>{$row['databasename']}</td>
|
||||
<td>{$row['description']}</td>
|
||||
<td>{$row['size']}</td>
|
||||
<if 1 < $count_mysqlservers><td>{$sql_root['caption']}</td></if>
|
||||
<td>
|
||||
<a href="{$linker->getLink(array('section' => 'mysql', 'page' => 'mysqls', 'action' => 'edit', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['panel']['edit']}" title="{$lng['panel']['edit']}" />
|
||||
</a>
|
||||
<a href="{$linker->getLink(array('section' => 'mysql', 'page' => 'mysqls', 'action' => 'delete', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/delete.png" alt="{$lng['panel']['delete']}" title="{$lng['panel']['delete']}" />
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
26
templates/Maketank/customer/mysql/mysqls_edit.tpl
Normal file
26
templates/Maketank/customer/mysql/mysqls_edit.tpl
Normal file
@@ -0,0 +1,26 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/mysql_edit_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'mysql'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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="id" value="$id" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<table class="full">
|
||||
{$mysql_edit_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
8
templates/Maketank/customer/tickets/ticket.tpl
Normal file
8
templates/Maketank/customer/tickets/ticket.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
$header
|
||||
<div class="messagewrapper">
|
||||
<div class="neutralcontainer bradius">
|
||||
<div class="neutraltitle">{$lng['menue']['ticket']['ticket']}</div>
|
||||
<div class="neutral">{$lng['ticket']['description']}</div>
|
||||
</div>
|
||||
</div>
|
||||
$footer
|
||||
80
templates/Maketank/customer/tickets/tickets.tpl
Normal file
80
templates/Maketank/customer/tickets/tickets.tpl
Normal file
@@ -0,0 +1,80 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/tickets_big.png" alt="" />
|
||||
{$lng['menue']['ticket']['ticket']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'tickets'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<input type="hidden" name="s" value="$s" />
|
||||
<input type="hidden" name="page" value="$page" />
|
||||
<input type="hidden" name="send" value="send" />
|
||||
|
||||
<if 0 < $supportavailable >
|
||||
<div class="successcontainer bradius">
|
||||
<div class="successtitle">{$lng['ticket']['supportstatus']}</div>
|
||||
<div class="success">{$lng['ticket']['supportavailable']}</div>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<if $supportavailable < 1 >
|
||||
<div class="warningcontainer bradius">
|
||||
<div class="warningtitle">{$lng['ticket']['supportstatus']}</div>
|
||||
<div class="warning">{$lng['ticket']['supportnotavailable']}</div>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<div class="overviewsearch">
|
||||
{$searchcode}
|
||||
</div>
|
||||
|
||||
<if ($userinfo['tickets_used'] < $userinfo['tickets'] || $userinfo['tickets'] == '-1') && ($ticketsopen < Settings::Get('ticket.concurrently_open') || (Settings::Get('ticket.concurrently_open') == '-1' || Settings::Get('ticket.concurrently_open') == '')) >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'tickets', 'page' => 'tickets', 'action' => 'new'))}">{$lng['ticket']['ticket_new']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
<table class="full hl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['ticket']['lastchange']} {$arrowcode['lastchange']}</th>
|
||||
<th>{$lng['ticket']['ticket_answers']}</th>
|
||||
<th>{$lng['ticket']['subject']} {$arrowcode['subject']}</th>
|
||||
<th>{$lng['ticket']['status']} {$arrowcode['status']}</th>
|
||||
<th>{$lng['ticket']['lastreplier']} {$arrowcode['lastreplier']}</th>
|
||||
<th>{$lng['ticket']['priority']}</th>
|
||||
<th>{$lng['panel']['options']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<if $pagingcode != ''>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan="7">{$pagingcode}</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</if>
|
||||
|
||||
<tbody>
|
||||
{$tickets}
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<if ($userinfo['tickets_used'] < $userinfo['tickets'] || $userinfo['tickets'] == '-1') && 15 < $tickets_count && ($ticketsopen < Settings::Get('ticket.concurrently_open') || (Settings::Get('ticket.concurrently_open') == '-1' || Settings::Get('ticket.concurrently_open') == '')) >
|
||||
<div class="overviewadd">
|
||||
<img src="templates/{$theme}/assets/img/icons/add.png" alt="" />
|
||||
<a href="{$linker->getLink(array('section' => 'tickets', 'page' => 'tickets', 'action' => 'new'))}">{$lng['ticket']['ticket_new']}</a>
|
||||
</div>
|
||||
</if>
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
$footer
|
||||
|
||||
25
templates/Maketank/customer/tickets/tickets_new.tpl
Normal file
25
templates/Maketank/customer/tickets/tickets_new.tpl
Normal file
@@ -0,0 +1,25 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/ticket_add_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'tickets'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
|
||||
<table class="full">
|
||||
{$ticket_add_form}
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
36
templates/Maketank/customer/tickets/tickets_reply.tpl
Normal file
36
templates/Maketank/customer/tickets/tickets_reply.tpl
Normal file
@@ -0,0 +1,36 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/ticket_reply_big.png" alt="{$title}" />
|
||||
{$title}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<if 0 < $ticket_replies_count >
|
||||
$ticket_replies
|
||||
</if>
|
||||
|
||||
<section>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'tickets'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<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" />
|
||||
<input type="hidden" name="id" value="$id" />
|
||||
|
||||
<if $isclosed < 1 >
|
||||
<table class="full">
|
||||
{$ticket_reply_form}
|
||||
</table>
|
||||
</if>
|
||||
|
||||
<if 0 < $isclosed >
|
||||
<a href="{$linker->getLink(array('section' => 'tickets', 'page' => 'tickets', 'action' => 'reopen', 'id' => $id))}">{$lng['ticket']['ticket_reopen']}</a>
|
||||
</if>
|
||||
</form>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
$footer
|
||||
28
templates/Maketank/customer/tickets/tickets_tickets.tpl
Normal file
28
templates/Maketank/customer/tickets/tickets_tickets.tpl
Normal file
@@ -0,0 +1,28 @@
|
||||
<tr>
|
||||
<td>{$row['lastchange']}</td>
|
||||
<td>{$row['ticket_answers']}</td>
|
||||
<td>{$row['subject']}</td>
|
||||
<td>{$row['status']}</td>
|
||||
<td>{$row['lastreplier']}</td>
|
||||
<td>{$row['priority']}</td>
|
||||
<td>
|
||||
<a href="{$linker->getLink(array('section' => 'tickets', 'page' => 'tickets', 'action' => 'answer', 'id' => $row['id']))}">
|
||||
<if $cananswer < 1 >
|
||||
<img src="templates/{$theme}/assets/img/icons/view.png" alt="{$lng['ticket']['show']}" title="{$lng['ticket']['show']}" />
|
||||
</if>
|
||||
<if 0 < $cananswer >
|
||||
<img src="templates/{$theme}/assets/img/icons/edit.png" alt="{$lng['ticket']['answer']}" title="{$lng['ticket']['answer']}" />
|
||||
</if>
|
||||
</a>
|
||||
<if $reopen < 1 >
|
||||
<a href="{$linker->getLink(array('section' => 'tickets', 'page' => 'tickets', 'action' => 'close', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/lock.png" alt="{$lng['ticket']['close']}" title="{$lng['ticket']['close']}" />
|
||||
</a>
|
||||
</if>
|
||||
<if 0 < $reopen >
|
||||
<a href="{$linker->getLink(array('section' => 'tickets', 'page' => 'tickets', 'action' => 'reopen', 'id' => $row['id']))}">
|
||||
<img src="templates/{$theme}/assets/img/icons/unlock.png" alt="{$lng['ticket']['reopen']}" title="{$lng['ticket']['reopen']}" />
|
||||
</a>
|
||||
</if>
|
||||
</td>
|
||||
</tr>
|
||||
15
templates/Maketank/customer/tickets/tickets_tickets_list.tpl
Normal file
15
templates/Maketank/customer/tickets/tickets_tickets_list.tpl
Normal file
@@ -0,0 +1,15 @@
|
||||
<section>
|
||||
<table class="full">
|
||||
<tr>
|
||||
<th><strong>{$lastchange} {$lng['ticket']['by']} {$by}</strong></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$subject}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$message}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br /><br />
|
||||
</section>
|
||||
<br />
|
||||
15
templates/Maketank/customer/tickets/tickets_tickets_main.tpl
Normal file
15
templates/Maketank/customer/tickets/tickets_tickets_main.tpl
Normal file
@@ -0,0 +1,15 @@
|
||||
<section>
|
||||
<table class="full">
|
||||
<tr>
|
||||
<th><strong>{$dt} {$lng['ticket']['by']} {$by} ({$status})</strong></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$subject}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{$message}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
</section>
|
||||
<br />
|
||||
54
templates/Maketank/customer/traffic/traffic.tpl
Normal file
54
templates/Maketank/customer/traffic/traffic.tpl
Normal file
@@ -0,0 +1,54 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/traffic_big.png" alt="{$lng['menue']['traffic']['traffic']}" />
|
||||
{$lng['menue']['traffic']['traffic']}
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<form action="{$linker->getLink(array('section' => 'traffic'))}" method="post" enctype="application/x-www-form-urlencoded">
|
||||
<fieldset>
|
||||
<table class="full hl" id="datatable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['traffic']['month']}</td>
|
||||
<th>{$lng['traffic']['ftp']}</th>
|
||||
<th>{$lng['traffic']['http']}</th>
|
||||
<th>{$lng['traffic']['mail']}</th>
|
||||
<th>{$lng['customer']['traffic']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
$traffic
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td>{$lng['traffic']['months']['total']}</td>
|
||||
<td>{$traffic_complete['ftp']}</td>
|
||||
<td>{$traffic_complete['http']}</td>
|
||||
<td>{$traffic_complete['mail']}</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<div id="charts" class="hidden">
|
||||
<if !Settings::IsInList('panel.customer_hide_options','traffic.http')>
|
||||
<h3>HTTP {$lng['admin']['traffic']} ({$lng['traffic']['months']['total']} {$traffic_complete['http']})</h3>
|
||||
<div id="httpchart" class="trafficchart"></div>
|
||||
</if>
|
||||
<if !Settings::IsInList('panel.customer_hide_options','traffic.ftp')>
|
||||
<h3>FTP {$lng['admin']['traffic']} ({$lng['traffic']['months']['total']} {$traffic_complete['ftp']})</h3>
|
||||
<div id="ftpchart" class="trafficchart"></div>
|
||||
</if>
|
||||
<if !Settings::IsInList('panel.customer_hide_options','traffic.mail')>
|
||||
<h3>Mail {$lng['admin']['traffic']} ({$lng['traffic']['months']['total']} {$traffic_complete['mail']})</h3>
|
||||
<div id="mailchart" class="trafficchart"></div>
|
||||
</if>
|
||||
</div>
|
||||
</article>
|
||||
$footer
|
||||
48
templates/Maketank/customer/traffic/traffic_details.tpl
Normal file
48
templates/Maketank/customer/traffic/traffic_details.tpl
Normal file
@@ -0,0 +1,48 @@
|
||||
$header
|
||||
<article>
|
||||
<header>
|
||||
<h2>
|
||||
<img src="templates/{$theme}/assets/img/icons/traffic_big.png" alt="{$lng['menue']['traffic']['traffic']}" />
|
||||
{$lng['menue']['traffic']['traffic']} $show
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<table class="full hl" id="datatable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lng['traffic']['day']}</th>
|
||||
<th>{$lng['traffic']['ftp']}</th>
|
||||
<th>{$lng['traffic']['http']}</th>
|
||||
<th>{$lng['traffic']['mail']}</th>
|
||||
<th>{$lng['traffic']['mb']}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td>{$lng['traffic']['months']['total']}</td>
|
||||
<td>{$traffic_complete['ftp']}</td>
|
||||
<td>{$traffic_complete['http']}</td>
|
||||
<td>{$traffic_complete['mail']}</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
<tbody>
|
||||
$traffic
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="charts" class="hidden">
|
||||
<if !Settings::IsInList('panel.customer_hide_options','traffic.http')>
|
||||
<h3>HTTP {$lng['admin']['traffic']} ({$lng['traffic']['months']['total']} {$traffic_complete['http']})</h3>
|
||||
<div id="httpchart" class="trafficchart"></div>
|
||||
</if>
|
||||
<if !Settings::IsInList('panel.customer_hide_options','traffic.ftp')>
|
||||
<h3>FTP {$lng['admin']['traffic']} ({$lng['traffic']['months']['total']} {$traffic_complete['ftp']})</h3>
|
||||
<div id="ftpchart" class="trafficchart"></div>
|
||||
</if>
|
||||
<if !Settings::IsInList('panel.customer_hide_options','traffic.mail')>
|
||||
<h3>Mail {$lng['admin']['traffic']} ({$lng['traffic']['months']['total']} {$traffic_complete['mail']})</h3>
|
||||
<div id="mailchart" class="trafficchart"></div>
|
||||
</if>
|
||||
</div>
|
||||
</article>
|
||||
$footer
|
||||
8
templates/Maketank/customer/traffic/traffic_month.tpl
Normal file
8
templates/Maketank/customer/traffic/traffic_month.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
<tr>
|
||||
<td>{$traf['day']}</td>
|
||||
<td>{$traf['ftp']}</td>
|
||||
<td>{$traf['http']}</td>
|
||||
<td>{$traf['mail']}</td>
|
||||
<td>{$traf['byte']}</td>
|
||||
</tr>
|
||||
|
||||
7
templates/Maketank/customer/traffic/traffic_traffic.tpl
Normal file
7
templates/Maketank/customer/traffic/traffic_traffic.tpl
Normal file
@@ -0,0 +1,7 @@
|
||||
<tr>
|
||||
<td><a href="{$linker->getLink(array('section' => 'traffic', 'month' => $traf['month'], 'year' => $traf['year']))}">{$traf['monthname']}</a></td>
|
||||
<td>{$traf['ftp']}</td>
|
||||
<td>{$traf['http']}</td>
|
||||
<td>{$traf['mail']}</td>
|
||||
<td>{$traf['byte']}</td>
|
||||
</tr>
|
||||
Reference in New Issue
Block a user