access_url_add_users_to_url.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script allows platform admins to add users to urls.
  5. * It displays a list of users and a list of courses;
  6. * you can select multiple users and courses and then click on
  7. * @package chamilo.admin
  8. * @author Julio Montoya <gugli100@gmail.com>
  9. */
  10. $cidReset = true;
  11. require_once __DIR__.'/../inc/global.inc.php';
  12. $this_section = SECTION_PLATFORM_ADMIN;
  13. api_protect_global_admin_script();
  14. if (!api_get_multiple_access_url()) {
  15. header('Location: index.php');
  16. exit;
  17. }
  18. $form_sent = 0;
  19. $first_letter_user = '';
  20. $first_letter_course = '';
  21. $courses = array();
  22. $url_list = array();
  23. $users = array();
  24. $tbl_access_url_rel_user = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
  25. $tbl_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL);
  26. $tbl_user = Database::get_main_table(TABLE_MAIN_USER);
  27. /* Header */
  28. $tool_name = get_lang('AddUsersToURL');
  29. $interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  30. $interbreadcrumb[] = array('url' => 'access_urls.php', 'name' => get_lang('MultipleAccessURLs'));
  31. Display :: display_header($tool_name);
  32. echo '<div class="actions">';
  33. echo Display::url(
  34. Display::return_icon('edit.png', get_lang('EditUsersToURL'), ''),
  35. api_get_path(WEB_CODE_PATH).'admin/access_url_edit_users_to_url.php'
  36. );
  37. echo '</div>';
  38. api_display_tool_title($tool_name);
  39. if ($_POST['form_sent']) {
  40. $form_sent = $_POST['form_sent'];
  41. $users = is_array($_POST['user_list']) ? $_POST['user_list'] : array();
  42. $url_list = is_array($_POST['url_list']) ? $_POST['url_list'] : array();
  43. $first_letter_user = $_POST['first_letter_user'];
  44. foreach ($users as $key => $value) {
  45. $users[$key] = intval($value);
  46. }
  47. if ($form_sent == 1) {
  48. if (count($users) == 0 || count($url_list) == 0) {
  49. echo Display::return_message(
  50. get_lang('AtLeastOneUserAndOneURL'),
  51. 'error'
  52. );
  53. } else {
  54. UrlManager::add_users_to_urls($users, $url_list);
  55. echo Display::return_message(get_lang('UsersBelongURL'), 'confirm');
  56. }
  57. }
  58. }
  59. /* Display GUI */
  60. if (empty($first_letter_user)) {
  61. $sql = "SELECT count(*) as nb_users FROM $tbl_user";
  62. $result = Database::query($sql);
  63. $num_row = Database::fetch_array($result);
  64. if ($num_row['nb_users'] > 1000) {
  65. //if there are too much users to gracefully handle with the HTML select list,
  66. // assign a default filter on users names
  67. $first_letter_user = 'A';
  68. }
  69. unset($result);
  70. }
  71. $first_letter_user_lower = Database::escape_string(api_strtolower($first_letter_user));
  72. $target_name = api_sort_by_first_name() ? 'firstname' : 'lastname';
  73. $target_name = 'lastname';
  74. $sql = "SELECT user_id,lastname,firstname,username FROM $tbl_user
  75. WHERE ".$target_name." LIKE '".$first_letter_user_lower."%' OR ".$target_name." LIKE '".$first_letter_user_lower."%'
  76. ORDER BY ". (count($users) > 0 ? "(user_id IN(".implode(',', $users).")) DESC," : "")." ".$target_name;
  77. $result = Database::query($sql);
  78. $db_users = Database::store_result($result);
  79. unset($result);
  80. $sql = "SELECT id, url FROM $tbl_access_url WHERE active=1 ORDER BY url";
  81. $result = Database::query($sql);
  82. $db_urls = Database::store_result($result);
  83. unset($result);
  84. ?>
  85. <form name="formulaire" method="post" action="<?php echo api_get_self(); ?>" style="margin:0px;">
  86. <input type="hidden" name="form_sent" value="1"/>
  87. <table border="0" cellpadding="5" cellspacing="0" width="100%">
  88. <tr>
  89. <td width="40%" align="center">
  90. <b><?php echo get_lang('UserList'); ?></b>
  91. <br/><br/>
  92. <?php echo get_lang('Select').' '; echo $target_name == 'firstname' ? get_lang('FirstName') : get_lang('LastName'); ?>
  93. <select name="first_letter_user" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
  94. <option value="">--</option>
  95. <?php
  96. echo Display :: get_alphabet_options($first_letter_user);
  97. ?>
  98. </select>
  99. </td>
  100. <td width="20%">&nbsp;</td>
  101. <td width="40%" align="center">
  102. <b><?php echo get_lang('URLList'); ?> :</b>
  103. </td>
  104. </tr>
  105. <tr>
  106. <td width="40%" align="center">
  107. <select name="user_list[]" multiple="multiple" size="20" style="width:380px;">
  108. <?php
  109. foreach ($db_users as $user) {
  110. ?>
  111. <option value="<?php echo $user['user_id']; ?>" <?php if (in_array($user['user_id'], $users)) echo 'selected="selected"'; ?>>
  112. <?php echo api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')'; ?>
  113. </option>
  114. <?php
  115. }
  116. ?>
  117. </select>
  118. </td>
  119. <td width="20%" valign="middle" align="center">
  120. <button type="submit" class="add"> <?php echo get_lang('AddToThatURL'); ?> </button>
  121. </td>
  122. <td width="40%" align="center">
  123. <select name="url_list[]" multiple="multiple" size="20" style="width:230px;">
  124. <?php
  125. foreach ($db_urls as $url_obj) {
  126. ?>
  127. <option value="<?php echo $url_obj['id']; ?>" <?php if (in_array($url_obj['id'], $url_list)) echo 'selected="selected"'; ?>>
  128. <?php echo $url_obj['url']; ?>
  129. </option>
  130. <?php
  131. }
  132. ?>
  133. </select>
  134. </td>
  135. </tr>
  136. </table>
  137. </form>
  138. <?php
  139. Display :: display_footer();