mirror of
https://github.com/myvesta/vesta
synced 2025-08-21 13:54:28 -07:00
The New Desing
This commit is contained in:
parent
def9cc4ea6
commit
067a2c862a
305 changed files with 22231 additions and 7576 deletions
|
@ -1,145 +1,169 @@
|
|||
<table class="submenu">
|
||||
<tr>
|
||||
<td class="wrapper">
|
||||
<div class="submenu-button-block">
|
||||
<button class="submenu-button-main" onclick="location.href='/schedule/backup/'"> <?php print __('Create Backup');?> </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/backup/" 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="delete"><?php print __('delete');?></option>
|
||||
</select>
|
||||
<input type="submit" name="ok" value="›" class="submenu-button-select">
|
||||
</div>
|
||||
<div class="submenu-select-block" style="margin: 0 0 0 21px;">
|
||||
<a class="submenu-select-link" href="/list/backup/exclusions/">[ <?php print __('backup exclusions');?> ]</a>
|
||||
</div>
|
||||
<?php display_error_block(); ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="l-center">
|
||||
<div class="l-sort clearfix noselect">
|
||||
<a href="/schedule/backup/" class="l-sort__create-btn" title="<?=str_replace(' ', ' ', __('Create Backup'))?>"></a>
|
||||
<div class="l-sort-toolbar clearfix">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="l-sort-toolbar__search-box">
|
||||
<form action="/search/" method="get">
|
||||
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
|
||||
<input type="text" name="q" class="search-input" value="<? echo isset($_POST['q']) ? htmlspecialchars($_POST['q']) : '' ?>" />
|
||||
<input type="submit" value="" class="l-sort-toolbar__search" onClick="return doSearch('/search/')" />
|
||||
</form>
|
||||
</td>
|
||||
<td class="toggle-all">
|
||||
<input id="toggle-all" type="checkbox" name="toggle-all" value="toggle-all" onChange="checkedAll('objects');">
|
||||
<label for="toggle-all" class="check-label toggle-all"><?=__('toggle all')?></label>
|
||||
</td>
|
||||
<td class="step-right">
|
||||
<form action="/bulk/backup/" method="post">
|
||||
<input type="hidden" name="token" value="<?=$_SESSION['token']?>" />
|
||||
<div class="l-select">
|
||||
<select name="action" id="">
|
||||
<option value=""><?=__('apply to selected')?></option>
|
||||
<option value="delete"><?php print __('delete') ?></option>
|
||||
</select>
|
||||
</div>
|
||||
<input type="submit" value="" class="l-sort-toolbar__filter-apply" />
|
||||
</td>
|
||||
<td>
|
||||
<a class="vst" href="/list/backup/exclusions/"><?=__('backup exclusions')?></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div id="vstobjects">
|
||||
<table class="data">
|
||||
</div>
|
||||
|
||||
<?php
|
||||
foreach ($data as $key => $value) {
|
||||
++$i;
|
||||
$web = __('no');
|
||||
$dns = __('no');
|
||||
$mail = __('no');
|
||||
$db = __('no');
|
||||
$cron = __('no');
|
||||
$udir = __('no');
|
||||
<? display_error_block(); ?>
|
||||
|
||||
if (!empty($data[$key]['WEB'])) $web = __('yes');
|
||||
if (!empty($data[$key]['DNS'])) $dns = __('yes');
|
||||
if (!empty($data[$key]['MAIL'])) $mail = __('yes');
|
||||
if (!empty($data[$key]['DB'])) $db = __('yes');
|
||||
if (!empty($data[$key]['CRON'])) $cron = __('yes');
|
||||
if (!empty($data[$key]['UDIR'])) $udir = __('yes');
|
||||
<!-- /.l-sort -->
|
||||
</div>
|
||||
|
||||
?>
|
||||
<div class="l-separator"></div>
|
||||
<!-- /.l-separator -->
|
||||
|
||||
<tr class="data-row">
|
||||
<td class="data-dotted">
|
||||
<table class="data-col1">
|
||||
<tr><td><input type="checkbox" class="ch-toggle" name="backup[]" value="<?php echo $key ?>" ></td></tr>
|
||||
<tr><td><a class="data-date" title="<?php echo $data[$key]['DATE']." ".$data[$key]['TIME'] ?>"><?php echo strftime("%d %b %Y", strtotime($data[$key]['DATE'])) ?></td></tr>
|
||||
<tr><td class="data-active"><b><?php print __('active');?></b></td></tr>
|
||||
</table>
|
||||
</td>
|
||||
<td class="data-dotted" width="830px">
|
||||
<a id="delete_link_<?php echo $i ?>" class="data-controls do_delete">
|
||||
<span class="do_delete">
|
||||
<img src="/images/delete.png" width="7px" height="7px">
|
||||
<?php print __('delete');?>
|
||||
<input type="hidden" name="delete_url" value="/delete/backup/?backup=<?php echo "$key" ?>" />
|
||||
<div id="delete_dialog_<?php echo $i ?>" class="confirmation-text-delete hidden" title="<?php print __('Confirmation');?>">
|
||||
<p class="confirmation"><?php print __('DELETE_BACKUP_CONFIRMATION',$key);?></p>
|
||||
</div>
|
||||
</span>
|
||||
</a>
|
||||
<a href="/list/backup/?backup=<?php echo $key ?>" class="data-controls">
|
||||
<span>
|
||||
<img src="/images/more.png" width="8px" height="8px">
|
||||
<?php print __('configure restore settings') ?>
|
||||
</span>
|
||||
</a>
|
||||
<a href="/download/backup/?backup=<?php echo $key ?>" target="_blank" class="data-controls">
|
||||
<span>
|
||||
<img src="/images/download.png" width="8px" height="8px">
|
||||
<?php print __('download');?>
|
||||
</span>
|
||||
</a>
|
||||
<table class="data-col2">
|
||||
<tr>
|
||||
<td colspan=3 class="domain">
|
||||
<b><?php echo $key ?></b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="vertical-align:top;" width="239px">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="counter-name">
|
||||
<?php print __('Backup Size');?>: <?php echo humanize_usage($data[$key]['SIZE']) ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td style="vertical-align:top;" width="238px">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="counter-name">
|
||||
<?php print __('Type');?>:
|
||||
</td>
|
||||
<td class="counter-value">
|
||||
<?php echo $data[$key]['TYPE'] ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td style="vertical-align:top;">
|
||||
<table>
|
||||
<tr>
|
||||
<td class="counter-name">
|
||||
<?php print __('Run Time');?>:
|
||||
</td>
|
||||
<td class="counter-value">
|
||||
<?php echo humanize_time($data[$key]['RUNTIME']) ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<div class="l-center">
|
||||
<?
|
||||
foreach ($data as $key => $value) {
|
||||
++$i;
|
||||
$web = __('no');
|
||||
$dns = __('no');
|
||||
$mail = __('no');
|
||||
$db = __('no');
|
||||
$cron = __('no');
|
||||
$udir = __('no');
|
||||
|
||||
</table>
|
||||
</form>
|
||||
if (!empty($data[$key]['WEB'])) $web = __('yes');
|
||||
if (!empty($data[$key]['DNS'])) $dns = __('yes');
|
||||
if (!empty($data[$key]['MAIL'])) $mail = __('yes');
|
||||
if (!empty($data[$key]['DB'])) $db = __('yes');
|
||||
if (!empty($data[$key]['CRON'])) $cron = __('yes');
|
||||
if (!empty($data[$key]['UDIR'])) $udir = __('yes');
|
||||
|
||||
<div class="data-count">
|
||||
<?php
|
||||
if ( $i == 1) {
|
||||
echo __('1 archive');
|
||||
} else {
|
||||
echo __('%s archives',$i);
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
<div class="l-unit<? if($status == 'suspended') echo ' l-unit--outdated';?>">
|
||||
<div class="l-unit-toolbar clearfix">
|
||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--left">
|
||||
<input id="check<?php echo $i ?>" class="ch-toggle" type="checkbox" name="backup[]" value="<?php echo $key ?>">
|
||||
<label for="check<?php echo $i ?>" class="check-label"></label>
|
||||
</div>
|
||||
<!-- l-unit-toolbar__col -->
|
||||
<div class="l-unit-toolbar__col l-unit-toolbar__col--right noselect">
|
||||
<div class="actions-panel clearfix">
|
||||
<? if ($data[$key]['UPDATED'] == 'no') {
|
||||
echo '<div class="actions-panel__col actions-panel__update"><a href="/update/vesta/?pkg='.$key.'&token='.$_SESSION['token'].'">'.__('update').'<i></i></a></div>';
|
||||
}
|
||||
?>
|
||||
<div class="actions-panel__col actions-panel__download"><a href="/download/backup/?backup=<?=$key?>&token=<?=$_SESSION['token']?>"><?=__('download')?> <i></i></a></div>
|
||||
<div class="actions-panel__col actions-panel__configure"><a href="/list/backup/?backup=<?=$key?>"><?=__('configure restore settings')?> <i></i></a></div>
|
||||
<div class="actions-panel__col actions-panel__delete">
|
||||
<a id="delete_link_<?=$i?>" class="data-controls do_delete">
|
||||
<?=__('delete')?> <i class="do_delete"></i>
|
||||
<input type="hidden" name="delete_url" value="/delete/backup/?backup=<?=$key?>&token=<?=$_SESSION['token']?>" />
|
||||
<div id="delete_dialog_<?=$i?>" class="confirmation-text-delete hidden" title="<?=__('Confirmation')?>">
|
||||
<p class="confirmation"><?=__('DELETE_BACKUP_CONFIRMATION',$key)?></p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.actions-panel -->
|
||||
</div>
|
||||
<!-- l-unit-toolbar__col -->
|
||||
</div>
|
||||
<!-- /.l-unit-toolbar -->
|
||||
|
||||
<div class="l-unit__col l-unit__col--left clearfix">
|
||||
<div class="l-unit__date">
|
||||
<?=strftime("%d %b %Y", strtotime($data[$key]['DATE']))?>
|
||||
</div>
|
||||
<div class="l-unit__suspended""><?=__('outdated')?></div>
|
||||
</div>
|
||||
<!-- /.l-unit__col -->
|
||||
<div class="l-unit__col l-unit__col--right">
|
||||
<div class="l-unit__name separate">
|
||||
<?=$key?>
|
||||
</div>
|
||||
|
||||
<div class="l-unit__stats">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="l-unit__stat-cols clearfix">
|
||||
<div class="l-unit__stat-col l-unit__stat-col--left"><?=__('Backup Size')?>:</div>
|
||||
<div class="l-unit__stat-col l-unit__stat-col--right">
|
||||
<b><?=humanize_usage($data[$key]['SIZE'])?></b> <?=humanize_usage($data[$key]['SIZE'])?>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="l-unit__stat-cols clearfix">
|
||||
<div class="l-unit__stat-col l-unit__stat-col--left compact"><?=__('Type')?>:</div>
|
||||
<div class="l-unit__stat-col l-unit__stat-col--right">
|
||||
<b><?=$data[$key]['TYPE']?></b>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="l-unit__stat-cols clearfix last">
|
||||
<div class="l-unit__stat-col l-unit__stat-col--left compact"><?=__('Run Time')?>:</div>
|
||||
<div class="l-unit__stat-col l-unit__stat-col--right">
|
||||
<b><?=humanize_time($data[$key]['RUNTIME'])?></b>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- /.l-unit__stats -->
|
||||
</div>
|
||||
<!-- /.l-unit__col -->
|
||||
</div>
|
||||
<!-- /.l-unit -->
|
||||
<div class="l-separator"></div>
|
||||
<!-- /.l-separator -->
|
||||
<? } ?>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div id="vstobjects">
|
||||
<div class="l-separator"></div>
|
||||
<div class="l-center">
|
||||
<div class="l-unit-ft">
|
||||
<div class="l-unit__col l-unit__col--left clearfix"></div>
|
||||
<div class="data-count l-unit__col l-unit__col--right clearfix">
|
||||
<?php
|
||||
if ( $i == 1) {
|
||||
echo __('1 archive');
|
||||
} else {
|
||||
echo __('%s archives',$i);
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue