' . (preg_match("/\<(?:p|br) ?\/?\>/", $OC_configAR['OC_homePageNotice']) ? $OC_configAR['OC_homePageNotice'] : nl2br($OC_configAR['OC_homePageNotice'])) . "\n";
}
// Language selection
if (function_exists('gettext')) {
$locales = explode(',', $OC_configAR['OC_locales']);
sort($locales);
if (count($locales) > 1) {
print '
' . "\n";
}
}
if (oc_hookSet('home-menu-top')) {
foreach ($OC_hooksAR['home-menu-top'] as $v) {
print $v;
}
}
print '' . oc_('Authors') . ':
';
if ($OC_configAR['OC_paperAdvocates']) {
print '
' . oc_('Review & Program Committees') . ':
';
} else {
print '
' . oc_('Reviewers') . ':
';
}
// Committee Signin open?
if ($OC_statusAR['OC_rev_signin_open'] || ($OC_configAR['OC_paperAdvocates'] && $OC_statusAR['OC_pc_signin_open'])) {
print '- ' . oc_('Sign In') . '
';
$signin = true;
} else { $signin = false; }
// Committee Signup open?
if ($OC_statusAR['OC_rev_signup_open'] || ($OC_configAR['OC_paperAdvocates'] && $OC_statusAR['OC_pc_signup_open'])) {
print '
-
';
} elseif (!$signin) {
print '- ' . oc_('Committee sign-in is closed') . "
\n";
}
if (oc_hookSet('home-menu-committees')) {
print '';
foreach ($OC_hooksAR['home-menu-committees'] as $v) {
print '- ' . $v . '
';
}
}
print '
' . oc_('Chair') . ':
- ' . oc_('Sign In') . '
';
if (oc_hookSet('home-menu-chair')) {
print '';
foreach ($OC_hooksAR['home-menu-chair'] as $v) {
print '- ' . $v . '
';
}
}
print '
';
if (oc_hookSet('home-menu-extras')) {
foreach ($OC_hooksAR['home-menu-extras'] as $v) {
print $v;
}
}
printFooter();
?>