vesta/web/templates/admin/list_backup_detail.html
2014-04-07 23:49:50 +03:00

268 lines
11 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<table class="submenu">
<tr>
<td style="padding: 14px 10px">
<div class="submenu-button-block">
<button class="submenu-button-main" onclick="location.href='/schedule/restore/?backup=<?php echo $_GET['backup'] ?>'"> <?php print __('Restore All');?> </button>
</div>
<div class="submenu-search-block">
<form action="/search/" method="get">
<input type="text" name="q" class="submenu-search-field">
<input type="submit" value="<?php print __('Search');?>" class="submenu-button-search">
</form>
</div>
<div class="submenu-select-block">
<form action="/bulk/restore/" method="post" id="objects">
<a class="submenu-select-link" href='javascript:checkedAll("objects");'> <?php print __('toggle all');?> </a>
<select class="submenu-select-dropdown" name="action">
<option value=""><?php print __('apply to selected');?></option>
<option value="restore"><?php print __('restore');?></option>
</select>
<input type="hidden" name="backup" value="<?php echo $_GET['backup'] ?>">
<input type="submit" name="ok" value="" class="submenu-button-select">
</div>
<?php display_error_block(); ?>
</td>
</tr>
</table>
</div>
<div id="vstobjects">
<table class="data" style="background: #ebe9dc;">
<tr>
<td style="padding: 10px 4px">
<a class="name" style="color: #555; font-size: 10pt;"><b><?php print __('Listing');?> <?php echo $_GET['backup'] ?> </b></a>
</td>
</tr>
</table>
<table class="data">
<?php
$backup = $_GET['backup'];
$web = explode(',',$data[$backup]['WEB']);
foreach ($web as $key) {
if (!empty($key)) {
?>
<tr class="data-row">
<td class="data-dotted">
<table class="data-col1">
<tr><td><input type="checkbox" class="ch-toggle" name="web[]" value="<?php echo $key ?>" ></td></tr>
</table>
</td>
<td class="data-dotted">
<a href="/schedule/restore/?backup=<?php echo $backup ?>&type=web&object=<?php echo $key ?>" class="data-controls">
<span>
<img src="/images/restore.png" width="6px" height="8px">
<?php print __('restore');?>
</span>
</a>
<table class="data-col2">
<tr>
<td class="cron" width="239px">
<?php echo 'web ' . __('domain') ?>
</td>
<td class="domain">
<b><?php echo $key ?></b>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
}
?>
<?php
$dns = explode(',',$data[$backup]['DNS']);
foreach ($dns as $key) {
if (!empty($key)) {
?>
<tr class="data-row">
<td class="data-dotted">
<table class="data-col1">
<tr><td><input type="checkbox" class="ch-toggle" name="dns[]" value="<?php echo $key ?>" ></td></tr>
</table>
</td>
<td class="data-dotted">
<a href="/schedule/restore/?backup=<?php echo $backup ?>&type=dns&object=<?php echo $key ?>" class="data-controls">
<span>
<img src="/images/restore.png" width="6px" height="8px">
<?php print __('restore');?>
</span>
</a>
<table class="data-col2">
<tr>
<td class="cron" width="239px">
<?php echo 'dns ' . __('domain') ?>
</td>
<td class="domain">
<b><?php echo $key ?></b>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
}
?>
<?php
$mail = explode(',',$data[$backup]['MAIL']);
foreach ($mail as $key) {
if (!empty($key)) {
?>
<tr class="data-row">
<td class="data-dotted">
<table class="data-col1">
<tr><td><input type="checkbox" class="ch-toggle" name="mail[]" value="<?php echo $key ?>" ></td></tr>
</table>
</td>
<td class="data-dotted">
<a href="/schedule/restore/?backup=<?php echo $backup ?>&type=mail&object=<?php echo $key ?>" class="data-controls">
<span>
<img src="/images/restore.png" width="6px" height="8px">
<?php print __('restore');?>
</span>
</a>
<table class="data-col2">
<tr>
<td class="cron" width="239px">
<?php echo 'mail ' . __('domain') ?>
</td>
<td class="domain">
<b><?php echo $key ?></b>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
}
?>
<?php
$db = explode(',',$data[$backup]['DB']);
foreach ($db as $key) {
if (!empty($key)) {
?>
<tr class="data-row">
<td class="data-dotted">
<table class="data-col1">
<tr><td><input type="checkbox" class="ch-toggle" name="db[]" value="<?php echo $key ?>" ></td></tr>
</table>
</td>
<td class="data-dotted">
<a href="/schedule/restore/?backup=<?php echo $backup ?>&type=db&object=<?php echo $key ?>" class="data-controls">
<span>
<img src="/images/restore.png" width="6px" height="8px">
<?php print __('restore');?>
</span>
</a>
<table class="data-col2">
<tr>
<td class="cron" width="239px">
<?php echo __('database') ?>
</td>
<td class="domain">
<b><?php echo $key ?></b>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
}
?>
<?php
$backup = $_GET['backup'];
if (!empty($data[$backup]['CRON'])) {
if (!empty($key)) {
?>
<tr class="data-row">
<td class="data-dotted">
<table class="data-col1">
<tr><td><input type="checkbox" class="ch-toggle" name="cron[]" value="<?php echo 'yes' ?>" ></td></tr>
</table>
</td>
<td class="data-dotted">
<a href="/schedule/restore/?backup=<?php echo $backup ?>&type=cron&object=records" class="data-controls">
<span>
<img src="/images/restore.png" width="6px" height="8px">
<?php print __('restore');?>
</span>
</a>
<table class="data-col2">
<tr>
<td class="cron" width="239px">
<?php echo __('cron') ?>
</td>
<td class="domain">
<b><?php echo 'cron ' . __('records') ?></b>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
}
?>
<?php
$udir = explode(',',$data[$backup]['UDIR']);
foreach ($udir as $key) {
if (!empty($key)) {
?>
<tr class="data-row">
<td class="data-dotted">
<table class="data-col1">
<tr><td><input type="checkbox" class="ch-toggle" name="udir[]" value="<?php echo $key ?>" ></td></tr>
</table>
</td>
<td class="data-dotted">
<a href="/schedule/restore/?backup=<?php echo $backup ?>&type=udir&object=<?php echo $key ?>" class="data-controls">
<span>
<img src="/images/restore.png" width="6px" height="8px">
<?php print __('restore');?>
</span>
</a>
<table class="data-col2">
<tr>
<td class="cron" width="239px">
<?php echo __('user dir') ?>
</td>
<td class="domain">
<b><?php echo $key ?></b>
</td>
</tr>
</table>
</td>
</tr>
<?php
}
}
?>
</table>
</form>
</div>