* @copyright 2003-2013 PgPool Global Development Group
* @version CVS: $Id$
*/
/* --------------------------------------------------------------------- */
/* nodeServerStatus.php */
/* --------------------------------------------------------------------- */
require_once('common.php');
// Check login status
if (!isset($_SESSION[SESSION_LOGIN_USER])) {
header('Location: login.php');
exit();
}
// Set Vars
$tpl->assign('help', basename( __FILE__, '.php'));
// Display
$is_pgpool_running = DoesPgpoolPidExist();
$tpl->assign('pgpoolIsRunning', $is_pgpool_running);
$tpl->display('nodeServerStatus.tpl');