add_sessions_to_usergroup.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. */
  6. // name of the language file that needs to be included
  7. $language_file=array('admin','registration');
  8. // resetting the course id
  9. $cidReset=true;
  10. // including some necessary files
  11. require_once '../inc/global.inc.php';
  12. $xajax = new xajax();
  13. //$xajax->debugOn();
  14. $xajax->registerFunction('search_sessions');
  15. // setting the section (for the tabs)
  16. $this_section = SECTION_PLATFORM_ADMIN;
  17. // Access restrictions
  18. api_protect_admin_script(true);
  19. // setting breadcrumbs
  20. $interbreadcrumb[]=array('url' => 'index.php','name' => get_lang('PlatformAdmin'));
  21. $interbreadcrumb[]=array('url' => 'usergroups.php','name' => get_lang('Classes'));
  22. // Database Table Definitions
  23. // setting the name of the tool
  24. $tool_name=get_lang('SubscribeClassToSessions');
  25. $add_type = 'multiple';
  26. if(isset($_REQUEST['add_type']) && $_REQUEST['add_type']!=''){
  27. $add_type = Security::remove_XSS($_REQUEST['add_type']);
  28. }
  29. $htmlHeadXtra[] = $xajax->getJavascript('../inc/lib/xajax/');
  30. $htmlHeadXtra[] = '<script>
  31. function add_user_to_session (code, content) {
  32. document.getElementById("user_to_add").value = "";
  33. document.getElementById("ajax_list_users_single").innerHTML = "";
  34. destination = document.getElementById("elements_in");
  35. for (i=0;i<destination.length;i++) {
  36. if(destination.options[i].text == content) {
  37. return false;
  38. }
  39. }
  40. destination.options[destination.length] = new Option(content,code);
  41. destination.selectedIndex = -1;
  42. sortOptions(destination.options);
  43. }
  44. function remove_item(origin) {
  45. for(var i = 0 ; i<origin.options.length ; i++) {
  46. if(origin.options[i].selected) {
  47. origin.options[i]=null;
  48. i = i-1;
  49. }
  50. }
  51. }
  52. function validate_filter() {
  53. document.formulaire.add_type.value = \''.$add_type.'\';
  54. document.formulaire.form_sent.value=0;
  55. document.formulaire.submit();
  56. }
  57. </script>';
  58. $form_sent = 0;
  59. $errorMsg = '';
  60. $sessions=array();
  61. $usergroup = new UserGroup();
  62. $id = intval($_GET['id']);
  63. if (isset($_POST['form_sent']) && $_POST['form_sent']) {
  64. $form_sent = $_POST['form_sent'];
  65. $elements_posted = $_POST['elements_in_name'];
  66. if (!is_array($elements_posted)) {
  67. $elements_posted = array();
  68. }
  69. if ($form_sent == 1) {
  70. //added a parameter to send emails when registering a user
  71. $usergroup->subscribe_sessions_to_usergroup($id, $elements_posted);
  72. header('Location: usergroups.php');
  73. exit;
  74. }
  75. }
  76. $data = $usergroup->get($id);
  77. $session_list_in = $usergroup->get_sessions_by_usergroup($id);
  78. $session_list = SessionManager::get_sessions_list(array(), array('name'));
  79. //api_display_tool_title($tool_name.' ('.$session_info['name'].')');
  80. $elements_not_in = $elements_in= array();
  81. if (!empty($session_list)) {
  82. foreach($session_list as $session) {
  83. if (in_array($session['id'], $session_list_in)) {
  84. $elements_in[$session['id']] = $session['name'];
  85. } else {
  86. $elements_not_in[$session['id']] = $session['name'];
  87. }
  88. }
  89. }
  90. $ajax_search = $add_type == 'unique' ? true : false;
  91. //checking for extra field with filter on
  92. function search_sessions($needle,$type) {
  93. global $tbl_user,$elements_in;
  94. $xajax_response = new XajaxResponse();
  95. $return = '';
  96. if (!empty($needle) && !empty($type)) {
  97. // xajax send utf8 datas... datas in db can be non-utf8 datas
  98. $charset = api_get_system_encoding();
  99. $needle = Database::escape_string($needle);
  100. $needle = api_convert_encoding($needle, $charset, 'utf-8');
  101. if ($type == 'single') {
  102. // search users where username or firstname or lastname begins likes $needle
  103. /* $sql = 'SELECT user.user_id, username, lastname, firstname FROM '.$tbl_user.' user
  104. WHERE (username LIKE "'.$needle.'%"
  105. OR firstname LIKE "'.$needle.'%"
  106. OR lastname LIKE "'.$needle.'%") AND user.user_id<>"'.$user_anonymous.'" AND user.status<>'.DRH.''.
  107. $order_clause.
  108. ' LIMIT 11';*/
  109. } else {
  110. $session_list = SessionManager::get_sessions_list(array('s.name LIKE' => "$needle%"));
  111. }
  112. $i=0;
  113. if ($type=='single') {
  114. /*
  115. while ($user = Database :: fetch_array($rs)) {
  116. $i++;
  117. if ($i<=10) {
  118. $person_name = api_get_person_name($user['firstname'], $user['lastname']);
  119. $return .= '<a href="javascript: void(0);" onclick="javascript: add_user_to_session(\''.$user['user_id'].'\',\''.$person_name.' ('.$user['username'].')'.'\')">'.$person_name.' ('.$user['username'].')</a><br />';
  120. } else {
  121. $return .= '...<br />';
  122. }
  123. }
  124. $xajax_response -> addAssign('ajax_list_users_single','innerHTML',api_utf8_encode($return));*/
  125. } else {
  126. $return .= '<select id="elements_not_in" name="elements_not_in_name[]" multiple="multiple" size="15" style="width:360px;">';
  127. foreach ($session_list as $row ) {
  128. if (!in_array($row['id'], array_keys($elements_in))) {
  129. $return .= '<option value="'.$row['id'].'">'.$row['name'].'</option>';
  130. }
  131. }
  132. $return .= '</select>';
  133. $xajax_response -> addAssign('ajax_list_multiple','innerHTML',api_utf8_encode($return));
  134. }
  135. }
  136. return $xajax_response;
  137. }
  138. $xajax -> processRequests();
  139. Display::display_header($tool_name);
  140. if ($add_type == 'multiple') {
  141. $link_add_type_unique = '<a href="'.api_get_self().'?add_type=unique">'.Display::return_icon('single.gif').get_lang('SessionAddTypeUnique').'</a>';
  142. $link_add_type_multiple = Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple');
  143. } else {
  144. $link_add_type_unique = Display::return_icon('single.gif').get_lang('SessionAddTypeUnique');
  145. $link_add_type_multiple = '<a href="'.api_get_self().'?add_type=multiple">'.Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple').'</a>';
  146. }
  147. echo '<div class="actions">';
  148. echo '<a href="usergroups.php">'.Display::return_icon('back.png',get_lang('Back'),'',ICON_SIZE_MEDIUM).'</a>';
  149. echo '</div>';
  150. ?>
  151. <form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?id=<?php echo $id; if(!empty($_GET['add'])) echo '&add=true' ; ?>" style="margin:0px;" <?php if($ajax_search){echo ' onsubmit="valide();"';}?>>
  152. <?php
  153. echo '<legend>'.$data['name'].': '.$tool_name.'</legend>';
  154. if ($add_type=='multiple') {
  155. /*
  156. if (is_array($extra_field_list)) {
  157. if (is_array($new_field_list) && count($new_field_list)>0 ) {
  158. echo '<h3>'.get_lang('FilterUsers').'</h3>';
  159. foreach ($new_field_list as $new_field) {
  160. echo $new_field['name'];
  161. $varname = 'field_'.$new_field['variable'];
  162. echo '&nbsp;<select name="'.$varname.'">';
  163. echo '<option value="0">--'.get_lang('Select').'--</option>';
  164. foreach ($new_field['data'] as $option) {
  165. $checked='';
  166. if (isset($_POST[$varname])) {
  167. if ($_POST[$varname]==$option[1]) {
  168. $checked = 'selected="true"';
  169. }
  170. }
  171. echo '<option value="'.$option[1].'" '.$checked.'>'.$option[1].'</option>';
  172. }
  173. echo '</select>';
  174. echo '&nbsp;&nbsp;';
  175. }
  176. echo '<input type="button" value="'.get_lang('Filter').'" onclick="validate_filter()" />';
  177. echo '<br /><br />';
  178. }
  179. }*/
  180. }
  181. echo Display::input('hidden','id',$id);
  182. echo Display::input('hidden','form_sent','1');
  183. echo Display::input('hidden','add_type',null);
  184. if(!empty($errorMsg)) {
  185. Display::display_normal_message($errorMsg); //main API
  186. }
  187. ?>
  188. <table border="0" cellpadding="5" cellspacing="0" width="100%">
  189. <tr>
  190. <td align="center"><b><?php echo get_lang('SessionsInPlatform') ?> :</b>
  191. </td>
  192. <td></td>
  193. <td align="center"><b><?php echo get_lang('SessionsInGroup') ?> :</b></td>
  194. </tr>
  195. <?php if ($add_type=='multiple') { ?>
  196. <tr>
  197. <td align="center">
  198. <?php echo get_lang('FirstLetterSessions'); ?> :
  199. <select name="firstLetterUser" onchange = "xajax_search_sessions(this.value,'multiple')" >
  200. <option value = "%">--</option>
  201. <?php
  202. echo Display :: get_alphabet_options();
  203. ?>
  204. </select>
  205. </td>
  206. <td align="center">&nbsp;</td>
  207. </tr>
  208. <?php } ?>
  209. <tr>
  210. <td align="center">
  211. <div id="content_source">
  212. <?php
  213. if (!($add_type=='multiple')) {
  214. ?>
  215. <input type="text" id="user_to_add" onkeyup="xajax_search_users(this.value,'single')" />
  216. <div id="ajax_list_users_single"></div>
  217. <?php
  218. } else {
  219. ?>
  220. <div id="ajax_list_multiple">
  221. <?php echo Display::select('elements_not_in_name',$elements_not_in, '',array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'elements_not_in','size'=>'15px'),false); ?>
  222. </div>
  223. <?php
  224. }
  225. ?>
  226. </div>
  227. </td>
  228. <td width="10%" valign="middle" align="center">
  229. <?php
  230. if ($ajax_search) {
  231. ?>
  232. <button class="arrowl" type="button" onclick="remove_item(document.getElementById('elements_in'))" ></button>
  233. <?php
  234. } else {
  235. ?>
  236. <button class="arrowr" type="button" onclick="moveItem(document.getElementById('elements_not_in'), document.getElementById('elements_in'))" onclick="moveItem(document.getElementById('elements_not_in'), document.getElementById('elements_in'))"></button>
  237. <br /><br />
  238. <button class="arrowl" type="button" onclick="moveItem(document.getElementById('elements_in'), document.getElementById('elements_not_in'))" onclick="moveItem(document.getElementById('elements_in'), document.getElementById('elements_not_in'))"></button>
  239. <?php
  240. }
  241. ?>
  242. <br /><br /><br /><br /><br /><br />
  243. </td>
  244. <td align="center">
  245. <?php
  246. echo Display::select('elements_in_name[]', $elements_in, '', array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'elements_in','size'=>'15px'),false );
  247. unset($sessionUsersList);
  248. ?>
  249. </td>
  250. </tr>
  251. <tr>
  252. <td colspan="3" align="center">
  253. <br />
  254. <?php
  255. echo '<button class="save" type="button" value="" onclick="valide()" >'.get_lang('SubscribeClassToSessions').'</button>';
  256. ?>
  257. </td>
  258. </tr>
  259. </table>
  260. </form>
  261. <script>
  262. function valide(){
  263. var options = document.getElementById('elements_in').options;
  264. for (i = 0 ; i<options.length ; i++)
  265. options[i].selected = true;
  266. document.forms.formulaire.submit();
  267. }
  268. function loadUsersInSelect(select){
  269. var xhr_object = null;
  270. if(window.XMLHttpRequest) // Firefox
  271. xhr_object = new XMLHttpRequest();
  272. else if(window.ActiveXObject) // Internet Explorer
  273. xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
  274. else // XMLHttpRequest non supporté par le navigateur
  275. alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
  276. xhr_object.open("POST", "loadUsersInSelect.ajax.php");
  277. xhr_object.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  278. nosessionUsers = makepost(document.getElementById('elements_not_in'));
  279. sessionUsers = makepost(document.getElementById('elements_in'));
  280. nosessionClasses = makepost(document.getElementById('origin_classes'));
  281. sessionClasses = makepost(document.getElementById('destination_classes'));
  282. xhr_object.send("nosessionusers="+nosessionUsers+"&sessionusers="+sessionUsers+"&nosessionclasses="+nosessionClasses+"&sessionclasses="+sessionClasses);
  283. xhr_object.onreadystatechange = function() {
  284. if(xhr_object.readyState == 4) {
  285. document.getElementById('content_source').innerHTML = result = xhr_object.responseText;
  286. //alert(xhr_object.responseText);
  287. }
  288. }
  289. }
  290. function makepost(select){
  291. var options = select.options;
  292. var ret = "";
  293. for (i = 0 ; i<options.length ; i++)
  294. ret = ret + options[i].value +'::'+options[i].text+";;";
  295. return ret;
  296. }
  297. </script>
  298. <?php
  299. Display::display_footer();