From: Thierry Parmentelat Date: Tue, 20 Jan 2009 14:48:08 +0000 (+0000) Subject: tabs reordered, and delete needs confirmation X-Git-Tag: PLEWWW-4.3-1~98 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=d0b2675251beb1bd2bcc81cc65d431282810e212;p=plewww.git tabs reordered, and delete needs confirmation --- diff --git a/planetlab/nodes/node.php b/planetlab/nodes/node.php index c0fbd4f..ce0095f 100644 --- a/planetlab/nodes/node.php +++ b/planetlab/nodes/node.php @@ -107,20 +107,19 @@ if (empty($nodes)) { // available actions if ( ! $peer_id && $extra_privileges ) { - $tabs["All nodes"]=l_nodes(); - // xxx subject to roles - $tabs["Add Interface"]=l_interface_add_u($node_id); - $tabs["Comon"]=l_comon("node_id",$node_id); - if ($extra_privileges) { - $tabs["Events"]=l_event("Node","node",$node_id); - } - $tabs['Update'] = array ('url'=>"/db/nodes/node_actions.php", 'method'=>'POST', 'values'=>array('action'=>'prompt-update','node_id'=>$node_id)); - $tabs['Delete (no confirm)'] = array ('url'=>"/db/nodes/node_actions.php", + $tabs['Delete'] = array ('url'=>"/db/nodes/node_actions.php", 'method'=>'POST', - 'values'=>array('action'=>'delete','node_id'=>$node_id)); + 'values'=>array('action'=>'delete','node_id'=>$node_id), + 'confirm'=>'Are you sure to delete ' . $hostname. ' ?'); + // xxx subject to roles + $tabs["Add Interface"]=l_interface_add_u($node_id); + $tabs["Comon"]=l_comon("node_id",$node_id); + $tabs["Events"]=l_event("Node","node",$node_id); + + $tabs["All nodes"]=l_nodes(); plc_tabs($tabs);