You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
cosmopet-architecture/dup-installer/templates/default/pages-parts/step4/full-report.php

56 lines
2.1 KiB

<?php
/**
*
* @package templates/default
*/
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
use Duplicator\Installer\Core\Params\PrmMng;
$paramsManager = PrmMng::getInstance();
$nManager = DUPX_NOTICE_MANAGER::getInstance();
$finalReportData = $paramsManager->getValue(PrmMng::PARAM_FINAL_REPORT_DATA);
?>
<div id="s4-install-report" >
<div id="s4-notice-reports" class="report-sections-list">
<?php
$nManager->displayFinalRepostSectionHtml('general', 'General Notices Report');
$nManager->displayFinalRepostSectionHtml('files', 'Files Notices Report');
$nManager->displayFinalRepostSectionHtml('database', 'Database Notices Report');
$nManager->displayFinalRepostSectionHtml('search_replace', 'Search and Replace Notices Report');
$nManager->displayFinalRepostSectionHtml('plugins', 'Plugins Actions Report');
?>
</div>
<table class="s4-report-results" >
<tr>
<th colspan="4">Database Report</th>
</tr>
<tr style="font-weight:bold">
<td style="width:150px"></td>
<td>Tables</td>
<td>Rows</td>
<td>Cells</td>
</tr>
<tr>
<td>Created</td>
<td><span><?php echo $finalReportData['extraction']['table_count']; ?></span></td>
<td><span><?php echo $finalReportData['extraction']['table_rows']; ?></span></td>
<td>n/a</td>
</tr>
<tr>
<td>Scanned</td>
<td><span><?php echo $finalReportData['replace']['scan_tables']; ?></span></td>
<td><span><?php echo $finalReportData['replace']['scan_rows']; ?></span></td>
<td><span><?php echo $finalReportData['replace']['scan_cells']; ?></span></td>
</tr>
<tr>
<td>Updated</td>
<td><span><?php echo $finalReportData['replace']['updt_tables']; ?></span></td>
<td><span><?php echo $finalReportData['replace']['updt_rows']; ?></span></td>
<td><span><?php echo $finalReportData['replace']['updt_cells']; ?></span></td>
</tr>
</table>
</div>