2004-01-07 20:57:07 +08:00
|
|
|
<?php
|
2004-01-08 19:45:57 +08:00
|
|
|
//
|
2008-07-14 21:54:50 +08:00
|
|
|
// ZoneMinder base javascript file, $Date: 2008-04-21 14:52:05 +0100 (Mon, 21 Apr 2008) $, $Revision: 2391 $
|
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
|
|
|
//
|
2004-01-07 20:57:07 +08:00
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
// This file should only contain JavaScript that needs preprocessing by php.
|
2008-07-16 16:40:53 +08:00
|
|
|
// Static JavaScript should go in skin.js
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
2004-01-07 20:57:07 +08:00
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2014-12-05 07:44:23 +08:00
|
|
|
var AJAX_TIMEOUT = <?php echo ZM_WEB_AJAX_TIMEOUT ?>;
|
2004-01-07 21:24:44 +08:00
|
|
|
|
2014-12-05 07:44:23 +08: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 20:57:07 +08:00
|
|
|
|
2014-12-05 07:44:23 +08:00
|
|
|
var canEditSystem = <?php echo canEdit('System' )?'true':'false' ?>;
|
|
|
|
var canViewSystem = <?php echo canView('System' )?'true':'false' ?>;
|
2004-01-07 20:57:07 +08:00
|
|
|
|
2015-08-16 02:22:13 +08:00
|
|
|
var canEditGroups = <?php echo canEdit('Groups' )?'true':'false' ?>;
|
|
|
|
|
2014-12-05 07:44:23 +08:00
|
|
|
var refreshParent = <?php echo !empty($refreshParent)?'true':'false' ?>;
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2014-12-05 07:44:23 +08:00
|
|
|
var focusWindow = <?php echo !empty($focusWindow)?'true':'false' ?>;
|
2010-02-23 17:12:12 +08:00
|
|
|
|
2017-12-05 10:26:59 +08:00
|
|
|
var imagePrefix = "<?php echo "?view=image&eid=" ?>";
|