2007-10-26 22:44:33 +00:00
|
|
|
<?php
|
2007-11-28 19:37:25 +00:00
|
|
|
$TOPDIR = '..';
|
|
|
|
require_once("$TOPDIR/lib/GroupNodeTable.class.php");
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
$nodeGroupName = @$_REQUEST["nodeGroupName"];
|
|
|
|
|
|
|
|
// Get all the nodes with node information of the group
|
2007-12-03 18:16:38 +00:00
|
|
|
$nodes = getNodes($nodeGroupName, array('type'));
|
|
|
|
echo GroupNodeTable::getNodeGroupSection($nodeGroupName, $nodes);
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
?>
|