123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * @package chamilo.admin
- * @todo use formvalidator
- */
- // resetting the course id
- $cidReset = true;
- require_once __DIR__.'/../inc/global.inc.php';
- $xajax = new xajax();
- $xajax->registerFunction('search_courses');
- // setting the section (for the tabs)
- $this_section = SECTION_PLATFORM_ADMIN;
- // setting breadcrumbs
- $interbreadcrumb[] = array('url' => 'session_list.php', 'name' => get_lang('SessionList'));
- // Database Table Definitions
- $tbl_session_rel_course_rel_user = Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
- $tbl_session = Database::get_main_table(TABLE_MAIN_SESSION);
- $tbl_session_category = Database::get_main_table(TABLE_MAIN_SESSION_CATEGORY);
- $tbl_session_rel_user = Database::get_main_table(TABLE_MAIN_SESSION_USER);
- $tbl_session_rel_course = Database::get_main_table(TABLE_MAIN_SESSION_COURSE);
- $tbl_course = Database::get_main_table(TABLE_MAIN_COURSE);
- // setting the name of the tool
- $tool_name = get_lang('SubscribeSessionsToCategory');
- $id_session = isset($_GET['id_session']) ? intval($_GET['id_session']) : null;
- SessionManager::protectSession($id_session);
- $add_type = 'multiple';
- if (isset($_GET['add_type']) && $_GET['add_type'] != '') {
- $add_type = Security::remove_XSS($_REQUEST['add_type']);
- }
- if (!api_is_platform_admin() && !api_is_session_admin()) {
- $sql = 'SELECT session_admin_id FROM '.Database::get_main_table(TABLE_MAIN_SESSION).' WHERE id='.$id_session;
- $rs = Database::query($sql);
- if (Database::result($rs, 0, 0) != $_user['user_id']) {
- api_not_allowed(true);
- }
- }
- $xajax -> processRequests();
- $htmlHeadXtra[] = $xajax->getJavascript('../inc/lib/xajax/');
- $htmlHeadXtra[] = '
- <script>
- function add_course_to_session (code, content) {
- document.getElementById("course_to_add").value = "";
- document.getElementById("ajax_list_courses_single").innerHTML = "";
- destination = document.getElementById("destination");
- for (i=0;i<destination.length;i++) {
- if(destination.options[i].text == content) {
- return false;
- }
- }
- destination.options[destination.length] = new Option(content,code);
- destination.selectedIndex = -1;
- sortOptions(destination.options);
- }
- function send() {
- if (document.formulaire.CategorySessionId.value!=0) {
- document.formulaire.formSent.value=0;
- document.formulaire.submit();
- }
- }
- function remove_item(origin)
- {
- for(var i = 0 ; i<origin.options.length ; i++) {
- if(origin.options[i].selected) {
- origin.options[i]=null;
- i = i-1;
- }
- }
- }
- </script>';
- $formSent = 0;
- $errorMsg = $firstLetterCourse = $firstLetterSession = '';
- $CourseList = $SessionList = array();
- $courses = $sessions = array();
- $categoryId = isset($_POST['CategorySessionId']) ? intval($_POST['CategorySessionId']) : null;
- if (isset($_POST['formSent']) && $_POST['formSent']) {
- $formSent = $_POST['formSent'];
- $sessionCategoryList = $_POST['SessionCategoryList'];
- if ($categoryId != 0 && count($sessionCategoryList) > 0) {
- // Removing all
- $sql = "UPDATE $tbl_session SET session_category_id = NULL WHERE session_category_id = $categoryId";
- Database::query($sql);
- // Adding new
- $sessionCategoryList = array_map('intval', $sessionCategoryList);
- $session_id = join(',', $sessionCategoryList);
- $sql = "UPDATE $tbl_session SET session_category_id = $categoryId WHERE id in ($session_id) ";
- Database::query($sql);
- header('Location: add_many_session_to_category.php?id_category='.$categoryId.'&msg=ok');
- exit;
- } else {
- header('Location: add_many_session_to_category.php?msg=error');
- exit;
- }
- }
- if (isset($_GET['id_category'])) {
- $categoryId = intval($_GET['id_category']);
- }
- if (isset($_GET['msg']) && $_GET['msg'] == 'error') {
- $errorMsg = get_lang('MsgErrorSessionCategory');
- }
- if (isset($_GET['msg']) && $_GET['msg'] == 'ok') {
- $OkMsg = get_lang('SessionCategoryUpdate');
- }
- $page = isset($_GET['page']) ? Security::remove_XSS($_GET['page']) : null;
- Display::display_header($tool_name);
- $where = '';
- $rows_category_session = array();
- if ((isset($_POST['CategorySessionId']) && $_POST['formSent'] == 0) || isset($_GET['id_category'])) {
- $where = 'WHERE session_category_id != '.$categoryId.' OR session_category_id IS NULL';
- $sql = 'SELECT id, name FROM '.$tbl_session.' WHERE session_category_id ='.$categoryId.' ORDER BY name';
- $result = Database::query($sql);
- $rows_category_session = Database::store_result($result);
- }
- $rows_session_category = SessionManager::get_all_session_category();
- if (empty($rows_session_category)) {
- echo Display::return_message(get_lang('YouNeedToAddASessionCategoryFirst'), 'warning');
- Display::display_footer();
- exit;
- }
- if (api_get_multiple_access_url()) {
- $table_access_url_rel_session = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_SESSION);
- $access_url_id = api_get_current_access_url_id();
- $sql = "SELECT s.id, s.name FROM $tbl_session s INNER JOIN $table_access_url_rel_session u ON s.id = u.session_id $where AND u.access_url_id = $access_url_id ORDER BY name";
- } else {
- $sql = "SELECT id, name FROM $tbl_session $where ORDER BY name";
- }
- $result = Database::query($sql);
- $rows_session = Database::store_result($result);
- ?>
- <form name="formulaire" method="post"
- action="<?php echo api_get_self(); ?>?page=<?php echo $page;
- if (!empty($_GET['add'])) {
- echo '&add=true';
- } ?>" style="margin:0px;">
- <?php echo '<legend>'.$tool_name.'</legend>'; ?>
- <input type="hidden" name="formSent" value="1"/>
- <?php
- if (!empty($errorMsg)) {
- echo Display::return_message($errorMsg, 'error'); //main API
- }
- if (!empty($OkMsg)) {
- echo Display::return_message($OkMsg, 'confirm'); //main API
- }
- /*
- *
- * The a/b/c Filter is not a priority
- *
- * <td width="45%" align="center">
- <?php echo get_lang('FirstLetterCourse'); ?> :
- <select name="firstLetterCourse" onchange = "xajax_search_courses(this.value,'multiple')">
- <option value="%">--</option>
- <?php
- echo Display :: get_alphabet_options();
- echo Display :: get_numeric_options(0,9,'');
- ?>
- </select>
- </td>
- */
- ?>
- <table border="0" cellpadding="5" cellspacing="0" width="100%" align="center">
- <tr>
- <td align="left"></td>
- <td align="left"></td>
- <td align="center">
- <b><?php echo get_lang('SessionCategoryName') ?> :</b><br />
- <select name="CategorySessionId" style="width: 320px;" onchange="javascript:send();" >
- <option value="0" ></option>
- <?php
- if (!empty($rows_session_category)) {
- foreach ($rows_session_category as $category) {
- if ($category['id'] == $categoryId)
- echo '<option value="'.$category['id'].'" selected>'.$category['name'].'</option>';
- else
- echo '<option value="'.$category['id'].'">'.$category['name'].'</option>';
- }
- }
- ?>
- </select>
- </td>
- </tr>
- <tr>
- <td width="45%" align="center"><b><?php echo get_lang('SessionListInPlatform') ?> :</b></td>
- <td width="10%"> </td>
- <td align="center" width="45%"><b><?php echo get_lang('SessionListInCategory') ?> :</b></td>
- </tr>
- <?php if ($add_type == 'multiple') { ?>
- <tr>
- <td> </td></tr>
- <?php } ?>
- <tr>
- <td width="45%" align="center">
- <div id="ajax_list_courses_multiple">
- <select id="origin" name="NoSessionCategoryList[]" multiple="multiple" size="20" style="width:320px;">
- <?php
- foreach ($rows_session as $enreg) {
- ?>
- <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'], ENT_QUOTES).'"'; if (in_array($enreg['id'], $CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
- <?php } ?>
- </select></div>
- <?php unset($nosessionCourses); ?>
- </td>
- <td width="10%" valign="middle" align="center">
- <button class="btn btn-default" type="button" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))" onclick="moveItem(document.getElementById('origin'), document.getElementById('destination'))">
- <em class="fa fa-arrow-right"></em>
- </button>
- <br /><br />
- <button class="btn btn-default" type="button" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))" onclick="moveItem(document.getElementById('destination'), document.getElementById('origin'))">
- <em class="fa fa-arrow-left"></em>
- </button>
- <br /><br /><br /><br /><br /><br />
- <?php
- echo '<button class="btn btn-primary" type="button" value="" onclick="valide()" >'.get_lang('SubscribeSessionsToCategory').'</button>';
- ?>
- </td>
- <td width="45%" align="center">
- <select id='destination' name="SessionCategoryList[]" multiple="multiple" size="20" style="width:320px;">
- <?php
- foreach ($rows_category_session as $enreg) { ?>
- <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'], ENT_QUOTES).'"'; if (in_array($enreg['id'], $CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
- <?php } ?>
- </select></td>
- </tr>
- </table>
- </form>
- <script type="text/javascript">
- function moveItem(origin , destination) {
- for(var i = 0 ; i<origin.options.length ; i++) {
- if(origin.options[i].selected) {
- destination.options[destination.length] = new Option(origin.options[i].text,origin.options[i].value);
- origin.options[i]=null;
- i = i-1;
- }
- }
- destination.selectedIndex = -1;
- sortOptions(destination.options);
- }
- function sortOptions(options) {
- newOptions = new Array();
- for (i = 0 ; i<options.length ; i++) {
- newOptions[i] = options[i];
- }
- newOptions = newOptions.sort(mysort);
- options.length = 0;
- for(i = 0 ; i < newOptions.length ; i++){
- options[i] = newOptions[i];
- }
- }
- function mysort(a, b){
- if(a.text.toLowerCase() > b.text.toLowerCase()){
- return 1;
- }
- if(a.text.toLowerCase() < b.text.toLowerCase()){
- return -1;
- }
- return 0;
- }
- function valide(){
- var options = document.getElementById('destination').options;
- for (i = 0; i < options.length; i++) {
- options[i].selected = true;
- }
- document.forms.formulaire.submit();
- }
- </script>
- <?php
- Display::display_footer();
|