access_url_add_users_to_url.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. // name of the language file that needs to be included
  11. $language_file = 'admin';
  12. $cidReset = true;
  13. require_once '../inc/global.inc.php';
  14. $this_section=SECTION_PLATFORM_ADMIN;
  15. require_once (api_get_path(LIBRARY_PATH).'urlmanager.lib.php');
  16. api_protect_admin_script();
  17. if (!$_configuration['multiple_access_urls']) {
  18. header('Location: index.php');
  19. exit;
  20. }
  21. /*
  22. Global constants and variables
  23. */
  24. $form_sent = 0;
  25. $first_letter_user = '';
  26. $first_letter_course = '';
  27. $courses = array ();
  28. $url_list = array();
  29. $users = array();
  30. $tbl_access_url_rel_user = Database :: get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
  31. $tbl_access_url = Database :: get_main_table(TABLE_MAIN_ACCESS_URL);
  32. $tbl_user = Database :: get_main_table(TABLE_MAIN_USER);
  33. /* Header */
  34. $tool_name = get_lang('AddUsersToURL');
  35. $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  36. $interbreadcrumb[] = array ('url' => 'access_urls.php', 'name' => get_lang('MultipleAccessURLs'));
  37. /* MAIN CODE */
  38. Display :: display_header($tool_name);
  39. echo '<div class="actions" style="height:22px;">';
  40. echo '<div style="float:right;">
  41. <a href="'.api_get_path(WEB_CODE_PATH).'admin/access_url_edit_users_to_url.php">'.Display::return_icon('edit.gif',get_lang('EditUsersToURL'),'').get_lang('EditUsersToURL').'</a>
  42. </div><br />';
  43. echo '</div>';
  44. api_display_tool_title($tool_name);
  45. if ($_POST['form_sent']) {
  46. $form_sent = $_POST['form_sent'];
  47. $users = is_array($_POST['user_list']) ? $_POST['user_list'] : array() ;
  48. $url_list = is_array($_POST['url_list']) ? $_POST['url_list'] : array() ;
  49. $first_letter_user = $_POST['first_letter_user'];
  50. foreach($users as $key => $value) {
  51. $users[$key] = intval($value);
  52. }
  53. if ($form_sent == 1)
  54. {
  55. if ( count($users) == 0 || count($url_list) == 0) {
  56. Display :: display_error_message(get_lang('AtLeastOneUserAndOneURL'));
  57. //header('Location: access_urls.php?action=show_message&message='.get_lang('AtLeastOneUserAndOneURL'));
  58. } else {
  59. UrlManager::add_users_to_urls($users,$url_list);
  60. Display :: display_confirmation_message(get_lang('UsersBelongURL'));
  61. //header('Location: access_urls.php?action=show_message&message='.get_lang('UsersBelongURL'));
  62. }
  63. }
  64. }
  65. /* Display GUI */
  66. if(empty($first_letter_user)) {
  67. $sql = "SELECT count(*) as nb_users FROM $tbl_user";
  68. $result = Database::query($sql);
  69. $num_row = Database::fetch_array($result);
  70. if($num_row['nb_users']>1000) {
  71. //if there are too much users to gracefully handle with the HTML select list,
  72. // assign a default filter on users names
  73. $first_letter_user = 'A';
  74. }
  75. unset($result);
  76. }
  77. $first_letter_user = Database::escape_string($first_letter_user);
  78. $target_name = api_sort_by_first_name() ? 'firstname' : 'lastname';
  79. $sql = "SELECT user_id,lastname,firstname,username FROM $tbl_user
  80. WHERE ".$target_name." LIKE '".$first_letter_user."%' OR ".$target_name." LIKE '".api_strtolower($first_letter_user)."%'
  81. ORDER BY ". (count($users) > 0 ? "(user_id IN(".implode(',', $users).")) DESC," : "")." ".$target_name;
  82. $result = Database::query($sql);
  83. $db_users = Database::store_result($result);
  84. unset($result);
  85. $sql = "SELECT id, url FROM $tbl_access_url WHERE active=1 ORDER BY url";
  86. $result = Database::query($sql);
  87. $db_urls = Database::store_result($result);
  88. unset($result);
  89. ?>
  90. <form name="formulaire" method="post" action="<?php echo api_get_self(); ?>" style="margin:0px;">
  91. <input type="hidden" name="form_sent" value="1"/>
  92. <table border="0" cellpadding="5" cellspacing="0" width="100%">
  93. <tr>
  94. <td width="40%" align="center">
  95. <b><?php echo get_lang('UserList'); ?></b>
  96. <br/><br/>
  97. <?php echo get_lang('FirstLetterUser'); ?> :
  98. <select name="first_letter_user" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
  99. <option value="">--</option>
  100. <?php
  101. echo Display :: get_alphabet_options($first_letter_user);
  102. ?>
  103. </select>
  104. </td>
  105. <td width="20%">&nbsp;</td>
  106. <td width="40%" align="center">
  107. <b><?php echo get_lang('URLList'); ?> :</b>
  108. </td>
  109. </tr>
  110. <tr>
  111. <td width="40%" align="center">
  112. <select name="user_list[]" multiple="multiple" size="20" style="width:250px;">
  113. <?php
  114. foreach ($db_users as $user) {
  115. ?>
  116. <option value="<?php echo $user['user_id']; ?>" <?php if(in_array($user['user_id'],$users)) echo 'selected="selected"'; ?>><?php echo api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')'; ?></option>
  117. <?php
  118. }
  119. ?>
  120. </select>
  121. </td>
  122. <td width="20%" valign="middle" align="center">
  123. <input type="submit" value="<?php echo get_lang('AddToThatURL'); ?> &gt;&gt;"/>
  124. </td>
  125. <td width="40%" align="center">
  126. <select name="url_list[]" multiple="multiple" size="20" style="width:230px;">
  127. <?php
  128. foreach ($db_urls as $url_obj) {
  129. ?>
  130. <option value="<?php echo $url_obj['id']; ?>" <?php if(in_array($url_obj['id'],$url_list)) echo 'selected="selected"'; ?>><?php echo $url_obj['url']; ?></option>
  131. <?php
  132. }
  133. ?>
  134. </select>
  135. </td>
  136. </tr>
  137. </table>
  138. </form>
  139. <?php
  140. /* FOOTER */
  141. Display :: display_footer();
  142. ?>