Index: trunk/admin/include/elements.php =================================================================== diff -u -r13 -r36 --- trunk/admin/include/elements.php (.../elements.php) (revision 13) +++ trunk/admin/include/elements.php (.../elements.php) (revision 36) @@ -198,6 +198,50 @@ } }//Page Header +// HELP Page Header +function int_help_header() +{ + global $pathtoroot; + global $pathtolocal; + global $section; + global $objSections; + global $rootURL; + global $localURL; + global $adminURL; + global $envar; + global $admin; + global $metatag; + + $style_sheet_global = $adminURL."/include/style.css"; + $style_sheet_local = $localURL."admin/include/style.css"; + + $ExtraTitle = htmlentities($ExtraTitle); + + // TOOLBAR: + print "In-Portal - Help"; + print ""; + print ""; + print ""; + load_module_styles(); + require_once ($pathtoroot.$admin."/include/mainscript.php"); + + print ""; + + + if(strlen($section)>0) + { + $objSections->SetCurrentSection($section); + $sec = $objSections->GetCurrentSection(); + + if ($sec->Get("notitle") != 1) print $objSections->page_title(); + + if ($sec->Get("nonavbar") != 1) //Section Navigatior + print $objSections->section_header($envar,$NavBarText,$ExtraTitle, true); + + } +}// HELP Page Header + + function int_SectionHeader($toolbar=NULL,$onLoad=NULL,$NavBarText=NULL,$ExtraTitle=NULL) { global $pathtoroot;