2004-01-08 19:45:57 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web null view file, $Date$, $Revision$
|
2008-07-25 17:48:16 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2004-01-08 19:45:57 +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.
|
2004-01-08 19:45:57 +08:00
|
|
|
//
|
|
|
|
|
2019-01-22 22:15:25 +08:00
|
|
|
$skinJsPhpFile = getSkinFile('js/skin.js.php');
|
|
|
|
$skinJsFile = getSkinFile('js/skin.js');
|
2004-01-08 19:45:57 +08:00
|
|
|
?>
|
2019-01-22 22:15:25 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2003-07-11 17:27:56 +08:00
|
|
|
<head>
|
2019-01-22 22:15:25 +08:00
|
|
|
<meta charset="utf-8">
|
2014-12-05 07:44:23 +08:00
|
|
|
<title><?php echo ZM_WEB_TITLE_PREFIX ?></title>
|
2019-01-22 22:15:25 +08:00
|
|
|
<script nonce="<?php echo $cspNonce ?>">
|
2008-09-01 20:39:24 +08:00
|
|
|
<?php
|
2019-01-22 22:15:25 +08:00
|
|
|
require_once($skinJsPhpFile);
|
2004-10-13 17:38:54 +08:00
|
|
|
?>
|
2008-07-14 21:54:50 +08:00
|
|
|
</script>
|
2019-01-22 22:15:25 +08:00
|
|
|
<script src="<?php echo cache_bust($skinJsFile) ?>"></script>
|
2019-01-23 23:18:57 +08:00
|
|
|
<script nonce="<?php echo $cspNonce ?>">
|
|
|
|
<?php
|
|
|
|
if ( !$debug )
|
|
|
|
echo 'closeWindow();';
|
|
|
|
?>
|
|
|
|
</script>
|
2003-07-11 17:27:56 +08:00
|
|
|
</head>
|
2008-07-14 21:54:50 +08:00
|
|
|
<body>
|
|
|
|
</body>
|
2003-07-11 17:27:56 +08:00
|
|
|
</html>
|