<?php // new path detection without K4 init: begin define('FULL_PATH', realpath(dirname(__FILE__).'/../..') ); define('BASE_PATH', rtrim(preg_replace('#/admin/help$#', '', str_replace('\\', '/', dirname($_SERVER['PHP_SELF']))), '/')); $rootURL = 'http://'.$_SERVER['HTTP_HOST'].rtrim(BASE_PATH, '/').'/admin/'; // new path detection without K4 init: end $section = $_REQUEST['section']; $section = explode(':', $section); if ($section[0] == 'in-portal') { $section[0] = 'kernel'; } $topic_path = FULL_PATH.'/'.$section[0].'/admin/include/help/'.$section[1].'.txt'; //echo "TP: $topic_path<br>"; ?> <html> <head> <title>In-Portal - Help</title> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <meta http-equiv="Pragma" content="no-cache"> <link rel="stylesheet" type="text/css" href="<?php echo $rootURL; ?>include/style.css"> </head> <body topmargin="0" leftmargin="8" marginheight="8" marginwidth="8" bgcolor="#FFFFFF"> <DIV style='position:relative; z-Index: 1; background-color: #ffffff; padding-top:1px;'> <div style='position:absolute; width:100%;top:0px;' align='right'> <img src='<?php echo $rootURL; ?>images/logo_bg.gif'> </div> <img src="<?php echo $rootURL; ?>images/spacer.gif" width="1" height="7"><br> <div style='z-Index:1; position:relative'> <!-- ADMIN TITLE --> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr><td valign="top" class="admintitle" align="left"> <img title="" width="46" height="46" src="<?php echo $rootURL; ?>images/icon_install.gif" align="absmiddle"> Installtion Help<br> <img src='<?php echo $rootURL; ?>images/spacer.gif' width=1 height=4><br> </td></tr></table> <!-- SECTION NAVIGATOR --> <table border="0" cellpadding="2" cellspacing="0" class="tableborder_full" width="100%" height="30"><tr> <TD class="header_left_bg" width="100%"> <span class="tablenav_link">Install</span> </td> <td align="right" class="tablenav" background="<?php echo $rootURL; ?>images/tabnav_back.jpg" width="10"> </td> </tr> </table> <!-- END SECTION NAVIGATOR --> <table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder"> <tr> <td bgcolor="F6F6F6"> <div class="help_box"> <?php if (file_exists($topic_path)) { echo file_get_contents($topic_path); } ?> </div> </td> </tr> </table> </body> </html>