access_url_add_users_to_url.php 5.1 KB

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