2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web version view file, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
|
2019-01-31 22:40:19 +08:00
|
|
|
if ( !canView('System') ) {
|
|
|
|
$view = 'error';
|
|
|
|
return;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2019-01-31 22:40:19 +08:00
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
$options = array(
|
2019-01-31 22:40:19 +08:00
|
|
|
'go' => translate('GoToZoneMinder')
|
2008-07-14 21:54:50 +08:00
|
|
|
);
|
|
|
|
|
2019-01-31 22:40:19 +08:00
|
|
|
if ( verNum(ZM_DYN_CURR_VERSION) != verNum(ZM_DYN_LAST_VERSION) and canEdit('System') ) {
|
|
|
|
$options = array_merge( $options, array(
|
|
|
|
'ignore' => translate('VersionIgnore'),
|
|
|
|
'hour' => translate('VersionRemindHour'),
|
|
|
|
'day' => translate('VersionRemindDay'),
|
|
|
|
'week' => translate('VersionRemindWeek'),
|
2020-04-04 23:48:42 +08:00
|
|
|
'month' => translate('VersionRemindMonth'),
|
2019-01-31 22:40:19 +08:00
|
|
|
'never' => translate('VersionRemindNever')
|
|
|
|
) );
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
2019-01-31 22:40:19 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('Version'));
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
2015-05-10 21:10:30 +08:00
|
|
|
<h2><?php echo translate('Version') ?></h2>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<?php
|
2019-01-31 22:40:19 +08:00
|
|
|
if ( ZM_DYN_DB_VERSION && (ZM_DYN_DB_VERSION != ZM_VERSION) ) {
|
2011-05-25 17:15:14 +08:00
|
|
|
?>
|
2014-12-05 07:44:23 +08:00
|
|
|
<p class="errorText"><?php echo sprintf( $CLANG['VersionMismatch'], ZM_VERSION, ZM_DYN_DB_VERSION ) ?></p>
|
2015-05-10 21:10:30 +08:00
|
|
|
<p><?php echo translate('RunLocalUpdate') ?></p>
|
2011-05-25 17:15:14 +08:00
|
|
|
<div id="contentButtons">
|
|
|
|
<?php
|
2019-01-31 22:40:19 +08:00
|
|
|
} else if ( verNum( ZM_DYN_LAST_VERSION ) <= verNum( ZM_VERSION ) ) {
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2019-01-31 22:40:19 +08:00
|
|
|
<p><?php echo sprintf($CLANG['RunningRecentVer'], ZM_VERSION) ?></p>
|
2015-05-10 21:10:30 +08:00
|
|
|
<p><?php echo translate('UpdateNotNecessary') ?></p>
|
2008-07-14 21:54:50 +08:00
|
|
|
<div id="contentButtons">
|
2019-01-31 22:40:19 +08:00
|
|
|
<button type="button" data-on-click="zmWindow"><?php echo translate('GoToZoneMinder') ?></button>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
2019-01-31 22:40:19 +08:00
|
|
|
} else {
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2019-02-10 13:39:19 +08:00
|
|
|
<form name="contentForm" id="contentForm" method="get" action="?">
|
2020-04-04 23:48:42 +08:00
|
|
|
<input type="hidden" name="view" value="version"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<input type="hidden" name="action" value="version"/>
|
2015-05-10 21:10:30 +08:00
|
|
|
<p><?php echo translate('UpdateAvailable') ?></p>
|
2014-12-05 07:44:23 +08:00
|
|
|
<p><?php echo sprintf( $CLANG['LatestRelease'], ZM_DYN_LAST_VERSION, ZM_VERSION ) ?></p>
|
2020-04-04 23:48:42 +08:00
|
|
|
<p><?php echo buildSelect('option', $options); ?></p>
|
2008-07-14 21:54:50 +08:00
|
|
|
<div id="contentButtons">
|
|
|
|
<?php
|
2019-01-31 22:40:19 +08:00
|
|
|
if ( canEdit('System') ) {
|
|
|
|
?>
|
2020-04-04 23:48:42 +08:00
|
|
|
<button type="submit"><?php echo translate('Apply') ?></button>
|
2019-01-31 22:40:19 +08:00
|
|
|
<?php
|
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
?>
|
2019-01-31 22:40:19 +08:00
|
|
|
<button type="button" data-on-click="closeWindow"><?php echo translate('Close') ?></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|