session_edit.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <?php
  2. /* For licensing terms, see /dokeos_license.txt */
  3. // name of the language file that needs to be included
  4. $language_file ='admin';
  5. $cidReset=true;
  6. include('../inc/global.inc.php');
  7. require_once (api_get_path(LIBRARY_PATH).'sessionmanager.lib.php');
  8. // setting the section (for the tabs)
  9. $this_section=SECTION_PLATFORM_ADMIN;
  10. api_protect_admin_script(true);
  11. $id=intval($_GET['id']);
  12. $formSent=0;
  13. $errorMsg='';
  14. // Database Table Definitions
  15. $tbl_user = Database::get_main_table(TABLE_MAIN_USER);
  16. $tbl_session = Database::get_main_table(TABLE_MAIN_SESSION);
  17. $tbl_session_rel_course = Database::get_main_table(TABLE_MAIN_SESSION_COURSE);
  18. $tool_name = get_lang('EditSession');
  19. $interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
  20. $interbreadcrumb[]=array('url' => "session_list.php","name" => get_lang('SessionList'));
  21. $result=api_sql_query("SELECT name,date_start,date_end,id_coach, session_admin_id, nb_days_access_before_beginning, nb_days_access_after_end FROM $tbl_session WHERE id='$id'",__FILE__,__LINE__);
  22. if (!$infos=mysql_fetch_array($result)) {
  23. header('Location: session_list.php');
  24. exit();
  25. }
  26. list($year_start,$month_start,$day_start)=explode('-',$infos['date_start']);
  27. list($year_end,$month_end,$day_end)=explode('-',$infos['date_end']);
  28. if (!api_is_platform_admin() && $infos['session_admin_id']!=$_user['user_id']) {
  29. api_not_allowed(true);
  30. }
  31. if ($_POST['formSent']) {
  32. $formSent=1;
  33. $name= $_POST['name'];
  34. $year_start= $_POST['year_start'];
  35. $month_start=$_POST['month_start'];
  36. $day_start=$_POST['day_start'];
  37. $year_end=$_POST['year_end'];
  38. $month_end=$_POST['month_end'];
  39. $day_end=$_POST['day_end'];
  40. $nb_days_acess_before = $_POST['nb_days_access_before'];
  41. $nb_days_acess_after = $_POST['nb_days_access_after'];
  42. $nolimit=$_POST['nolimit'];
  43. $id_coach=$_POST['id_coach'];
  44. $return = SessionManager::edit_session($id,$name,$year_start,$month_start,$day_start,$year_end,$month_end,$day_end,$nb_days_acess_before,$nb_days_acess_after,$nolimit,$id_coach);
  45. if ($return == strval(intval($return))) {
  46. header('Location: resume_session.php?id_session='.$return);
  47. exit();
  48. }
  49. }
  50. $order_clause = api_sort_by_first_name() ? ' ORDER BY firstname, lastname, username' : ' ORDER BY lastname, firstname, username';
  51. $sql="SELECT user_id,lastname,firstname,username FROM $tbl_user WHERE status='1'".$order_clause;
  52. if ($_configuration['multiple_access_urls']==true){
  53. $table_access_url_rel_user= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
  54. $access_url_id = api_get_current_access_url_id();
  55. if ($access_url_id != -1) {
  56. $sql="SELECT DISTINCT u.user_id,lastname,firstname,username FROM $tbl_user u INNER JOIN $table_access_url_rel_user url_rel_user
  57. ON (url_rel_user.user_id = u.user_id)
  58. WHERE status='1' AND access_url_id = '$access_url_id' $order_clause";
  59. }
  60. }
  61. $result=api_sql_query($sql,__FILE__,__LINE__);
  62. $Coaches=api_store_result($result);
  63. $thisYear=date('Y');
  64. // display the header
  65. Display::display_header($tool_name);
  66. // display the tool title
  67. // api_display_tool_title($tool_name);
  68. if (!empty($return)) {
  69. Display::display_error_message($return,false);
  70. }
  71. ?>
  72. <form method="post" name="form" action="<?php echo api_get_self(); ?>?page=<?php echo Security::remove_XSS($_GET['page']) ?>&id=<?php echo $id; ?>" style="margin:0px;">
  73. <input type="hidden" name="formSent" value="1">
  74. <div class="row"><div class="form_header"><?php echo $tool_name; ?></div></div>
  75. <table border="0" cellpadding="5" cellspacing="0" width="600">
  76. <tr>
  77. <td width="30%"><?php echo get_lang('SessionName') ?>&nbsp;&nbsp;</td>
  78. <td width="70%"><input type="text" name="name" size="50" maxlength="50" value="<?php if($formSent) echo api_htmlentities($name,ENT_QUOTES,$charset); else echo api_htmlentities($infos['name'],ENT_QUOTES,$charset); ?>"></td>
  79. </tr>
  80. <tr>
  81. <td width="30%"><?php echo get_lang('CoachName') ?>&nbsp;&nbsp;</td>
  82. <td width="70%"><select name="id_coach" style="width:250px;">
  83. <option value="">----- <?php echo get_lang('Choose') ?> -----</option>
  84. <?php
  85. foreach($Coaches as $enreg) {
  86. ?>
  87. <option value="<?php echo $enreg['user_id']; ?>" <?php if((!$sent && $enreg['user_id'] == $infos['id_coach']) || ($sent && $enreg['user_id'] == $id_coach)) echo 'selected="selected"'; ?>><?php echo api_get_person_name($enreg['firstname'], $enreg['lastname']).' ('.$enreg['username'].')'; ?></option>
  88. <?php
  89. }
  90. unset($Coaches);
  91. ?>
  92. </select></td>
  93. </tr>
  94. <tr>
  95. <td width="30%"><?php echo get_lang('NoTimeLimits') ?></td>
  96. <td width="70%">
  97. <input type="checkbox" name="nolimit" onChange="setDisable(this)" <?php if($year_start=="0000") echo "checked"; ?>/>
  98. </td>
  99. <tr>
  100. <tr>
  101. <td width="30%"><?php echo get_lang('DateStartSession') ?>&nbsp;&nbsp;</td>
  102. <td width="70%">
  103. <select name="day_start">
  104. <option value="1">01</option>
  105. <option value="2" <?php if($day_start == 2) echo 'selected="selected"'; ?> >02</option>
  106. <option value="3" <?php if($day_start == 3) echo 'selected="selected"'; ?> >03</option>
  107. <option value="4" <?php if($day_start == 4) echo 'selected="selected"'; ?> >04</option>
  108. <option value="5" <?php if($day_start == 5) echo 'selected="selected"'; ?> >05</option>
  109. <option value="6" <?php if($day_start == 6) echo 'selected="selected"'; ?> >06</option>
  110. <option value="7" <?php if($day_start == 7) echo 'selected="selected"'; ?> >07</option>
  111. <option value="8" <?php if($day_start == 8) echo 'selected="selected"'; ?> >08</option>
  112. <option value="9" <?php if($day_start == 9) echo 'selected="selected"'; ?> >09</option>
  113. <option value="10" <?php if($day_start == 10) echo 'selected="selected"'; ?> >10</option>
  114. <option value="11" <?php if($day_start == 11) echo 'selected="selected"'; ?> >11</option>
  115. <option value="12" <?php if($day_start == 12) echo 'selected="selected"'; ?> >12</option>
  116. <option value="13" <?php if($day_start == 13) echo 'selected="selected"'; ?> >13</option>
  117. <option value="14" <?php if($day_start == 14) echo 'selected="selected"'; ?> >14</option>
  118. <option value="15" <?php if($day_start == 15) echo 'selected="selected"'; ?> >15</option>
  119. <option value="16" <?php if($day_start == 16) echo 'selected="selected"'; ?> >16</option>
  120. <option value="17" <?php if($day_start == 17) echo 'selected="selected"'; ?> >17</option>
  121. <option value="18" <?php if($day_start == 18) echo 'selected="selected"'; ?> >18</option>
  122. <option value="19" <?php if($day_start == 19) echo 'selected="selected"'; ?> >19</option>
  123. <option value="20" <?php if($day_start == 20) echo 'selected="selected"'; ?> >20</option>
  124. <option value="21" <?php if($day_start == 21) echo 'selected="selected"'; ?> >21</option>
  125. <option value="22" <?php if($day_start == 22) echo 'selected="selected"'; ?> >22</option>
  126. <option value="23" <?php if($day_start == 23) echo 'selected="selected"'; ?> >23</option>
  127. <option value="24" <?php if($day_start == 24) echo 'selected="selected"'; ?> >24</option>
  128. <option value="25" <?php if($day_start == 25) echo 'selected="selected"'; ?> >25</option>
  129. <option value="26" <?php if($day_start == 26) echo 'selected="selected"'; ?> >26</option>
  130. <option value="27" <?php if($day_start == 27) echo 'selected="selected"'; ?> >27</option>
  131. <option value="28" <?php if($day_start == 28) echo 'selected="selected"'; ?> >28</option>
  132. <option value="29" <?php if($day_start == 29) echo 'selected="selected"'; ?> >29</option>
  133. <option value="30" <?php if($day_start == 30) echo 'selected="selected"'; ?> >30</option>
  134. <option value="31" <?php if($day_start == 31) echo 'selected="selected"'; ?> >31</option>
  135. </select>
  136. /
  137. <select name="month_start">
  138. <option value="1">01</option>
  139. <option value="2" <?php if($month_start == 2) echo 'selected="selected"'; ?> >02</option>
  140. <option value="3" <?php if($month_start == 3) echo 'selected="selected"'; ?> >03</option>
  141. <option value="4" <?php if($month_start == 4) echo 'selected="selected"'; ?> >04</option>
  142. <option value="5" <?php if($month_start == 5) echo 'selected="selected"'; ?> >05</option>
  143. <option value="6" <?php if($month_start == 6) echo 'selected="selected"'; ?> >06</option>
  144. <option value="7" <?php if($month_start == 7) echo 'selected="selected"'; ?> >07</option>
  145. <option value="8" <?php if($month_start == 8) echo 'selected="selected"'; ?> >08</option>
  146. <option value="9" <?php if($month_start == 9) echo 'selected="selected"'; ?> >09</option>
  147. <option value="10" <?php if($month_start == 10) echo 'selected="selected"'; ?> >10</option>
  148. <option value="11" <?php if($month_start == 11) echo 'selected="selected"'; ?> >11</option>
  149. <option value="12" <?php if($month_start == 12) echo 'selected="selected"'; ?> >12</option>
  150. </select>
  151. /
  152. <select name="year_start">
  153. <?php
  154. for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
  155. {
  156. ?>
  157. <option value="<?php echo $i; ?>" <?php if($year_start == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
  158. <?php
  159. }
  160. ?>
  161. </select>
  162. </td>
  163. </tr>
  164. <tr>
  165. <td width="30%"><?php echo get_lang('DateEndSession') ?>&nbsp;&nbsp;</td>
  166. <td width="70%">
  167. <select name="day_end">
  168. <option value="1">01</option>
  169. <option value="2" <?php if($day_end == 2) echo 'selected="selected"'; ?> >02</option>
  170. <option value="3" <?php if($day_end == 3) echo 'selected="selected"'; ?> >03</option>
  171. <option value="4" <?php if($day_end == 4) echo 'selected="selected"'; ?> >04</option>
  172. <option value="5" <?php if($day_end == 5) echo 'selected="selected"'; ?> >05</option>
  173. <option value="6" <?php if($day_end == 6) echo 'selected="selected"'; ?> >06</option>
  174. <option value="7" <?php if($day_end == 7) echo 'selected="selected"'; ?> >07</option>
  175. <option value="8" <?php if($day_end == 8) echo 'selected="selected"'; ?> >08</option>
  176. <option value="9" <?php if($day_end == 9) echo 'selected="selected"'; ?> >09</option>
  177. <option value="10" <?php if($day_end == 10) echo 'selected="selected"'; ?> >10</option>
  178. <option value="11" <?php if($day_end == 11) echo 'selected="selected"'; ?> >11</option>
  179. <option value="12" <?php if($day_end == 12) echo 'selected="selected"'; ?> >12</option>
  180. <option value="13" <?php if($day_end == 13) echo 'selected="selected"'; ?> >13</option>
  181. <option value="14" <?php if($day_end == 14) echo 'selected="selected"'; ?> >14</option>
  182. <option value="15" <?php if($day_end == 15) echo 'selected="selected"'; ?> >15</option>
  183. <option value="16" <?php if($day_end == 16) echo 'selected="selected"'; ?> >16</option>
  184. <option value="17" <?php if($day_end == 17) echo 'selected="selected"'; ?> >17</option>
  185. <option value="18" <?php if($day_end == 18) echo 'selected="selected"'; ?> >18</option>
  186. <option value="19" <?php if($day_end == 19) echo 'selected="selected"'; ?> >19</option>
  187. <option value="20" <?php if($day_end == 20) echo 'selected="selected"'; ?> >20</option>
  188. <option value="21" <?php if($day_end == 21) echo 'selected="selected"'; ?> >21</option>
  189. <option value="22" <?php if($day_end == 22) echo 'selected="selected"'; ?> >22</option>
  190. <option value="23" <?php if($day_end == 23) echo 'selected="selected"'; ?> >23</option>
  191. <option value="24" <?php if($day_end == 24) echo 'selected="selected"'; ?> >24</option>
  192. <option value="25" <?php if($day_end == 25) echo 'selected="selected"'; ?> >25</option>
  193. <option value="26" <?php if($day_end == 26) echo 'selected="selected"'; ?> >26</option>
  194. <option value="27" <?php if($day_end == 27) echo 'selected="selected"'; ?> >27</option>
  195. <option value="28" <?php if($day_end == 28) echo 'selected="selected"'; ?> >28</option>
  196. <option value="29" <?php if($day_end == 29) echo 'selected="selected"'; ?> >29</option>
  197. <option value="30" <?php if($day_end == 30) echo 'selected="selected"'; ?> >30</option>
  198. <option value="31" <?php if($day_end == 31) echo 'selected="selected"'; ?> >31</option>
  199. </select>
  200. /
  201. <select name="month_end">
  202. <option value="1">01</option>
  203. <option value="2" <?php if($month_end == 2) echo 'selected="selected"'; ?> >02</option>
  204. <option value="3" <?php if($month_end == 3) echo 'selected="selected"'; ?> >03</option>
  205. <option value="4" <?php if($month_end == 4) echo 'selected="selected"'; ?> >04</option>
  206. <option value="5" <?php if($month_end == 5) echo 'selected="selected"'; ?> >05</option>
  207. <option value="6" <?php if($month_end == 6) echo 'selected="selected"'; ?> >06</option>
  208. <option value="7" <?php if($month_end == 7) echo 'selected="selected"'; ?> >07</option>
  209. <option value="8" <?php if($month_end == 8) echo 'selected="selected"'; ?> >08</option>
  210. <option value="9" <?php if($month_end == 9) echo 'selected="selected"'; ?> >09</option>
  211. <option value="10" <?php if($month_end == 10) echo 'selected="selected"'; ?> >10</option>
  212. <option value="11" <?php if($month_end == 11) echo 'selected="selected"'; ?> >11</option>
  213. <option value="12" <?php if($month_end == 12) echo 'selected="selected"'; ?> >12</option>
  214. </select>
  215. /
  216. <select name="year_end">
  217. <?php
  218. for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
  219. {
  220. ?>
  221. <option value="<?php echo $i; ?>" <?php if($year_end == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
  222. <?php
  223. }
  224. ?>
  225. </select>
  226. </td>
  227. </tr>
  228. <tr>
  229. <td>
  230. &nbsp;
  231. </td>
  232. <td>
  233. <a href="javascript://" onclick="if(document.getElementById('options').style.display == 'none'){document.getElementById('options').style.display = 'block';}else{document.getElementById('options').style.display = 'none';}"><?php echo get_lang('DefineSessionOptions') ?></a>
  234. <div style="display:
  235. <?php
  236. if($formSent){
  237. if($nb_days_access_before!=0 || $nb_days_access_after!=0)
  238. echo 'block';
  239. else echo 'none';
  240. }
  241. else{
  242. if($infos['nb_days_access_before_beginning']!=0 || $infos['nb_days_access_after_end']!=0)
  243. echo 'block';
  244. else
  245. echo 'none';
  246. }
  247. ?>
  248. ;" id="options">
  249. <br>
  250. <input type="text" name="nb_days_access_before" value="<?php if($formSent) echo api_htmlentities($nb_days_access_before,ENT_QUOTES,$charset); else echo api_htmlentities($infos['nb_days_access_before_beginning'],ENT_QUOTES,$charset); ?>" style="width: 30px;">&nbsp;<?php echo get_lang('DaysBefore') ?><br>
  251. <input type="text" name="nb_days_access_after" value="<?php if($formSent) echo api_htmlentities($nb_days_access_after,ENT_QUOTES,$charset); else echo api_htmlentities($infos['nb_days_access_after_end'],ENT_QUOTES,$charset); ?>" style="width: 30px;">&nbsp;<?php echo get_lang('DaysAfter') ?>
  252. <br>
  253. </div>
  254. </td>
  255. </tr>
  256. <tr>
  257. <td>&nbsp;</td>
  258. <td>
  259. <button class="save" type="submit" value="<?php echo get_lang('ModifyThisSession') ?>"><?php echo get_lang('ModifyThisSession') ?></button>
  260. </td>
  261. </tr>
  262. </table>
  263. </form>
  264. <script type="text/javascript">
  265. <?php if($year_start=="0000") echo "setDisable(document.form.nolimit);\r\n"; ?>
  266. function setDisable(select){
  267. document.form.day_start.disabled = (select.checked) ? true : false;
  268. document.form.month_start.disabled = (select.checked) ? true : false;
  269. document.form.year_start.disabled = (select.checked) ? true : false;
  270. document.form.day_end.disabled = (select.checked) ? true : false;
  271. document.form.month_end.disabled = (select.checked) ? true : false;
  272. document.form.year_end.disabled = (select.checked) ? true : false;
  273. }
  274. </script>
  275. <?php
  276. Display::display_footer();
  277. ?>