class_import.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. */
  6. /**
  7. * Code
  8. * This tool allows platform admins to add classes by uploading a CSV file
  9. * @todo Add some langvars to DLTT
  10. */
  11. /**
  12. * Validates imported data.
  13. */
  14. function validate_data($classes) {
  15. $errors = array();
  16. foreach ($classes as $index => $class) {
  17. // 1. Check wheter ClassName is available.
  18. if (!isset($class['ClassName']) || strlen(trim($class['ClassName'])) == 0) {
  19. $class['line'] = $index + 2;
  20. $class['error'] = get_lang('MissingClassName');
  21. $errors[] = $class;
  22. }
  23. // 2. Check whether class doesn't exist yet.
  24. else {
  25. if (ClassManager::class_name_exists($class['ClassName'])) {
  26. $class['line'] = $index + 2;
  27. $class['error'] = get_lang('ClassNameExists').' <strong>'.$class['ClassName'].'</strong>';
  28. $errors[] = $class;
  29. }
  30. }
  31. }
  32. return $errors;
  33. }
  34. /**
  35. * Save imported class data to database
  36. */
  37. function save_data($classes) {
  38. $number_of_added_classes = 0;
  39. foreach ($classes as $index => $class) {
  40. if (ClassManager::create_class($class['ClassName'])) {
  41. $number_of_added_classes++;
  42. }
  43. }
  44. return $number_of_added_classes;
  45. }
  46. // Resetting the course id.
  47. $cidReset = true;
  48. // Including some necessary dokeos files.
  49. include '../inc/global.inc.php';
  50. // Setting the section (for the tabs).
  51. $this_section = SECTION_PLATFORM_ADMIN;
  52. // Access restrictions.
  53. api_protect_admin_script();
  54. // setting breadcrumbs
  55. $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  56. $interbreadcrumb[] = array ('url' => 'class_list.php', 'name' => get_lang('Classes'));
  57. // Database Table Definitions
  58. // Setting the name of the tool.
  59. $tool_name = get_lang('ImportClassListCSV');
  60. // Displaying the header.
  61. Display :: display_header($tool_name);
  62. //api_display_tool_title($tool_name);
  63. set_time_limit(0);
  64. $form = new FormValidator('import_classes');
  65. $form->addElement('file', 'import_file', get_lang('ImportCSVFileLocation'));
  66. $form->addButtonImport(get_lang('Import'));
  67. if ($form->validate()) {
  68. $classes = Import::csvToArray($_FILES['import_file']['tmp_name']);
  69. $errors = validate_data($classes);
  70. if (count($errors) == 0) {
  71. $number_of_added_classes = save_data($classes);
  72. Display::display_normal_message($number_of_added_classes.' '.get_lang('ClassesCreated'));
  73. } else {
  74. $error_message = get_lang('ErrorsWhenImportingFile');
  75. $error_message .= '<ul>';
  76. foreach ($errors as $index => $error_class) {
  77. $error_message .= '<li>'.$error_class['error'].' ('.get_lang('Line').' '.$error_class['line'].')';
  78. $error_message .= '</li>';
  79. }
  80. $error_message .= '</ul>';
  81. $error_message .= get_lang('NoClassesHaveBeenCreated');
  82. Display :: display_error_message($error_message);
  83. }
  84. }
  85. $form->display();
  86. ?>
  87. <p><?php echo get_lang('CSVMustLookLike').' ('.get_lang('MandatoryFields').')'; ?> :</p>
  88. <pre>
  89. <b>ClassName</b>
  90. <b>1A</b>
  91. <b>1B</b>
  92. <b>2A group 1</b>
  93. <b>2A group 2</b>
  94. </pre>
  95. <?php
  96. // Displaying the footer.
  97. Display :: display_footer();