Files
Roman Pyrih 968c7e1248 first commit
2026-04-28 09:27:26 +02:00

132 lines
4.8 KiB
PHP

<?php
/**
* Duplicator package row in table packages list
*
* @package Duplicator
* @copyright (c) 2022, Snap Creek LLC
*/
use Duplicator\Controllers\ToolsPageController;
use Duplicator\Core\CapMng;
use Duplicator\Core\Controllers\ControllersManager;
use Duplicator\Package\Recovery\RecoveryPackage;
defined("ABSPATH") or die("");
/**
* Variables
*
* @var \Duplicator\Core\Controllers\ControllersManager $ctrlMng
* @var \Duplicator\Core\Views\TplMng $tplMng
* @var array<string, mixed> $tplData
*/
$templatesURL = ControllersManager::getMenuLink(
ControllersManager::TOOLS_SUBMENU_SLUG,
ToolsPageController::L2_SLUG_TEMPLATE
);
$recoveryURl = ControllersManager::getMenuLink(
ControllersManager::TOOLS_SUBMENU_SLUG,
ToolsPageController::L2_SLUG_RECOVERY
);
if (
!CapMng::can(CapMng::CAP_SCHEDULE, false) &&
!CapMng::can(CapMng::CAP_STORAGE, false) &&
!CapMng::can(CapMng::CAP_CREATE, false) &&
!CapMng::can(CapMng::CAP_BACKUP_RESTORE, false)
) {
return;
}
?>
<hr class="separator" >
<div class="dup-section-sections">
<ul>
<?php if (CapMng::can(CapMng::CAP_SCHEDULE, false)) { ?>
<li class="dup-flex-content">
<span class="dup-section-label-fixed-width" >
<span class="dashicons dashicons-update gary"></span>
<a href="<?php echo esc_url(ControllersManager::getMenuLink(ControllersManager::SCHEDULES_SUBMENU_SLUG)); ?>"><?php
echo esc_html(sprintf(
_n(
'%s Schedule',
'%s Schedules',
$tplData['numSchedules'],
'duplicator-pro'
),
$tplData['numSchedules']
));
?></a>
</span>
<span>
<?php esc_html_e('Enabled', 'duplicator-pro'); ?>:
<b class="<?php echo ($tplData['numSchedulesEnabled'] ? 'green' : 'maroon'); ?>">
<?php echo (int) $tplData['numSchedulesEnabled']; ?>
</b>
<?php if (strlen($tplData['nextScheduleString'])) { ?>
- <?php esc_html_e('Next', 'duplicator-pro'); ?>: <b><?php echo esc_html($tplData['nextScheduleString']); ?></b>
<?php } ?>
</span>
</li>
<?php } ?>
<?php if (CapMng::can(CapMng::CAP_STORAGE, false)) { ?>
<li>
<span class="dup-section-label-fixed-width" >
<span class="dashicons dashicons-database gary"></span>
<a href="<?php echo esc_url(ControllersManager::getMenuLink(ControllersManager::STORAGE_SUBMENU_SLUG)); ?>"><?php
echo esc_html(sprintf(
_n(
'%s Storage',
'%s Storages',
$tplData['numStorages'],
'duplicator-pro'
),
$tplData['numStorages']
));
?>
</a>
</span>
</li>
<?php } ?>
<?php if (CapMng::can(CapMng::CAP_CREATE, false)) { ?>
<li>
<span class="dup-section-label-fixed-width" >
<span class="dashicons dashicons-admin-settings gary"></span>
<a href="<?php echo esc_url($templatesURL); ?>"><?php
echo esc_html(sprintf(
_n(
'%s Template',
'%s Templates',
$tplData['numTemplates'],
'duplicator-pro'
),
$tplData['numTemplates']
));
?>
</a>
</span>
</li>
<?php } ?>
<?php if (CapMng::can(CapMng::CAP_BACKUP_RESTORE, false)) { ?>
<li class="dup-flex-content">
<span class="dup-section-label-fixed-width" >
<span class="dashicons dashicons-image-rotate gary"></span>
<a href="<?php echo esc_url($recoveryURl); ?>" ><?php
esc_html_e('Recovery Point', 'duplicator-pro');
?>
</a>
</span>
<span>
<?php if (RecoveryPackage::getRecoverPackageId() === false) { ?>
<span class="maroon"><b><?php esc_html_e('Not set', 'duplicator-pro'); ?></b></span>
<?php } else { ?>
<span class="green"><b><?php esc_html_e('Set On', 'duplicator-pro'); ?></b></span>&nbsp;
<b><?php echo esc_html($tplData['recoverDateString']); ?></b>
<?php } ?>
</span>
</li>
<?php } ?>
</ul>
</div>