58 lines
1.6 KiB
PHP
58 lines
1.6 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The backup view file of upgrade module of ZenTaoPMS.
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
|
|
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Tingting Dai <daitingting@easycorp.ltd>
|
|
* @package upgrade
|
|
* @link https://www.zentao.net
|
|
*/
|
|
namespace zin;
|
|
|
|
set::zui(true);
|
|
|
|
div
|
|
(
|
|
setID('main'),
|
|
div
|
|
(
|
|
setID('mainContent'),
|
|
panel
|
|
(
|
|
set::style(array('margin' => '0 auto', 'width' => '600px')),
|
|
div
|
|
(
|
|
setClass('text-lg font-bold mb-4'),
|
|
icon
|
|
(
|
|
'exclamation-sign',
|
|
set::size('2x'),
|
|
setClass('text-danger mr-2')
|
|
),
|
|
$lang->upgrade->warnning
|
|
),
|
|
div
|
|
(
|
|
set::style(array('background-color' => 'var(--color-gray-100)')),
|
|
setClass('p-5 mb-4 space-y-2'),
|
|
html($lang->upgrade->warnningContent)
|
|
),
|
|
div
|
|
(
|
|
setClass('text-center'),
|
|
btn
|
|
(
|
|
on::click("self.location.href='" . createLink('upgrade', 'consistency') . "'"),
|
|
set::type('primary'),
|
|
setClass('px-10'),
|
|
set('disabled', 'disabled'),
|
|
$lang->upgrade->common
|
|
)
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
render('pagebase');
|