104 lines
3.5 KiB
PHP
104 lines
3.5 KiB
PHP
<?php
|
|
//
|
|
// ZoneMinder web monitor groups file, $Date$, $Revision$
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
|
//
|
|
// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
//
|
|
|
|
if ( !canView('Groups') ) {
|
|
$view = 'error';
|
|
return;
|
|
}
|
|
|
|
# This will end up with the group_id of the deepest selection
|
|
$group_id = 0;
|
|
$max_depth = 0;
|
|
|
|
$Groups = array();
|
|
foreach ( ZM\Group::find() as $Group ) {
|
|
$Groups[$Group->Id()] = $Group;
|
|
}
|
|
|
|
# This array is indexed by parent_id
|
|
$children = array();
|
|
foreach ( $Groups as $id=>$Group ) {
|
|
if ( ! isset( $children[$Group->ParentId()] ) )
|
|
$children[$Group->ParentId()] = array();
|
|
$children[$Group->ParentId()][] = $Group;
|
|
if ( $max_depth < $Group->depth() )
|
|
$max_depth = $Group->depth();
|
|
}
|
|
xhtmlHeaders(__FILE__, translate('Groups'));
|
|
?>
|
|
<body>
|
|
<div id="page">
|
|
<?php echo $navbar = getNavBarHTML(); ?>
|
|
<div id="content">
|
|
<form name="groupsForm" method="get" action="?">
|
|
<input type="hidden" name="view" value="none"/>
|
|
<input type="hidden" name="action" value="setgroup"/>
|
|
<table id="contentTable" class="major">
|
|
<thead class="thead-highlight">
|
|
<tr>
|
|
<th class="colName" colspan="<?php echo $max_depth+1 ?>"><?php echo translate('Name') ?></th>
|
|
<th class="colIds"><?php echo translate('Monitors') ?></th>
|
|
<th class="colSelect"><?php echo translate('Mark') ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
function group_line( $Group ) {
|
|
global $children;
|
|
global $max_depth;
|
|
$html = '<tr>';
|
|
$html .= str_repeat('<td class="colName"> </td>', $Group->depth());
|
|
$html .= '<td class="colName" colspan="'.($max_depth-($Group->depth()-1)).'">';
|
|
if ( canEdit('Groups') ) {
|
|
$html .= '<a href="#" onclick="editGroup('.$Group->Id().');">'. validHtmlStr($Group->Id() . ' ' . $Group->Name()).'</a>';
|
|
} else {
|
|
$html .= validHtmlStr($Group->Name());
|
|
}
|
|
$html .= '</td><td class="colIds">'. monitorIdsToNames($Group->MonitorIds(), 30).'</td>
|
|
<td class="colSelect"><input type="checkbox" name="gid[]" value="'. $Group->Id() .'" data-on-click-this="configureButtons"/></td>
|
|
</tr>
|
|
';
|
|
if ( isset( $children[$Group->Id()] ) ) {
|
|
foreach ( $children[$Group->Id()] as $G ) {
|
|
$html .= group_line($G);
|
|
}
|
|
}
|
|
return $html;
|
|
}
|
|
if ( isset( $children[null] ) )
|
|
foreach ( $children[null] as $Group )
|
|
echo group_line($Group);
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<div id="contentButtons">
|
|
<button type="button" value="New" data-on-click="newGroup"<?php echo canEdit('Groups')?'':' disabled="disabled"' ?>>
|
|
<?php echo translate('New') ?>
|
|
</button>
|
|
<button type="button" name="deleteBtn" value="Delete" data-on-click-this="deleteGroup" disabled="disabled">
|
|
<?php echo translate('Delete') ?>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|