Show notice on top of inscription form when custom page is enabled - refs BT#13566

pull/2487/head
Angel Fernando Quiroz Campos 7 years ago
parent 859d31af92
commit 94023040ef
  1. 28
      main/auth/inscription.php

@ -439,9 +439,10 @@ if (!CustomPages::enabled()) {
if (api_get_setting('allow_terms_conditions') === 'true' && $user_already_registered_show_terms) {
$tool_name = get_lang('TermsAndConditions');
}
}
$home = api_get_path(SYS_APP_PATH).'home/';
if (api_is_multiple_url_enabled()) {
$home = api_get_path(SYS_APP_PATH).'home/';
if (api_is_multiple_url_enabled()) {
$access_url_id = api_get_current_access_url_id();
if ($access_url_id != -1) {
$url_info = api_get_access_url($access_url_id);
@ -452,30 +453,29 @@ if (!CustomPages::enabled()) {
$home_old = api_get_path(SYS_APP_PATH).'home/';
$home = api_get_path(SYS_APP_PATH).'home/'.$clean_url;
}
}
}
if (file_exists($home.'register_top_'.$user_selected_language.'.html')) {
if (file_exists($home.'register_top_'.$user_selected_language.'.html')) {
$home_top_temp = @(string) file_get_contents($home.'register_top_'.$user_selected_language.'.html');
$open = str_replace('{rel_path}', api_get_path(REL_PATH), $home_top_temp);
$open = api_to_system_encoding($open, api_detect_encoding(strip_tags($open)));
if (!empty($open)) {
$content = '<div class="well_border">'.$open.'</div>';
}
}
}
// Forbidden to self-register
if ($isNotAllowedHere) {
// Forbidden to self-register
if ($isNotAllowedHere) {
api_not_allowed(true, get_lang('RegistrationDisabled'));
}
}
if (api_get_setting('allow_registration') === 'approval') {
if (api_get_setting('allow_registration') === 'approval') {
$content .= Display::return_message(get_lang('YourAccountHasToBeApproved'));
}
}
//if openid was not found
if (!empty($_GET['openid_msg']) && $_GET['openid_msg'] == 'idnotfound') {
//if openid was not found
if (!empty($_GET['openid_msg']) && $_GET['openid_msg'] == 'idnotfound') {
$content .= Display::return_message(get_lang('OpenIDCouldNotBeFoundPleaseRegister'));
}
}
$showTerms = false;
@ -1004,7 +1004,7 @@ if ($form->validate()) {
if (CustomPages::enabled() && CustomPages::exists(CustomPages::REGISTRATION)) {
CustomPages::display(
CustomPages::REGISTRATION,
array('form' => $form)
array('form' => $form, 'content' => $content)
);
} else {
if (!api_is_anonymous()) {

Loading…
Cancel
Save