-
Notifications
You must be signed in to change notification settings - Fork 487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Language: Use parent ISO code + self ID for new sub languages #6016
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
api_protect_admin_script(); | ||
|
||
$request = Container::getRequest(); | ||
$em = Database::getManager(); | ||
|
||
$requestAction = $request->query->get('action'); | ||
|
||
|
@@ -32,181 +33,172 @@ | |
$interbreadcrumb[] = ['url' => 'index.php', 'name' => get_lang('Administration')]; | ||
$interbreadcrumb[] = ['url' => 'languages.php', 'name' => get_lang('Chamilo Portal Languages')]; | ||
|
||
$sub_language_id_exist = SubLanguageManager::languageExistsById($request->query->getInt('sub_language_id')); | ||
$language_id_exist = SubLanguageManager::languageExistsById($request->query->getInt('id')); | ||
$language_name = ''; | ||
$language_details = []; | ||
$parent_id = $request->query->getInt('id'); | ||
|
||
//add data | ||
if ($sub_language_id_exist) { | ||
$language_name = SubLanguageManager::get_name_of_language_by_id($_GET['sub_language_id']); | ||
$sub_language_id = $request->query->getInt('sub_language_id'); | ||
if (!SubLanguageManager::languageExistsById($parent_id)) { | ||
Display::addFlash( | ||
Display::return_message(get_lang('The parent language does not exist.')) | ||
); | ||
api_location(api_get_path(WEB_CODE_PATH).'admin/languages.php'); | ||
} | ||
|
||
if ($language_id_exist) { | ||
$language_details = SubLanguageManager::get_all_information_of_language($_GET['id']); | ||
$language_name = $language_details['original_name']; | ||
$parent_id = $request->query->getInt('id'); | ||
} | ||
$language_details = SubLanguageManager::get_all_information_of_language($parent_id); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "language_details" is not in valid camel caps format There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "parent_id" is not in valid camel caps format |
||
$language_name = $language_details['original_name']; | ||
|
||
//removed and register | ||
if ($language_id_exist && $sub_language_id_exist) { | ||
$get_all_information = SubLanguageManager::getAllInformationOfSubLanguage($parent_id, $sub_language_id); | ||
$original_name = $get_all_information->getOriginalName(); | ||
$english_name = $get_all_information->getEnglishName(); | ||
$isocode = $get_all_information->getIsocode(); | ||
} | ||
if ('definenewsublanguage' === $requestAction) { | ||
$form = new FormValidator( | ||
'addsublanguage', | ||
'post', | ||
'sub_language_add.php?id='.Security::remove_XSS($_GET['id']).'&action=definenewsublanguage' | ||
); | ||
$form->addHeader( | ||
get_lang('Create sub-languageForLanguage').' ( '.strtolower($language_name).' )' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "language_name" is not in valid camel caps format |
||
); | ||
$form->addText('original_name', get_lang('Original name'), true, ['class' => 'input_titles']); | ||
$form->addText('english_name', get_lang('English name'), true, ['class' => 'input_titles']); | ||
$form->addText('isocode', get_lang('ISO code'), true, ['class' => 'input_titles']); | ||
$form->addElement('static', null, ' ', '<i>en, es, fr</i>'); | ||
$form->addCheckBox('sub_language_is_visible', '', get_lang('Visibility')); | ||
$form->addButtonCreate(get_lang('Create sub-language'), 'SubmitAddNewLanguage'); | ||
$form->protect(); | ||
|
||
$language_name = get_lang('Create sub-languageForLanguage').' ( '.strtolower($language_name).' )'; | ||
if ($form->validate()) { | ||
$values = $form->exportValues(); | ||
$values['english_name'] = str_replace(' ', '_', $values['english_name']); | ||
$values['isocode'] = str_replace(' ', '_', $values['isocode']); | ||
|
||
if ($request->request->has('SubmitAddNewLanguage')) { | ||
$original_name = $request->request->get('original_name'); | ||
$english_name = str_replace(' ', '_', $request->request->get('english_name')); | ||
$isocode = str_replace(' ', '_', $request->request->get('isocode')); | ||
$check_information = SubLanguageManager::checkIfLanguageExists( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "check_information" is not in valid camel caps format |
||
$values['original_name'], | ||
$values['english_name'], | ||
$values['isocode'] | ||
); | ||
$allow_insert_info = $check_information['execute_add'] ?? false; | ||
|
||
$sublanguage_available = $request->request->getInt('sub_language_is_visible'); | ||
$check_information = SubLanguageManager::checkIfLanguageExists($original_name, $english_name, $isocode); | ||
$allow_insert_info = $check_information['execute_add'] ?? false; | ||
if ($check_information['original_name'] ) { | ||
Display::addFlash( | ||
Display::return_message( | ||
sprintf( | ||
'%s "%s (%s)', | ||
get_lang('Already exists'), | ||
get_lang('Original name'), | ||
$values['original_name'] | ||
), | ||
'error' | ||
) | ||
); | ||
} | ||
if ($check_information['english_name'] ) { | ||
Display::addFlash( | ||
Display::return_message( | ||
get_lang('Already exists').' "'.get_lang('English name').'" '.'('.$values['english_name'].')', | ||
'error' | ||
) | ||
); | ||
} | ||
if ($check_information['isocode'] ) { | ||
Display::addFlash( | ||
Display::return_message(get_lang('This code does not exist').': '.$values['isocode'], 'error') | ||
); | ||
} | ||
|
||
if ($check_information['original_name'] ) { | ||
Display::addFlash( | ||
Display::return_message( | ||
get_lang('Already exists').' "'.get_lang('Original name').'" '.'('.$original_name.')', | ||
'error' | ||
) | ||
); | ||
} | ||
if ($check_information['english_name'] ) { | ||
Display::addFlash( | ||
Display::return_message( | ||
get_lang('Already exists').' "'.get_lang('English name').'" '.'('.$english_name.')', | ||
'error' | ||
) | ||
); | ||
} | ||
if ($check_information['isocode'] ) { | ||
Display::addFlash( | ||
Display::return_message(get_lang('This code does not exist').': '.$isocode.'', 'error') | ||
); | ||
} | ||
if (strlen($values['original_name']) > 0 && strlen($values['english_name']) > 0 && strlen($values['isocode']) > 0) { | ||
if ($allow_insert_info) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "allow_insert_info" is not in valid camel caps format |
||
//$values['english_name'] = str_replace(' ', '_', $values['english_name']); | ||
//Fixes BT#1636 | ||
$values['english_name'] = api_strtolower($values['english_name']); | ||
|
||
try { | ||
$newSubLanguage = SubLanguageManager::addSubLanguage( | ||
$values['original_name'], | ||
$values['english_name'], | ||
$values['sub_language_is_visible'] ?? false, | ||
$parent_id, | ||
$language_details['isocode'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "language_details" is not in valid camel caps format |
||
); | ||
|
||
if (strlen($original_name) > 0 && strlen($english_name) > 0 && strlen($isocode) > 0) { | ||
if ($allow_insert_info && $language_id_exist) { | ||
$english_name = str_replace(' ', '_', $english_name); | ||
//Fixes BT#1636 | ||
$english_name = api_strtolower($english_name); | ||
|
||
$firstIso = substr($language_details['isocode'], 0, 2); | ||
//$english_name = str_starts_with($english_name, $firstIso.'_') ? $english_name : $firstIso.'_'.$english_name; | ||
|
||
$isocode = SubLanguageManager::generateSublanguageCode($firstIso, $request->request->get('english_name')); | ||
$str_info = '<br/>'.get_lang('Original name').' : ' | ||
.$original_name.'<br/>'.get_lang('English name').' : ' | ||
.$english_name.'<br/>'.get_lang('Character set').' : '.$isocode; | ||
|
||
$mkdir_result = SubLanguageManager::addPoFileForSubLanguage($isocode); | ||
if ($mkdir_result) { | ||
$sl_id = SubLanguageManager::addSubLanguage( | ||
$original_name, | ||
$english_name, | ||
$sublanguage_available, | ||
$parent_id, | ||
$isocode | ||
); | ||
if (false === $sl_id) { | ||
SubLanguageManager::removePoFileForSubLanguage($isocode); | ||
if (SubLanguageManager::addPoFileForSubLanguage($newSubLanguage->getIsocode())) { | ||
$str_info = '<br/>'.get_lang('Original name').' : ' | ||
.$values['original_name'].'<br/>'.get_lang('English name').' : ' | ||
.$values['english_name'].'<br/>'.get_lang('Character set').' : '.$newSubLanguage->getIsocode(); | ||
|
||
Display::addFlash( | ||
Display::return_message(get_lang('The new sub-language has been added').$str_info, 'normal', false) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "str_info" is not in valid camel caps format |
||
); | ||
api_location(api_get_path(WEB_CODE_PATH).'admin/languages.php?sub_language_id='.$newSubLanguage->getId()); | ||
} else { | ||
$em->remove($newSubLanguage); | ||
$em->flush(); | ||
|
||
throw new Exception(); | ||
} | ||
} catch (Exception $e) { | ||
Display::addFlash( | ||
Display::return_message( | ||
get_lang('The /main/lang directory, used on this portal to store the languages, is not writable. Please contact your platform administrator and report this message.'), | ||
'error' | ||
) | ||
); | ||
} else { | ||
Display::addFlash( | ||
Display::return_message(get_lang('The new sub-language has been added').$str_info, null, false) | ||
); | ||
api_location(api_get_path(WEB_CODE_PATH).'admin/languages.php?sub_language_id='.$sl_id); | ||
} | ||
} else { | ||
Display::addFlash( | ||
Display::return_message( | ||
get_lang('The /main/lang directory, used on this portal to store the languages, is not writable. Please contact your platform administrator and report this message.'), | ||
'error' | ||
) | ||
); | ||
} | ||
} elseif (false === $language_id_exist) { | ||
} else { | ||
Display::addFlash( | ||
Display::return_message(get_lang('The parent language does not exist.'), 'error') | ||
Display::return_message( | ||
get_lang('The form contains incorrect or incomplete data. Please check your input.'), | ||
'error' | ||
) | ||
); | ||
} | ||
} else { | ||
Display::addFlash( | ||
Display::return_message( | ||
get_lang('The form contains incorrect or incomplete data. Please check your input.'), | ||
'error' | ||
) | ||
); | ||
} | ||
} | ||
|
||
if (isset($_POST['SubmitAddDeleteLanguage'])) { | ||
$removed = SubLanguageManager::removeSubLanguage($_GET['id'], $_GET['sub_language_id']); | ||
if ($removed) { | ||
Display::addFlash( | ||
Display::return_message(get_lang('The sub language has been removed.')) | ||
); | ||
api_location(api_get_path(WEB_CODE_PATH).'admin/languages.php'); | ||
} | ||
} | ||
|
||
if ('definenewsublanguage' === $requestAction) { | ||
$form = new FormValidator( | ||
'addsublanguage', | ||
'post', | ||
'sub_language_add.php?id='.Security::remove_XSS($_GET['id']).'&action=definenewsublanguage' | ||
); | ||
$class = 'add'; | ||
$form->addHeader($language_name); | ||
$form->addText('original_name', get_lang('Original name'), true, ['class' => 'input_titles']); | ||
$form->addText('english_name', get_lang('English name'), true, ['class' => 'input_titles']); | ||
$form->addText('isocode', get_lang('ISO code'), true, ['class' => 'input_titles']); | ||
$form->addElement('static', null, ' ', '<i>en, es, fr</i>'); | ||
$form->addCheckBox('sub_language_is_visible', '', get_lang('Visibility')); | ||
$form->addButtonCreate(get_lang('Create sub-language'), 'SubmitAddNewLanguage'); | ||
$form->setDefaults([ | ||
//'original_name' => $language_details['original_name'].'...'; -> cannot be used because of quickform filtering (freeze), | ||
'english_name' => $language_details['english_name'].'2', | ||
'isocode' => $language_details['isocode'], | ||
]); | ||
$content .= $form->returnForm(); | ||
} else { | ||
if (true === SubLanguageManager::isParentOfSubLanguage($parent_id) | ||
&& 'deletesublanguage' === $requestAction | ||
) { | ||
$language_name = get_lang('Delete sub-language'); | ||
|
||
$form = new FormValidator( | ||
'deletesublanguage', | ||
'post', | ||
'sub_language_add.php?id='.http_build_query([ | ||
'id' => $request->query->getInt('id'), | ||
'sub_language_id' => $request->query->getInt('sub_language_id'), | ||
]) | ||
); | ||
$class = 'minus'; | ||
$form->addHeader($language_name); | ||
$form->addElement('static', '', get_lang('Original name'), $original_name); | ||
$form->addElement('static', '', get_lang('English name'), $english_name); | ||
$form->addElement('static', '', get_lang('Character set'), $isocode); | ||
$form->addButtonCreate(get_lang('Delete sub-language'), 'SubmitAddDeleteLanguage'); | ||
$content .= $form->returnForm(); | ||
} | ||
if ('definenewsublanguage' == $requestAction) { | ||
} elseif (true === SubLanguageManager::isParentOfSubLanguage($parent_id) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "parent_id" is not in valid camel caps format |
||
&& 'deletesublanguage' === $requestAction | ||
) { | ||
$sub_language_id = $request->query->getInt('sub_language_id'); | ||
|
||
if (!SubLanguageManager::languageExistsById($sub_language_id)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Variable "sub_language_id" is not in valid camel caps format |
||
Display::addFlash( | ||
Display::return_message(get_lang('The sub-language of this language has been added')) | ||
Display::return_message(get_lang('The sub-language does not exist.')) | ||
); | ||
|
||
api_location(api_get_path(WEB_CODE_PATH).'admin/languages.php'); | ||
} | ||
|
||
$language_name = SubLanguageManager::get_name_of_language_by_id($sub_language_id); | ||
$get_all_information = SubLanguageManager::getAllInformationOfSubLanguage($parent_id, $sub_language_id); | ||
|
||
$form = new FormValidator( | ||
'deletesublanguage', | ||
'post', | ||
'sub_language_add.php?id='.http_build_query([ | ||
'id' => $parent_id, | ||
'sub_language_id' => $sub_language_id, | ||
]) | ||
); | ||
$form->addHeader(get_lang('Delete sub-language')); | ||
$form->addElement('static', '', get_lang('Original name'), $get_all_information->getOriginalName()); | ||
$form->addElement('static', '', get_lang('English name'), $get_all_information->getEnglishName()); | ||
$form->addElement('static', '', get_lang('Character set'), $get_all_information->getIsocode()); | ||
$form->addButtonCreate(get_lang('Delete sub-language'), 'SubmitAddDeleteLanguage'); | ||
$form->protect(); | ||
|
||
if ($form->validate()) { | ||
$removed = SubLanguageManager::removeSubLanguage($parent_id, $sub_language_id); | ||
|
||
if ($removed) { | ||
Display::addFlash( | ||
Display::return_message(get_lang('The sub language has been removed.')) | ||
); | ||
api_location(api_get_path(WEB_CODE_PATH).'admin/languages.php'); | ||
} | ||
} | ||
|
||
$content .= $form->returnForm(); | ||
} | ||
/** | ||
* Footer. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable "parent_id" is not in valid camel caps format