2008-07-14 21:54:50 +08:00
< ? php
//
// ZoneMinder web run state 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
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
if ( ! canEdit ( 'Monitors' ) )
{
2008-09-26 17:47:20 +08:00
$view = " error " ;
2008-07-14 21:54:50 +08:00
return ;
}
2013-12-18 01:53:15 +08:00
$monitor = dbFetchOne ( 'SELECT C.*,M.* FROM Monitors AS M INNER JOIN Controls AS C ON (M.ControlId = C.Id ) WHERE M.Id = ?' , NULL , array ( $_REQUEST [ 'mid' ]) );
2008-07-14 21:54:50 +08:00
$labels = array ();
2013-12-18 01:53:15 +08:00
foreach ( dbFetchAll ( 'SELECT * FROM ControlPresets WHERE MonitorId = ?' , NULL , array ( $monitor [ 'Id' ] ) ) as $row ) {
2008-07-14 21:54:50 +08:00
$labels [ $row [ 'Preset' ]] = $row [ 'Label' ];
}
$presets = array ();
for ( $i = 1 ; $i <= $monitor [ 'NumPresets' ]; $i ++ )
{
2015-05-10 21:10:30 +08:00
$presets [ $i ] = translate ( 'Preset' ) . " " . $i ;
2008-07-14 21:54:50 +08:00
if ( ! empty ( $labels [ $i ]) )
{
2008-09-26 17:47:20 +08:00
$presets [ $i ] .= " ( " . validHtmlStr ( $labels [ $i ]) . " ) " ;
2008-07-14 21:54:50 +08:00
}
}
$focusWindow = true ;
2015-05-10 21:10:30 +08:00
xhtmlHeaders ( __FILE__ , translate ( 'SetPreset' ) );
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 ( 'SetPreset' ) ?> </h2>
2008-07-14 21:54:50 +08:00
</ div >
< div id = " content " >
2014-12-05 07:44:23 +08:00
< form name = " contentForm " id = " contentForm " method = " post " action = " <?php echo $_SERVER['PHP_SELF'] ?> " >
2009-09-28 22:16:17 +08:00
< input type = " hidden " name = " view " value = " none " />
2014-12-05 07:44:23 +08:00
< input type = " hidden " name = " mid " value = " <?php echo $monitor['Id'] ?> " />
2008-07-14 21:54:50 +08:00
< input type = " hidden " name = " action " value = " control " />
< input type = " hidden " name = " control " value = " presetSet " />
2009-09-28 21:34:10 +08:00
< input type = " hidden " name = " showControls " value = " 1 " />
2014-12-05 07:44:23 +08:00
< p >< ? php echo buildSelect ( " preset " , $presets , " updateLabel() " ) ?> </p>
2015-05-10 21:10:30 +08:00
< p >< label for = " newLabel " >< ? php echo translate ( 'NewLabel' ) ?> </label><input type="text" name="newLabel" id="newLabel" value="" size="16"/></p>
2008-07-14 21:54:50 +08:00
< div id = " contentButtons " >
2015-05-10 21:10:30 +08:00
< input type = " submit " value = " <?php echo translate('Save') ?> " />< input type = " button " value = " <?php echo translate('Cancel') ?> " onclick = " closeWindow() " />
2008-07-14 21:54:50 +08:00
</ div >
</ form >
</ div >
</ div >
</ body >
</ html >