123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- <?php
- /* For licensing terms, see /license.txt */
- use ChamiloSession as Session;
- /**
- * @package chamilo.glossary
- *
- * @author Christian Fasanando, initial version
- * @author Bas Wijnen import/export to CSV
- */
- require_once __DIR__.'/../inc/global.inc.php';
- $current_course_tool = TOOL_GLOSSARY;
- // The section (tabs).
- $this_section = SECTION_COURSES;
- // Notification for unauthorized people.
- api_protect_course_script(true);
- // Additional javascripts.
- $htmlHeadXtra[] = GlossaryManager::javascript_glossary();
- $htmlHeadXtra[] = '<script>
- function setFocus(){
- $("#glossary_title").focus();
- }
- $(function() {
- setFocus();
- $( "#dialog:ui-dialog" ).dialog( "destroy" );
- $( "#dialog-confirm" ).dialog({
- autoOpen: false,
- show: "blind",
- resizable: false,
- height:300,
- modal: true
- });
- $("#export_opener").click(function() {
- var targetUrl = $(this).attr("href");
- $( "#dialog-confirm" ).dialog({
- width:400,
- height:300,
- buttons: {
- "'.addslashes(get_lang('Download')).'": function() {
- var export_format = $("input[name=export_format]:checked").val();
- location.href = targetUrl+"&export_format="+export_format;
- $( this ).dialog( "close" );
- }
- }
- });
- $( "#dialog-confirm" ).dialog("open");
- return false;
- });
- });
- </script>';
- // Tracking
- Event::event_access_tool(TOOL_GLOSSARY);
- function sorter($item1, $item2)
- {
- if ($item1[2] == $item2[2]) {
- return 0;
- }
- return $item1[2] < $item2[2] ? -1 : 1;
- }
- // Displaying the header
- $action = isset($_GET['action']) ? Security::remove_XSS($_GET['action']) : '';
- $currentUrl = api_get_self().'?'.api_get_cidreq();
- $interbreadcrumb[] = ['url' => 'index.php?'.api_get_cidreq(), 'name' => get_lang('Glossary')];
- $content = '';
- $tool_name = '';
- switch ($action) {
- case 'addglossary':
- if (!api_is_allowed_to_edit(null, true)) {
- api_not_allowed(true);
- }
- $tool_name = get_lang('Add');
- $form = new FormValidator(
- 'glossary',
- 'post',
- api_get_self().'?action=addglossary&'.api_get_cidreq()
- );
- // Setting the form elements
- $form->addElement('header', get_lang('Add new glossary term'));
- if (api_get_configuration_value('save_titles_as_html')) {
- $form->addHtmlEditor(
- 'name',
- get_lang('Term'),
- false,
- false,
- ['ToolbarSet' => 'TitleAsHtml']
- );
- } else {
- $form->addElement('text', 'name', get_lang('Term'), ['id' => 'glossary_title']);
- }
- $form->addElement(
- 'html_editor',
- 'description',
- get_lang('Term definition'),
- null,
- ['ToolbarSet' => 'Glossary', 'Height' => '300']
- );
- $form->addButtonCreate(get_lang('Save term'), 'SubmitGlossary');
- // setting the rules
- $form->addRule('name', get_lang('Required field'), 'required');
- // The validation or display
- if ($form->validate()) {
- $check = Security::check_token('post');
- if ($check) {
- $values = $form->exportValues();
- GlossaryManager::save_glossary($values);
- }
- Security::clear_token();
- header('Location: '.$currentUrl);
- exit;
- } else {
- $token = Security::get_token();
- $form->addElement('hidden', 'sec_token');
- $form->setConstants(['sec_token' => $token]);
- $content = Display::toolbarAction(
- 'add_glossary',
- [
- Display::url(
- Display::return_icon('back.png', get_lang('Back'), [], ICON_SIZE_MEDIUM),
- api_get_self().'?'.api_get_cidreq()
- ),
- ]
- );
- $content .= $form->returnForm();
- }
- break;
- case 'edit_glossary':
- if (!api_is_allowed_to_edit(null, true)) {
- api_not_allowed(true);
- }
- $tool_name = get_lang('Edit');
- $glossaryId = isset($_GET['glossary_id']) ? (int) $_GET['glossary_id'] : 0;
- if (!empty($glossaryId)) {
- // initiate the object
- $form = new FormValidator(
- 'glossary',
- 'post',
- api_get_self().'?action=edit_glossary&glossary_id='.$glossaryId.'&'.api_get_cidreq()
- );
- // Setting the form elements
- $form->addElement('header', get_lang('Edit term'));
- $form->addElement('hidden', 'glossary_id');
- if (api_get_configuration_value('save_titles_as_html')) {
- $form->addHtmlEditor(
- 'name',
- get_lang('Term'),
- false,
- false,
- ['ToolbarSet' => 'TitleAsHtml']
- );
- } else {
- $form->addElement('text', 'name', get_lang('Term'), ['id' => 'glossary_title']);
- }
- $form->addElement(
- 'html_editor',
- 'description',
- get_lang('Term definition'),
- null,
- ['ToolbarSet' => 'Glossary', 'Height' => '300']
- );
- // setting the defaults
- $glossary_data = GlossaryManager::get_glossary_information($glossaryId);
- // Date treatment for timezones
- if (!empty($glossary_data['insert_date'])) {
- $glossary_data['insert_date'] = Display::dateToStringAgoAndLongDate($glossary_data['insert_date']);
- } else {
- $glossary_data['insert_date'] = '';
- }
- if (!empty($glossary_data['update_date'])) {
- $glossary_data['update_date'] = Display::dateToStringAgoAndLongDate($glossary_data['update_date']);
- } else {
- $glossary_data['update_date'] = '';
- }
- $form->addLabel(get_lang('Creation date'), $glossary_data['insert_date']);
- $form->addLabel(get_lang('Updated'), $glossary_data['update_date']);
- $form->addButtonUpdate(get_lang('Update term'), 'SubmitGlossary');
- $form->setDefaults($glossary_data);
- // setting the rules
- $form->addRule('name', get_lang('Required field'), 'required');
- // The validation or display
- if ($form->validate()) {
- $check = Security::check_token('post');
- if ($check) {
- $values = $form->exportValues();
- GlossaryManager::update_glossary($values);
- }
- Security::clear_token();
- header('Location: '.$currentUrl);
- exit;
- } else {
- $token = Security::get_token();
- $form->addElement('hidden', 'sec_token');
- $form->setConstants(['sec_token' => $token]);
- $content = Display::toolbarAction(
- 'edit_glossary',
- [
- Display::url(
- Display::return_icon('back.png', get_lang('Back'), [], ICON_SIZE_MEDIUM),
- api_get_self().'?'.api_get_cidreq()
- ),
- ]
- );
- $content .= $form->returnForm();
- }
- }
- break;
- case 'delete_glossary':
- if (!api_is_allowed_to_edit(null, true)) {
- api_not_allowed(true);
- }
- GlossaryManager::delete_glossary($_GET['glossary_id']);
- Security::clear_token();
- header('Location: '.$currentUrl);
- exit;
- break;
- case 'moveup':
- //GlossaryManager::move_glossary('up',$_GET['glossary_id']); //actions not available
- GlossaryManager::display_glossary();
- break;
- case 'movedown':
- //GlossaryManager::move_glossary('down',$_GET['glossary_id']); //actions not available
- GlossaryManager::display_glossary();
- break;
- case 'import':
- if (!api_is_allowed_to_edit(null, true)) {
- api_not_allowed(true);
- }
- $tool_name = get_lang('Import glossary');
- $form = new FormValidator(
- 'glossary',
- 'post',
- api_get_self().'?action=import&'.api_get_cidreq()
- );
- $form->addHeader(get_lang('Import glossary'));
- $form->addElement('file', 'file', get_lang('File'));
- $group = [];
- $group[] = $form->createElement(
- 'radio',
- 'file_type',
- '',
- 'CSV',
- 'csv'
- );
- $group[] = $form->createElement(
- 'radio',
- 'file_type',
- '',
- 'XLS',
- 'xls'
- );
- $form->addGroup($group, '', get_lang('File type'), null);
- $form->addElement('checkbox', 'replace', null, get_lang('Delete all terms before import.'));
- $form->addElement('checkbox', 'update', null, get_lang('Update existing terms.'));
- $form->addButtonImport(get_lang('Import'), 'SubmitImport');
- $form->setDefaults(['file_type' => 'csv']);
- $content = $form->returnForm();
- $content .= get_lang('The CSV file must look like this').' ('.get_lang('Fields in <strong>bold</strong> are mandatory.').')';
- $content .= '<pre>
- <strong>term</strong>;<strong>definition</strong>;
- "Hello";"Hola";
- "Goodbye";"Adiós";
- </pre>';
- if ($form->validate()) {
- $values = $form->getSubmitValues();
- $termsDeleted = [];
- //this is a bad idea //jm
- if (isset($_POST['replace']) && $_POST['replace']) {
- foreach (GlossaryManager::get_glossary_terms() as $term) {
- if (!GlossaryManager::delete_glossary($term['id'], false)) {
- Display::addFlash(
- Display::return_message(get_lang('Cannot delete glossary').':'.$term['id'], 'error')
- );
- } else {
- $termsDeleted[] = $term['name'];
- }
- }
- }
- $updateTerms = isset($_POST['update']) && $_POST['update'] ? true : false;
- $format = $values['file_type'];
- switch ($format) {
- case 'csv':
- $data = Import::csvToArray($_FILES['file']['tmp_name']);
- break;
- case 'xls':
- $data = Import::xlsToArray($_FILES['file']['tmp_name']);
- break;
- }
- $goodList = [];
- $updatedList = [];
- $addedList = [];
- $badList = [];
- $doubles = [];
- $added = [];
- $termsPerKey = [];
- if ($data) {
- $termsToAdd = [];
- foreach ($data as $item) {
- if (!isset($item['term'])) {
- continue;
- }
- $items = [
- 'name' => $item['term'],
- 'description' => $item['definition'],
- ];
- $termsToAdd[] = $items;
- $termsPerKey[$item['term']] = $items;
- }
- if (empty($termsToAdd)) {
- Display::addFlash(
- Display::return_message(get_lang('Nothing to add'), 'warning')
- );
- header('Location: '.$currentUrl);
- exit;
- }
- $repeatItems = array_count_values(array_column($termsToAdd, 'name'));
- foreach ($repeatItems as $item => $count) {
- if ($count > 1) {
- $doubles[] = $item;
- }
- }
- $uniqueTerms = array_unique(array_keys($repeatItems));
- foreach ($uniqueTerms as $itemTerm) {
- $item = $termsPerKey[$itemTerm];
- if ($updateTerms) {
- $glossaryInfo = GlossaryManager::get_glossary_term_by_glossary_name($item['name']);
- if (!empty($glossaryInfo)) {
- $glossaryInfo['description'] = $item['description'];
- GlossaryManager::update_glossary($glossaryInfo, false);
- $updatedList[] = $item['name'];
- } else {
- $result = GlossaryManager::save_glossary($item, false);
- if ($result) {
- $addedList[] = $item['name'];
- } else {
- $badList[] = $item['name'];
- }
- }
- } else {
- $result = GlossaryManager::save_glossary($item, false);
- if ($result) {
- $addedList[] = $item['name'];
- } else {
- $badList[] = $item['name'];
- }
- }
- }
- }
- if (count($termsDeleted) > 0) {
- Display::addFlash(
- Display::return_message(get_lang('Term removed').': '.implode(', ', $termsDeleted))
- );
- }
- if (count($updatedList) > 0) {
- Display::addFlash(
- Display::return_message(get_lang('Terms updated').': '.implode(', ', $updatedList))
- );
- }
- if (count($addedList) > 0) {
- Display::addFlash(
- Display::return_message(get_lang('Terms added').': '.implode(', ', $addedList))
- );
- }
- if (count($badList) > 0) {
- Display::addFlash(
- Display::return_message(
- get_lang('Term already exists').': '.implode(', ', $badList),
- 'error'
- )
- );
- }
- if (count($doubles) > 0) {
- Display::addFlash(
- Display::return_message(
- get_lang('Terms duplicated in file').': '.implode(', ', $doubles),
- 'warning'
- )
- );
- }
- header('Location: '.$currentUrl);
- exit;
- }
- break;
- case 'export':
- if (!api_is_allowed_to_edit(null, true)) {
- api_not_allowed(true);
- }
- $format = isset($_GET['export_format']) ? $_GET['export_format'] : 'csv';
- GlossaryManager::exportToFormat($format);
- break;
- case 'changeview':
- if (in_array($_GET['view'], ['list', 'table'])) {
- Session::write('glossary_view', $_GET['view']);
- } else {
- $view = Session::read('glossary_view');
- $defaultView = api_get_configuration_value('default_glossary_view');
- if (empty($defaultView)) {
- $defaultView = 'table';
- }
- if (empty($view)) {
- Session::write('glossary_view', $defaultView);
- }
- }
- header('Location: '.$currentUrl);
- exit;
- break;
- case 'export_documents':
- GlossaryManager::movePdfToDocuments();
- header('Location: '.$currentUrl);
- exit;
- break;
- default:
- $tool_name = get_lang('List');
- $htmlHeadXtra[] = '<script type="text/javascript" src="'.api_get_path(WEB_CODE_PATH).'glossary/glossary.js.php?add_ready=1&'.api_get_cidreq().'"></script>';
- $htmlHeadXtra[] = api_get_js('jquery.highlight.js');
- $content = GlossaryManager::display_glossary();
- break;
- }
- Display::display_header($tool_name);
- Display::display_introduction_section(TOOL_GLOSSARY);
- echo $content;
- $extra = '<div id="dialog-confirm" title="'.get_lang('Please confirm your choice').'">';
- $form = new FormValidator(
- 'report',
- 'post',
- api_get_self().'?'.api_get_cidreq(),
- null,
- ['class' => 'form-vertical']
- );
- $form->addElement(
- 'radio',
- 'export_format',
- null,
- get_lang('CSV export'),
- 'csv',
- ['id' => 'export_format_csv_label']
- );
- $form->addElement(
- 'radio',
- 'export_format',
- null,
- get_lang('Excel export'),
- 'xls',
- ['id' => 'export_format_xls_label']
- );
- $form->addElement(
- 'radio',
- 'export_format',
- null,
- get_lang('Export to PDF'),
- 'pdf',
- ['id' => 'export_format_pdf_label']
- );
- $form->setDefaults(['export_format' => 'csv']);
- $extra .= $form->returnForm();
- $extra .= '</div>';
- echo $extra;
- Display::display_footer();
|