2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web group detail 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
|
|
|
//
|
|
|
|
|
2015-08-16 02:45:43 +08:00
|
|
|
if ( !canEdit( 'Groups' ) )
|
2008-07-14 21:54:50 +08:00
|
|
|
{
|
2008-09-26 17:47:20 +08:00
|
|
|
$view = "error";
|
2008-07-14 21:54:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !empty($_REQUEST['gid']) )
|
|
|
|
{
|
|
|
|
$newGroup = dbFetchGroup( $_REQUEST['gid'] );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$newGroup = array(
|
|
|
|
"Id" => "",
|
|
|
|
"Name" => "New Group",
|
|
|
|
"MonitorIds" => ""
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-05-10 21:10:30 +08:00
|
|
|
xhtmlHeaders( __FILE__, translate('Group')." - ".$newGroup['Name'] );
|
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('Group') ?> - <?php echo $newGroup['Name'] ?></h2>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2014-12-05 07:44:23 +08:00
|
|
|
<form name="groupForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<input type="hidden" name="action" value="group"/>
|
2014-12-05 07:44:23 +08:00
|
|
|
<input type="hidden" name="gid" value="<?php echo $newGroup['Id'] ?>"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<table id="contentTable" class="major" cellspacing="0">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2015-05-10 21:10:30 +08:00
|
|
|
<th scope="row"><?php echo translate('Name') ?></th>
|
2014-12-05 07:44:23 +08:00
|
|
|
<td><input type="text" name="newGroup[Name]" value="<?php echo validHtmlStr($newGroup['Name']) ?>"/></td>
|
2008-07-14 21:54:50 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2015-05-10 21:10:30 +08:00
|
|
|
<th scope="row"><?php echo translate('MonitorIds') ?></th>
|
2009-05-13 18:48:58 +08:00
|
|
|
<td>
|
2008-07-14 21:54:50 +08:00
|
|
|
<select name="newGroup[MonitorIds][]" size="4" multiple="multiple">
|
|
|
|
<?php
|
|
|
|
$monitors = dbFetchAll( "select Id,Name from Monitors order by Sequence asc" );
|
2010-02-16 01:10:10 +08:00
|
|
|
$monitorIds = array_flip( explode( ',', $newGroup['MonitorIds'] ) );
|
2008-07-14 21:54:50 +08:00
|
|
|
foreach ( $monitors as $monitor )
|
|
|
|
{
|
|
|
|
if ( visibleMonitor( $monitor['Id'] ) )
|
|
|
|
{
|
|
|
|
?>
|
2016-03-09 23:43:44 +08:00
|
|
|
<option value="<?php echo $monitor['Id'] ?>"<?php if ( array_key_exists( $monitor['Id'], $monitorIds ) ) { ?> selected="selected"<?php } ?> onclick="configureButtons( this );"><?php echo validHtmlStr($monitor['Name']) ?></option>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<div id="contentButtons">
|
2016-03-09 23:43:44 +08:00
|
|
|
<input type="submit" name="saveBtn" value="<?php echo translate('Save') ?>" disabled="disabled" />
|
2015-05-10 21:10:30 +08:00
|
|
|
<input type="button" value="<?php echo translate('Cancel') ?>" onclick="closeWindow()"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|