bd63d8fc0b
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2236 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
18 lines
578 B
PHP
18 lines
578 B
PHP
<?php
|
|
|
|
// Returns the nodes of a group expanded in the group/node table
|
|
|
|
$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('nodetype.os','nodetype.arch','nodetype.profile','nodehm.power','nodehm.mgt','nodelist.comments'));
|
|
//$nodes = getNodes($nodeGroupName, 'nodetype.os');
|
|
|
|
// Display the rows in the table for these nodes
|
|
echo GroupNodeTable::getNodeGroupSection($nodeGroupName, $nodes);
|
|
|
|
?>
|