Deltacms/core/module/install/view/update/update.php

33 lines
1.6 KiB
PHP
Raw Normal View History

2022-03-06 13:35:21 +01:00
<?php
// Lexique
2022-09-11 09:42:42 +02:00
include('./core/module/install/lang/'. $this->getData(['config', 'i18n', 'langAdmin']) . '/lex_install.php');
2022-03-06 13:35:21 +01:00
?>
2022-09-11 09:42:42 +02:00
<p><strong><?php echo $text['core_install_view']['update'][0] . self::DELTA_VERSION . $text['core_install_view']['update'][1] . $module::$newVersion; ?>.</strong></p>
<p><?php echo $text['core_install_view']['update'][2]; ?></p>
2022-01-31 09:10:49 +01:00
<div class="row">
<div class="col9 verticalAlignMiddle">
<div id="installUpdateProgress">
<?php echo template::ico('spin', '', true); ?>
2022-09-11 09:42:42 +02:00
<span class="installUpdateProgressText" data-id="1"><?php echo $text['core_install_view']['update'][3]; ?></span>
<span class="installUpdateProgressText displayNone" data-id="2"><?php echo $text['core_install_view']['update'][4]; ?></span>
<span class="installUpdateProgressText displayNone" data-id="3"><?php echo $text['core_install_view']['update'][5]; ?></span>
<span class="installUpdateProgressText displayNone" data-id="4"><?php echo $text['core_install_view']['update'][6]; ?></span>
2022-01-31 09:10:49 +01:00
</div>
<div id="installUpdateError" class="colorRed displayNone">
<?php echo template::ico('cancel', ''); ?>
2022-09-11 09:42:42 +02:00
<?php echo $text['core_install_view']['update'][7]; ?> <span id="installUpdateErrorStep"></span>.
2022-01-31 09:10:49 +01:00
</div>
<div id="installUpdateSuccess" class="colorGreen displayNone">
<?php echo template::ico('check', ''); ?>
2022-09-11 09:42:42 +02:00
<?php echo $text['core_install_view']['update'][8]; ?>
2022-01-31 09:10:49 +01:00
</div>
</div>
<div class="col3 verticalAlignMiddle">
<?php echo template::button('installUpdateEnd', [
2022-09-11 09:42:42 +02:00
'value' => $text['core_install_view']['update'][9],
2022-12-03 09:33:34 +01:00
'href' => helper::baseUrl(false) . 'index.php',
2022-01-31 09:10:49 +01:00
'ico' => 'check',
'class' => 'disabled'
]); ?>
</div>
</div>