55ed454889
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@117 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
12 lines
311 B
PHP
12 lines
311 B
PHP
<?php
|
|
$TOPDIR = '..';
|
|
require_once("$TOPDIR/lib/GroupNodeTable.class.php");
|
|
|
|
$nodeGroupName = @$_REQUEST["nodeGroupName"];
|
|
|
|
// Get all the nodes with node information of the group
|
|
$nodes = getNodes($nodeGroupName, array('type'));
|
|
echo GroupNodeTable::getNodeGroupSection($nodeGroupName, $nodes);
|
|
|
|
?>
|