Subversion-Projekte lars-tiefland.openvz_admin

Revision

Revision 131 | Revision 136 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 131 Revision 132
Zeile 1... Zeile 1...
1
<?php
1
<?php
2
	//$Id: load.php 131 2008-05-22 15:33:21Z lars $
2
	//$Id: load.php 132 2008-05-22 15:37:07Z lars $
3
	/**
3
	/**
4
	 * 	@package	openvz_admin
4
	 * 	@package	openvz_admin
5
	 * 	@author		Lars Tiefland <ltiefland@gmail.com> 
5
	 * 	@author		Lars Tiefland <ltiefland@gmail.com> 
6
	 **/
6
	 **/
7
	require ("include/common.php");
7
	require ("include/common.php");
8
	$hns = HN::getHNs();
8
	$hns = HN::getHNs();
9
	unset($hns[-1]);
9
	unset($hns[-1]);
10
	#	$hns[3]="gate.dynalias.net";
-
 
11
	foreach ($hns as $hn_id => $hn_name)
10
	foreach ($hns as $hn_id => $hn_name)
12
	{
11
	{
13
		$configs = load_configs($hn_id, $hn_name);
12
		$configs = load_configs($hn_id, $hn_name);
14
		foreach ($configs as $conf_id => $config)
13
		foreach ($configs as $conf_id => $config)
15
		{
14
		{
Zeile 131... Zeile 130...
131
					echo $res->getUserInfo();
130
					echo $res->getUserInfo();
132
				}
131
				}
133
			}
132
			}
134
		}
133
		}
135
	}
134
	}
136
?>
-
 
137
  
-
 
138
135
?>
-
 
136
139
137