2004-01-07 12:57:07 +00:00
|
|
|
<?php
|
2004-01-08 11:45:57 +00:00
|
|
|
//
|
2008-07-14 13:54:50 +00:00
|
|
|
// ZoneMinder base javascript file, $Date: 2008-04-21 14:52:05 +0100 (Mon, 21 Apr 2008) $, $Revision: 2391 $
|
2008-07-25 09:48:16 +00:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2004-01-08 11:45:57 +00: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 15:23:16 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-01-08 11:45:57 +00:00
|
|
|
//
|
2004-01-07 12:57:07 +00:00
|
|
|
|
2008-07-14 13:54:50 +00:00
|
|
|
//
|
|
|
|
// This file should only contain JavaScript that needs preprocessing by php.
|
2008-07-16 08:40:53 +00:00
|
|
|
// Static JavaScript should go in skin.js
|
2008-07-14 13:54:50 +00:00
|
|
|
//
|
2004-01-07 12:57:07 +00:00
|
|
|
|
2008-07-14 13:54:50 +00:00
|
|
|
?>
|
2014-12-04 23:44:23 +00:00
|
|
|
var AJAX_TIMEOUT = <?php echo ZM_WEB_AJAX_TIMEOUT ?>;
|
2004-01-07 13:24:44 +00:00
|
|
|
|
2014-12-04 23:44:23 +00:00
|
|
|
var currentView = '<?php echo $view ?>';
|
|
|
|
var thisUrl = "<?php echo ZM_BASE_URL.$_SERVER['PHP_SELF'] ?>";
|
|
|
|
var skinPath = "<?php echo ZM_SKIN_PATH ?>";
|
2004-01-07 12:57:07 +00:00
|
|
|
|
2014-12-04 23:44:23 +00:00
|
|
|
var canEditSystem = <?php echo canEdit('System' )?'true':'false' ?>;
|
|
|
|
var canViewSystem = <?php echo canView('System' )?'true':'false' ?>;
|
2004-01-07 12:57:07 +00:00
|
|
|
|
2015-08-15 18:22:13 +00:00
|
|
|
var canEditGroups = <?php echo canEdit('Groups' )?'true':'false' ?>;
|
|
|
|
|
2017-03-27 17:13:08 +00:00
|
|
|
var refreshParent = <?php
|
|
|
|
if ( ! empty($refreshParent) ) {
|
|
|
|
if ( $refreshParent == true ) {
|
|
|
|
echo 'true';
|
|
|
|
} else if ( $refreshParent ) {
|
2017-04-19 14:02:31 +00:00
|
|
|
# This is to tell the parent to refresh to a specific URL
|
2017-03-27 17:13:08 +00:00
|
|
|
echo "'$refreshParent'";
|
2017-06-15 19:45:43 +00:00
|
|
|
} else {
|
|
|
|
echo 'false';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
echo 'false';
|
2017-03-27 17:13:08 +00:00
|
|
|
}
|
|
|
|
?>;
|
2017-07-06 14:48:06 +00:00
|
|
|
var closePopup = <?php
|
|
|
|
if ( ( ! empty($closePopup) ) and ( $closePopup == true ) ) {
|
|
|
|
echo 'true';
|
|
|
|
} else {
|
|
|
|
echo 'false';
|
|
|
|
}
|
|
|
|
?>;
|
2008-07-14 13:54:50 +00:00
|
|
|
|
2014-12-04 23:44:23 +00:00
|
|
|
var focusWindow = <?php echo !empty($focusWindow)?'true':'false' ?>;
|
2010-02-23 09:12:12 +00:00
|
|
|
|
2014-12-04 23:44:23 +00:00
|
|
|
var imagePrefix = "<?php echo viewImagePath( "", '&' ) ?>";
|
2017-05-05 15:53:40 +00:00
|
|
|
|
|
|
|
<?php if ( ZM_OPT_USE_AUTH && ZM_AUTH_HASH_LOGINS ) { ?>
|
2017-05-12 13:05:14 +00:00
|
|
|
var auth_hash = '<?php echo isset($_SESSION['AuthHash']) ? $_SESSION['AuthHash'] : ''; ?>';
|
2017-05-05 15:53:40 +00:00
|
|
|
<?php } ?>
|