Completed
Pull Request — 1.11.x (#1352)
by José
38:59
created
main/session/session_import_drh.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 $tool_name = get_lang('ImportSessionDrhList');
17 17
 
18 18
 //$interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
19
-$interbreadcrumb[]=array('url' => 'session_list.php','name' => get_lang('SessionList'));
19
+$interbreadcrumb[] = array('url' => 'session_list.php', 'name' => get_lang('SessionList'));
20 20
 
21 21
 set_time_limit(0);
22 22
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
 echo '<div class="actions">';
29 29
 echo '<a href="../session/session_list.php">'.
30
-    Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'),'',ICON_SIZE_MEDIUM).'</a>';
30
+    Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'), '', ICON_SIZE_MEDIUM).'</a>';
31 31
 echo '</div>';
32 32
 
33 33
 if (!empty($error_message)) {
Please login to merge, or discard this patch.
main/session/resume_session.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     $sessionRepository = Database::getManager()->getRepository('ChamiloCoreBundle:Session');
156 156
     $courses = $sessionRepository->getCoursesOrderedByPosition($session);
157 157
 
158
-	foreach ($courses as $course) {
158
+    foreach ($courses as $course) {
159 159
         //select the number of users
160 160
         $sql = "SELECT count(*)
161 161
                 FROM $tbl_session_rel_user sru,
@@ -167,37 +167,37 @@  discard block
 block discarded – undo
167 167
                     sru.relation_type <> ".SESSION_RELATION_TYPE_RRHH." AND
168 168
                     srcru.session_id = '".intval($sessionId)."'";
169 169
 
170
-		$rs = Database::query($sql);
170
+        $rs = Database::query($sql);
171 171
         $numberOfUsers = Database::result($rs, 0, 0);
172 172
 
173
-		// Get coachs of the courses in session
173
+        // Get coachs of the courses in session
174 174
 
175
-		$sql = "SELECT user.lastname, user.firstname, user.username
175
+        $sql = "SELECT user.lastname, user.firstname, user.username
176 176
                 FROM $tbl_session_rel_course_rel_user session_rcru, $tbl_user user
177 177
 				WHERE
178 178
 				    session_rcru.user_id = user.user_id AND
179 179
 				    session_rcru.session_id = '".intval($sessionId)."' AND
180 180
 				    session_rcru.c_id ='".intval($course->getId())."' AND
181 181
 				    session_rcru.status=2";
182
-		$rs = Database::query($sql);
182
+        $rs = Database::query($sql);
183 183
 
184
-		$coachs = array();
185
-		if (Database::num_rows($rs) > 0) {
186
-			while($info_coach = Database::fetch_array($rs)) {
184
+        $coachs = array();
185
+        if (Database::num_rows($rs) > 0) {
186
+            while($info_coach = Database::fetch_array($rs)) {
187 187
                 $coachs[] = api_get_person_name(
188 188
                         $info_coach['firstname'],
189 189
                         $info_coach['lastname']
190 190
                     ).' ('.$info_coach['username'].')';
191
-			}
192
-		} else {
193
-			$coach = get_lang('None');
194
-		}
191
+            }
192
+        } else {
193
+            $coach = get_lang('None');
194
+        }
195 195
 
196
-		if (count($coachs) > 0) {
197
-			$coach = implode('<br />',$coachs);
198
-		} else {
199
-			$coach = get_lang('None');
200
-		}
196
+        if (count($coachs) > 0) {
197
+            $coach = implode('<br />',$coachs);
198
+        } else {
199
+            $coach = get_lang('None');
200
+        }
201 201
 
202 202
         $orderButtons = null;
203 203
 
@@ -233,8 +233,8 @@  discard block
 block discarded – undo
233 233
 
234 234
         $courseUrl = api_get_course_url($course->getCode(), $sessionId);
235 235
 
236
-		// hide_course_breadcrumb the parameter has been added to hide the name
237
-		// of the course, that appeared in the default $interbreadcrumb
236
+        // hide_course_breadcrumb the parameter has been added to hide the name
237
+        // of the course, that appeared in the default $interbreadcrumb
238 238
         $courseItem .= '
239 239
 		<tr>
240 240
 			<td class="title">'.Display::url(
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 			</td>
261 261
 		</tr>';
262 262
         $count++;
263
-	}
263
+    }
264 264
     $courseListToShow .= $courseItem;
265 265
 }
266 266
 $courseListToShow .= '</table><br />';
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 $tool_name = get_lang('SessionOverview');
30 30
 
31 31
 //$interbreadcrumb[] = array('url' => 'index.php','name' => get_lang('PlatformAdmin'));
32
-$interbreadcrumb[] = array('url' => 'session_list.php','name' => get_lang('SessionList'));
32
+$interbreadcrumb[] = array('url' => 'session_list.php', 'name' => get_lang('SessionList'));
33 33
 
34 34
 $orig_param = '&origin=resume_session';
35 35
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 
184 184
 		$coachs = array();
185 185
 		if (Database::num_rows($rs) > 0) {
186
-			while($info_coach = Database::fetch_array($rs)) {
186
+			while ($info_coach = Database::fetch_array($rs)) {
187 187
                 $coachs[] = api_get_person_name(
188 188
                         $info_coach['firstname'],
189 189
                         $info_coach['lastname']
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 		}
195 195
 
196 196
 		if (count($coachs) > 0) {
197
-			$coach = implode('<br />',$coachs);
197
+			$coach = implode('<br />', $coachs);
198 198
 		} else {
199 199
 			$coach = get_lang('None');
200 200
 		}
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
         $downIcon = 'down.png';
218 218
         $downUrl = api_get_self().'?id_session='.$sessionId.'&course_id='.$course->getId().'&action=move_down';
219 219
 
220
-        if ($count +1 == count($courses)) {
220
+        if ($count + 1 == count($courses)) {
221 221
             $downIcon = 'down_na.png';
222 222
             $downUrl = '#';
223 223
         }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 			<td>'.$coach.'</td>
245 245
 			<td>'.$numberOfUsers.'</td>
246 246
 			<td>
247
-                <a href="'. $courseUrl . '">'.
247
+                <a href="'. $courseUrl.'">'.
248 248
                 Display::return_icon('course_home.gif', get_lang('Course')).'</a>
249 249
                 '.$orderButtons.'
250 250
                 <a href="session_course_user_list.php?id_session='.$sessionId.'&course_code='.$course->getCode().'">'.
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
             array('onclick' => "javascript:if(!confirm('".get_lang('ConfirmYourChoice')."')) return false;")
310 310
         );
311 311
 
312
-        $addUserToUrlLink= '';
312
+        $addUserToUrlLink = '';
313 313
         if ($multiple_url_is_on) {
314 314
             if ($user['access_url_id'] != $url_id) {
315 315
                 $userLink .= ' '.Display::return_icon(
Please login to merge, or discard this patch.
main/session/add_users_to_session.php 3 patches
Braces   +11 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,9 +98,10 @@  discard block
 block discarded – undo
98 98
         $cond_user_id = '';
99 99
 
100 100
         // Only for single & multiple
101
-        if (in_array($type, array('single','multiple')))
102
-        if (!empty($id_session)) {
101
+        if (in_array($type, array('single','multiple'))) {
102
+                if (!empty($id_session)) {
103 103
             $id_session = intval($id_session);
104
+        }
104 105
             // check id_user from session_rel_user table
105 106
             $sql = 'SELECT user_id FROM '.$tbl_session_rel_user.'
106 107
                     WHERE session_id = "'.$id_session.'" AND relation_type<>'.SESSION_RELATION_TYPE_RRHH.' ';
@@ -558,7 +559,10 @@  discard block
 block discarded – undo
558 559
     echo $newLinks;
559 560
     ?>
560 561
 </div>
561
-<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?page=<?php echo $page; ?>&id_session=<?php echo $id_session; ?><?php if(!empty($addProcess)) echo '&add=true' ; ?>"  <?php if ($ajax_search) { echo ' onsubmit="valide();"';}?>>
562
+<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?page=<?php echo $page; ?>&id_session=<?php echo $id_session; ?><?php if(!empty($addProcess)) {
563
+    echo '&add=true' ;
564
+}
565
+?>"  <?php if ($ajax_search) { echo ' onsubmit="valide();"';}?>>
562 566
 <?php echo '<legend>'.$tool_name.' ('.$session_info['name'].') </legend>'; ?>
563 567
 <?php
564 568
 if ($add_type=='multiple') {
@@ -613,7 +617,10 @@  discard block
 block discarded – undo
613 617
               <?php
614 618
               foreach ($nosessionUsersList as $uid => $enreg) {
615 619
               ?>
616
-                  <option value="<?php echo $uid; ?>" <?php if(in_array($uid,$UserList)) echo 'selected="selected"'; ?>>
620
+                  <option value="<?php echo $uid; ?>" <?php if(in_array($uid,$UserList)) {
621
+    echo 'selected="selected"';
622
+}
623
+?>>
617 624
                       <?php
618 625
                       $personName = api_get_person_name($enreg['fn'], $enreg['ln']).' ('.$enreg['un'].') '.$enreg['official_code'];
619 626
                       if ($showOfficialCode) {
Please login to merge, or discard this patch.
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 $add_type = 'unique';
39 39
 
40 40
 if (isset($_REQUEST['add_type']) && $_REQUEST['add_type'] != '') {
41
-	$add_type = Security::remove_XSS($_REQUEST['add_type']);
41
+    $add_type = Security::remove_XSS($_REQUEST['add_type']);
42 42
 }
43 43
 
44 44
 $page = isset($_GET['page']) ? Security::remove_XSS($_GET['page']) : null;
@@ -426,8 +426,8 @@  discard block
 block discarded – undo
426 426
 
427 427
     if ($use_extra_fields) {
428 428
         $final_result = array();
429
-       	if (count($extra_field_result)>1) {
430
-	    for($i=0;$i<count($extra_field_result)-1;$i++) {
429
+            if (count($extra_field_result)>1) {
430
+        for($i=0;$i<count($extra_field_result)-1;$i++) {
431 431
                 if (is_array($extra_field_result[$i+1])) {
432 432
                     $final_result  = array_intersect($extra_field_result[$i],$extra_field_result[$i+1]);
433 433
                 }
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
                 'official_code' => $user['official_code']
504 504
             ) ;
505 505
             unset($users[$uid]);
506
-	}
506
+    }
507 507
     }
508 508
     unset($users); //clean to free memory
509 509
 
@@ -547,12 +547,12 @@  discard block
 block discarded – undo
547 547
 }
548 548
 
549 549
 if ($add_type == 'multiple') {
550
-	$link_add_type_unique = '<a href="'.api_get_self().'?id_session='.$id_session.'&add='.$addProcess.'&add_type=unique">'.
550
+    $link_add_type_unique = '<a href="'.api_get_self().'?id_session='.$id_session.'&add='.$addProcess.'&add_type=unique">'.
551 551
         Display::return_icon('single.gif').get_lang('SessionAddTypeUnique').'</a>';
552
-	$link_add_type_multiple = Display::url(Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple'), '');
552
+    $link_add_type_multiple = Display::url(Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple'), '');
553 553
 } else {
554
-	$link_add_type_unique = Display::url(Display::return_icon('single.gif').get_lang('SessionAddTypeUnique'), '');
555
-	$link_add_type_multiple = '<a href="'.api_get_self().'?id_session='.$id_session.'&amp;add='.$addProcess.'&amp;add_type=multiple">'.Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple').'</a>';
554
+    $link_add_type_unique = Display::url(Display::return_icon('single.gif').get_lang('SessionAddTypeUnique'), '');
555
+    $link_add_type_multiple = '<a href="'.api_get_self().'?id_session='.$id_session.'&amp;add='.$addProcess.'&amp;add_type=multiple">'.Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple').'</a>';
556 556
 }
557 557
 $link_add_group = Display::url(
558 558
     Display::return_icon('multiple.gif',get_lang('RegistrationByUsersGroups')).get_lang('RegistrationByUsersGroups'),
@@ -580,17 +580,17 @@  discard block
 block discarded – undo
580 580
 <?php echo '<legend>'.$tool_name.' ('.$session_info['name'].') </legend>'; ?>
581 581
 <?php
582 582
 if ($add_type=='multiple') {
583
-	if (is_array($extra_field_list)) {
584
-		if (is_array($new_field_list) && count($new_field_list)>0 ) {
585
-			echo '<h3>'.get_lang('FilterUsers').'</h3>';
586
-			foreach ($new_field_list as $new_field) {
587
-				echo $new_field['name'];
588
-				$varname = 'field_'.$new_field['variable'];
583
+    if (is_array($extra_field_list)) {
584
+        if (is_array($new_field_list) && count($new_field_list)>0 ) {
585
+            echo '<h3>'.get_lang('FilterUsers').'</h3>';
586
+            foreach ($new_field_list as $new_field) {
587
+                echo $new_field['name'];
588
+                $varname = 'field_'.$new_field['variable'];
589 589
                 $fieldtype = $new_field['type'];
590
-				echo '&nbsp;<select name="'.$varname.'">';
591
-				echo '<option value="0">--'.get_lang('Select').'--</option>';
592
-				foreach	($new_field['data'] as $option) {
593
-					$checked='';
590
+                echo '&nbsp;<select name="'.$varname.'">';
591
+                echo '<option value="0">--'.get_lang('Select').'--</option>';
592
+                foreach	($new_field['data'] as $option) {
593
+                    $checked='';
594 594
                     if ($fieldtype == ExtraField::FIELD_TYPE_TAG) {
595 595
                         if (isset($_POST[$varname])) {
596 596
                             if ($_POST[$varname] == $option['tag']) {
@@ -611,11 +611,11 @@  discard block
 block discarded – undo
611 611
                 $extraHidden = $fieldtype == ExtraField::FIELD_TYPE_TAG ? '<input type="hidden" name="field_id" value="'.$option['field_id'].'" />' : '';
612 612
                 echo $extraHidden;
613 613
                 echo '&nbsp;&nbsp;';
614
-			}
615
-			echo '<input type="button" value="'.get_lang('Filter').'" onclick="validate_filter()" />';
616
-			echo '<br /><br />';
617
-		}
618
-	}
614
+            }
615
+            echo '<input type="button" value="'.get_lang('Filter').'" onclick="validate_filter()" />';
616
+            echo '<br /><br />';
617
+        }
618
+    }
619 619
 }
620 620
 ?>
621 621
 <input type="hidden" name="form_sent" value="1" />
@@ -623,7 +623,7 @@  discard block
 block discarded – undo
623 623
 
624 624
 <?php
625 625
 if (!empty($errorMsg)) {
626
-	Display::display_normal_message($errorMsg); //main API
626
+    Display::display_normal_message($errorMsg); //main API
627 627
 }
628 628
 ?>
629 629
 <div id="multiple-add-session" class="row">
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
             <label><?php echo get_lang('UserListInPlatform') ?> </label>
633 633
             <?php
634 634
             if (!($add_type=='multiple')) {
635
-              ?>
635
+                ?>
636 636
               <input type="text" id="user_to_add" onkeyup="xajax_search_users(this.value,'single')" class="form-control" />
637 637
               <div id="ajax_list_users_single" class="select-list-ajax"></div>
638 638
               <?php
@@ -641,21 +641,21 @@  discard block
 block discarded – undo
641 641
             <div id="ajax_list_users_multiple">
642 642
             <select id="origin_users" name="nosessionUsersList[]" multiple="multiple" size="15" class="form-control">
643 643
               <?php
644
-              foreach ($nosessionUsersList as $uid => $enreg) {
645
-              ?>
644
+                foreach ($nosessionUsersList as $uid => $enreg) {
645
+                ?>
646 646
                   <option value="<?php echo $uid; ?>" <?php if(in_array($uid,$UserList)) echo 'selected="selected"'; ?>>
647 647
                       <?php
648
-                      $personName = api_get_person_name($enreg['fn'], $enreg['ln']).' ('.$enreg['un'].') '.$enreg['official_code'];
649
-                      if ($showOfficialCode) {
650
-                          $officialCode = !empty($enreg['official_code']) ? $enreg['official_code'].' - ' : '? - ';
651
-                          $personName = $officialCode.api_get_person_name($enreg['fn'], $enreg['ln']).' ('.$enreg['un'].')';
652
-                      }
653
-                      echo $personName;
654
-                      ?>
648
+                        $personName = api_get_person_name($enreg['fn'], $enreg['ln']).' ('.$enreg['un'].') '.$enreg['official_code'];
649
+                        if ($showOfficialCode) {
650
+                            $officialCode = !empty($enreg['official_code']) ? $enreg['official_code'].' - ' : '? - ';
651
+                            $personName = $officialCode.api_get_person_name($enreg['fn'], $enreg['ln']).' ('.$enreg['un'].')';
652
+                        }
653
+                        echo $personName;
654
+                        ?>
655 655
                   </option>
656 656
               <?php
657
-              }
658
-              ?>
657
+                }
658
+                ?>
659 659
             </select>
660 660
             </div>
661 661
                 <input type="checkbox" onchange="checked_in_no_session(this.checked);" name="user_with_any_session" id="user_with_any_session_id">
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
             <?php
664 664
             }
665 665
             unset($nosessionUsersList);
666
-           ?>
666
+            ?>
667 667
         </div>
668 668
     </div>
669 669
 
@@ -707,7 +707,7 @@  discard block
 block discarded – undo
707 707
               <?php
708 708
             }
709 709
             if (!empty($addProcess)) {
710
-		echo '<button class="btn btn-success" type="button" value="" onclick="valide()" >'.get_lang('FinishSessionCreation').'</button>';
710
+        echo '<button class="btn btn-success" type="button" value="" onclick="valide()" >'.get_lang('FinishSessionCreation').'</button>';
711 711
             } else {
712 712
                 echo '<button class="btn btn-success" type="button" value="" onclick="valide()" >'.get_lang('SubscribeUsersToSession').'</button>';
713 713
             }
Please login to merge, or discard this patch.
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -102,13 +102,13 @@  discard block
 block discarded – undo
102 102
         if (api_is_session_admin() &&
103 103
             api_get_setting('prevent_session_admins_to_manage_all_users') === 'true'
104 104
         ) {
105
-            $order_clause = " AND user.creator_id = " . api_get_user_id() . $order_clause;
105
+            $order_clause = " AND user.creator_id = ".api_get_user_id().$order_clause;
106 106
         }
107 107
 
108 108
         $cond_user_id = '';
109 109
 
110 110
         // Only for single & multiple
111
-        if (in_array($type, array('single','multiple')))
111
+        if (in_array($type, array('single', 'multiple')))
112 112
         if (!empty($id_session)) {
113 113
             $id_session = intval($id_session);
114 114
             // check id_user from session_rel_user table
@@ -118,11 +118,11 @@  discard block
 block discarded – undo
118 118
             $user_ids = array();
119 119
             if (Database::num_rows($res) > 0) {
120 120
                 while ($row = Database::fetch_row($res)) {
121
-                    $user_ids[] = (int)$row[0];
121
+                    $user_ids[] = (int) $row[0];
122 122
                 }
123 123
             }
124 124
             if (count($user_ids) > 0) {
125
-                $cond_user_id = ' AND user.id NOT IN('.implode(",",$user_ids).')';
125
+                $cond_user_id = ' AND user.id NOT IN('.implode(",", $user_ids).')';
126 126
             }
127 127
         }
128 128
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         }
165 165
 
166 166
         if (api_is_multiple_url_enabled()) {
167
-            $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
167
+            $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
168 168
             $access_url_id = api_get_current_access_url_id();
169 169
             if ($access_url_id != -1) {
170 170
                 switch ($type) {
@@ -215,10 +215,10 @@  discard block
 block discarded – undo
215 215
 
216 216
         $rs = Database::query($sql);
217 217
         $i = 0;
218
-        if ($type=='single') {
218
+        if ($type == 'single') {
219 219
             while ($user = Database :: fetch_array($rs)) {
220 220
                 $i++;
221
-                if ($i<=10) {
221
+                if ($i <= 10) {
222 222
                     $person_name = api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].') '.$user['official_code'];
223 223
                     if ($showOfficialCode) {
224 224
                         $officialCode = !empty($user['official_code']) ? $user['official_code'].' - ' : '? - ';
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
                 }
232 232
             }
233 233
 
234
-            $xajax_response -> addAssign('ajax_list_users_single','innerHTML',api_utf8_encode($return));
234
+            $xajax_response -> addAssign('ajax_list_users_single', 'innerHTML', api_utf8_encode($return));
235 235
         } else {
236 236
             global $nosessionUsersList;
237 237
             $return .= '<select id="origin_users" name="nosessionUsersList[]" multiple="multiple" size="15" style="width:360px;">';
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
                 $return .= '<option value="'.$user['id'].'">'.$person_name.' </option>';
245 245
             }
246 246
             $return .= '</select>';
247
-            $xajax_response -> addAssign('ajax_list_users_multiple','innerHTML',api_utf8_encode($return));
247
+            $xajax_response -> addAssign('ajax_list_users_multiple', 'innerHTML', api_utf8_encode($return));
248 248
         }
249 249
     }
250 250
     return $xajax_response;
@@ -355,10 +355,10 @@  discard block
 block discarded – undo
355 355
             $order_clause";
356 356
 
357 357
     if (api_is_multiple_url_enabled()) {
358
-        $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
358
+        $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
359 359
         $access_url_id = api_get_current_access_url_id();
360 360
         if ($access_url_id != -1) {
361
-            $sql="SELECT u.id, lastname, firstname, username, session_id, official_code
361
+            $sql = "SELECT u.id, lastname, firstname, username, session_id, official_code
362 362
             FROM $tbl_user u
363 363
             INNER JOIN $tbl_session_rel_user
364 364
                 ON $tbl_session_rel_user.user_id = u.id AND
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
     $result = Database::query($sql);
373 373
     $users = Database::store_result($result);
374 374
     foreach ($users as $user) {
375
-        $sessionUsersList[$user['id']] = $user ;
375
+        $sessionUsersList[$user['id']] = $user;
376 376
     }
377 377
 
378 378
     $sessionUserInfo = SessionManager::getTotalUserCoursesInSession($id_session);
@@ -408,12 +408,12 @@  discard block
 block discarded – undo
408 408
                     if (isset($_POST[$varname]) && $_POST[$varname] != '0') {
409 409
                         $use_extra_fields = true;
410 410
                         if ($fieldtype == ExtraField::FIELD_TYPE_TAG) {
411
-                            $extra_field_result[]= UserManager::get_extra_user_data_by_tags(
411
+                            $extra_field_result[] = UserManager::get_extra_user_data_by_tags(
412 412
                                 intval($_POST['field_id']),
413 413
                                 $_POST[$varname]
414 414
                             );
415 415
                         } else {
416
-                            $extra_field_result[]= UserManager::get_extra_user_data_by_value(
416
+                            $extra_field_result[] = UserManager::get_extra_user_data_by_value(
417 417
                                 $new_field['variable'],
418 418
                                 $_POST[$varname]
419 419
                             );
@@ -426,10 +426,10 @@  discard block
 block discarded – undo
426 426
 
427 427
     if ($use_extra_fields) {
428 428
         $final_result = array();
429
-       	if (count($extra_field_result)>1) {
430
-	    for($i=0;$i<count($extra_field_result)-1;$i++) {
431
-                if (is_array($extra_field_result[$i+1])) {
432
-                    $final_result  = array_intersect($extra_field_result[$i],$extra_field_result[$i+1]);
429
+       	if (count($extra_field_result) > 1) {
430
+	    for ($i = 0; $i < count($extra_field_result) - 1; $i++) {
431
+                if (is_array($extra_field_result[$i + 1])) {
432
+                    $final_result = array_intersect($extra_field_result[$i], $extra_field_result[$i + 1]);
433 433
                 }
434 434
             }
435 435
         } else {
@@ -437,14 +437,14 @@  discard block
 block discarded – undo
437 437
         }
438 438
 
439 439
         if (api_is_multiple_url_enabled()) {
440
-            if (is_array($final_result) && count($final_result)>0) {
441
-                $where_filter = " AND u.id IN  ('".implode("','",$final_result)."') ";
440
+            if (is_array($final_result) && count($final_result) > 0) {
441
+                $where_filter = " AND u.id IN  ('".implode("','", $final_result)."') ";
442 442
             } else {
443 443
                 //no results
444 444
                 $where_filter = " AND u.id  = -1";
445 445
             }
446 446
         } else {
447
-            if (is_array($final_result) && count($final_result)>0) {
447
+            if (is_array($final_result) && count($final_result) > 0) {
448 448
                 $where_filter = " WHERE u.id IN  ('".implode("','", $final_result)."') ";
449 449
             } else {
450 450
                 //no results
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
         }
454 454
     }
455 455
     if (api_is_session_admin() && api_get_setting('prevent_session_admins_to_manage_all_users') === 'true') {
456
-        $order_clause = " AND u.creator_id = " . api_get_user_id() . $order_clause;
456
+        $order_clause = " AND u.creator_id = ".api_get_user_id().$order_clause;
457 457
     }
458 458
     if ($use_extra_fields) {
459 459
         $sql = "SELECT  u.id, lastname, firstname, username, session_id, official_code
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
                 $order_clause";
476 476
     }
477 477
     if (api_is_multiple_url_enabled()) {
478
-        $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
478
+        $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
479 479
         $access_url_id = api_get_current_access_url_id();
480 480
         if ($access_url_id != -1) {
481 481
             $sql = "SELECT  u.id, lastname, firstname, username, session_id, official_code
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
     }
493 493
 
494 494
     $result = Database::query($sql);
495
-    $users = Database::store_result($result,'ASSOC');
495
+    $users = Database::store_result($result, 'ASSOC');
496 496
 
497 497
     foreach ($users as $uid => $user) {
498 498
         if ($user['session_id'] != $id_session) {
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
                 'ln' => $user['lastname'],
502 502
                 'un' => $user['username'],
503 503
                 'official_code' => $user['official_code']
504
-            ) ;
504
+            );
505 505
             unset($users[$uid]);
506 506
 	}
507 507
     }
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
           WHERE u.status<>".DRH." AND u.status<>6 $order_clause";
518 518
 
519 519
     if (api_is_multiple_url_enabled()) {
520
-        $tbl_user_rel_access_url= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
520
+        $tbl_user_rel_access_url = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
521 521
         $access_url_id = api_get_current_access_url_id();
522 522
         if ($access_url_id != -1) {
523 523
             $sql = "SELECT  u.id, lastname, firstname, username, session_id, official_code
@@ -533,11 +533,11 @@  discard block
 block discarded – undo
533 533
     }
534 534
 
535 535
     $result = Database::query($sql);
536
-    $users = Database::store_result($result,'ASSOC');
536
+    $users = Database::store_result($result, 'ASSOC');
537 537
     foreach ($users as $uid => $user) {
538 538
         if ($user['session_id'] == $id_session) {
539 539
             $sessionUsersList[$user['id']] = $user;
540
-            if (array_key_exists($user['id'],$nosessionUsersList)) {
540
+            if (array_key_exists($user['id'], $nosessionUsersList)) {
541 541
                 unset($nosessionUsersList[$user['id']]);
542 542
             }
543 543
         }
@@ -555,7 +555,7 @@  discard block
 block discarded – undo
555 555
 	$link_add_type_multiple = '<a href="'.api_get_self().'?id_session='.$id_session.'&amp;add='.$addProcess.'&amp;add_type=multiple">'.Display::return_icon('multiple.gif').get_lang('SessionAddTypeMultiple').'</a>';
556 556
 }
557 557
 $link_add_group = Display::url(
558
-    Display::return_icon('multiple.gif',get_lang('RegistrationByUsersGroups')).get_lang('RegistrationByUsersGroups'),
558
+    Display::return_icon('multiple.gif', get_lang('RegistrationByUsersGroups')).get_lang('RegistrationByUsersGroups'),
559 559
     api_get_path(WEB_CODE_PATH).'admin/usergroups.php'
560 560
 );
561 561
 
@@ -576,12 +576,12 @@  discard block
 block discarded – undo
576 576
     echo $newLinks;
577 577
     ?>
578 578
 </div>
579
-<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?page=<?php echo $page; ?>&id_session=<?php echo $id_session; ?><?php if(!empty($addProcess)) echo '&add=true' ; ?>"  <?php if ($ajax_search) { echo ' onsubmit="valide();"';}?>>
579
+<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?page=<?php echo $page; ?>&id_session=<?php echo $id_session; ?><?php if (!empty($addProcess)) echo '&add=true'; ?>"  <?php if ($ajax_search) { echo ' onsubmit="valide();"'; }?>>
580 580
 <?php echo '<legend>'.$tool_name.' ('.$session_info['name'].') </legend>'; ?>
581 581
 <?php
582
-if ($add_type=='multiple') {
582
+if ($add_type == 'multiple') {
583 583
 	if (is_array($extra_field_list)) {
584
-		if (is_array($new_field_list) && count($new_field_list)>0 ) {
584
+		if (is_array($new_field_list) && count($new_field_list) > 0) {
585 585
 			echo '<h3>'.get_lang('FilterUsers').'</h3>';
586 586
 			foreach ($new_field_list as $new_field) {
587 587
 				echo $new_field['name'];
@@ -589,8 +589,8 @@  discard block
 block discarded – undo
589 589
                 $fieldtype = $new_field['type'];
590 590
 				echo '&nbsp;<select name="'.$varname.'">';
591 591
 				echo '<option value="0">--'.get_lang('Select').'--</option>';
592
-				foreach	($new_field['data'] as $option) {
593
-					$checked='';
592
+				foreach ($new_field['data'] as $option) {
593
+					$checked = '';
594 594
                     if ($fieldtype == ExtraField::FIELD_TYPE_TAG) {
595 595
                         if (isset($_POST[$varname])) {
596 596
                             if ($_POST[$varname] == $option['tag']) {
@@ -631,7 +631,7 @@  discard block
 block discarded – undo
631 631
         <div class="form-group">
632 632
             <label><?php echo get_lang('UserListInPlatform') ?> </label>
633 633
             <?php
634
-            if (!($add_type=='multiple')) {
634
+            if (!($add_type == 'multiple')) {
635 635
               ?>
636 636
               <input type="text" id="user_to_add" onkeyup="xajax_search_users(this.value,'single')" class="form-control" />
637 637
               <div id="ajax_list_users_single" class="select-list-ajax"></div>
@@ -643,7 +643,7 @@  discard block
 block discarded – undo
643 643
               <?php
644 644
               foreach ($nosessionUsersList as $uid => $enreg) {
645 645
               ?>
646
-                  <option value="<?php echo $uid; ?>" <?php if(in_array($uid,$UserList)) echo 'selected="selected"'; ?>>
646
+                  <option value="<?php echo $uid; ?>" <?php if (in_array($uid, $UserList)) echo 'selected="selected"'; ?>>
647 647
                       <?php
648 648
                       $personName = api_get_person_name($enreg['fn'], $enreg['ln']).' ('.$enreg['un'].') '.$enreg['official_code'];
649 649
                       if ($showOfficialCode) {
@@ -668,7 +668,7 @@  discard block
 block discarded – undo
668 668
     </div>
669 669
 
670 670
     <div class="col-md-4">
671
-        <?php if ($add_type=='multiple') { ?>
671
+        <?php if ($add_type == 'multiple') { ?>
672 672
             <?php echo get_lang('FirstLetterUser'); ?> :
673 673
 
674 674
             <select id="first_letter_user" name="firstLetterUser" onchange = "change_select(this.value);" >
Please login to merge, or discard this patch.
main/session/add_teachers_to_session.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -70,13 +70,13 @@
 block discarded – undo
70 70
     <tr>
71 71
         <td align="center">
72 72
             <?php
73
-             echo Display::select(
74
-                 'sessions[]',
75
-                 $sessionList,
76
-                 '',
77
-                 array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'sessions', 'size'=>'15px'),
78
-                 false
79
-             );
73
+                echo Display::select(
74
+                    'sessions[]',
75
+                    $sessionList,
76
+                    '',
77
+                    array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'sessions', 'size'=>'15px'),
78
+                    false
79
+                );
80 80
             ?>
81 81
         </td>
82 82
         <td align="center">
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 // setting breadcrumbs
16 16
 //$interbreadcrumb[] = array('url' => 'index.php','name' => get_lang('PlatformAdmin'));
17
-$interbreadcrumb[] = array('url' => 'session_list.php','name' => get_lang('SessionList'));
17
+$interbreadcrumb[] = array('url' => 'session_list.php', 'name' => get_lang('SessionList'));
18 18
 
19 19
 // Setting the name of the tool
20 20
 $tool_name = get_lang('EnrollTrainersFromExistingSessions');
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                  'sessions[]',
75 75
                  $sessionList,
76 76
                  '',
77
-                 array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'sessions', 'size'=>'15px'),
77
+                 array('style'=>'width:360px', 'multiple'=>'multiple', 'id'=>'sessions', 'size'=>'15px'),
78 78
                  false
79 79
              );
80 80
             ?>
Please login to merge, or discard this patch.
main/session/session_list.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -52,14 +52,14 @@  discard block
 block discarded – undo
52 52
     'course_name',
53 53
     get_lang('SearchCourse'),
54 54
     null,
55
-    array('url' => api_get_path(WEB_AJAX_PATH) . 'course.ajax.php?a=search_course')
55
+    array('url' => api_get_path(WEB_AJAX_PATH).'course.ajax.php?a=search_course')
56 56
 );
57 57
 
58 58
 if (!empty($courseId)) {
59 59
     $courseInfo = api_get_course_info_by_id($courseId);
60 60
     $parents = getParentsToString($courseInfo['categoryCode']);
61 61
 
62
-    $courseSelect->addOption($parents . $courseInfo['title'], $courseInfo['code'], ['selected' => 'selected']);
62
+    $courseSelect->addOption($parents.$courseInfo['title'], $courseInfo['code'], ['selected' => 'selected']);
63 63
 }
64 64
 
65 65
 $url = api_get_self();
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 // height auto
112 112
 $extra_params['height'] = 'auto';
113 113
 
114
-$extra_params['postData'] =array(
114
+$extra_params['postData'] = array(
115 115
     'filters' => array(
116 116
         "groupOp" => "AND",
117 117
         "rules" => $result['rules'],
@@ -125,11 +125,11 @@  discard block
 block discarded – undo
125 125
 
126 126
 //With this function we can add actions to the jgrid (edit, delete, etc)
127 127
 $action_links = 'function action_formatter(cellvalue, options, rowObject) {
128
-     return \'<a href="session_edit.php?page=resume_session.php&id=\'+options.rowId+\'">'.Display::return_icon('edit.png',get_lang('Edit'),'',ICON_SIZE_SMALL).'</a>'.
129
-    '&nbsp;<a href="add_users_to_session.php?page=session_list.php&id_session=\'+options.rowId+\'">'.Display::return_icon('user_subscribe_session.png',get_lang('SubscribeUsersToSession'),'',ICON_SIZE_SMALL).'</a>'.
130
-    '&nbsp;<a href="add_courses_to_session.php?page=session_list.php&id_session=\'+options.rowId+\'">'.Display::return_icon('courses_to_session.png',get_lang('SubscribeCoursesToSession'),'',ICON_SIZE_SMALL).'</a>'.
131
-    '&nbsp;<a onclick="javascript:if(!confirm('."\'".addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES))."\'".')) return false;"  href="session_list.php?action=copy&idChecked=\'+options.rowId+\'">'.Display::return_icon('copy.png',get_lang('Copy'),'',ICON_SIZE_SMALL).'</a>'.
132
-    '&nbsp;<a onclick="javascript:if(!confirm('."\'".addslashes(api_htmlentities(get_lang("ConfirmYourChoice"),ENT_QUOTES))."\'".')) return false;"  href="session_list.php?action=delete&idChecked=\'+options.rowId+\'">'.Display::return_icon('delete.png',get_lang('Delete'),'',ICON_SIZE_SMALL).'</a>'.
128
+     return \'<a href="session_edit.php?page=resume_session.php&id=\'+options.rowId+\'">'.Display::return_icon('edit.png', get_lang('Edit'), '', ICON_SIZE_SMALL).'</a>'.
129
+    '&nbsp;<a href="add_users_to_session.php?page=session_list.php&id_session=\'+options.rowId+\'">'.Display::return_icon('user_subscribe_session.png', get_lang('SubscribeUsersToSession'), '', ICON_SIZE_SMALL).'</a>'.
130
+    '&nbsp;<a href="add_courses_to_session.php?page=session_list.php&id_session=\'+options.rowId+\'">'.Display::return_icon('courses_to_session.png', get_lang('SubscribeCoursesToSession'), '', ICON_SIZE_SMALL).'</a>'.
131
+    '&nbsp;<a onclick="javascript:if(!confirm('."\'".addslashes(api_htmlentities(get_lang("ConfirmYourChoice"), ENT_QUOTES))."\'".')) return false;"  href="session_list.php?action=copy&idChecked=\'+options.rowId+\'">'.Display::return_icon('copy.png', get_lang('Copy'), '', ICON_SIZE_SMALL).'</a>'.
132
+    '&nbsp;<a onclick="javascript:if(!confirm('."\'".addslashes(api_htmlentities(get_lang("ConfirmYourChoice"), ENT_QUOTES))."\'".')) return false;"  href="session_list.php?action=delete&idChecked=\'+options.rowId+\'">'.Display::return_icon('delete.png', get_lang('Delete'), '', ICON_SIZE_SMALL).'</a>'.
133 133
     '\';
134 134
 }';
135 135
 
@@ -298,18 +298,18 @@  discard block
 block discarded – undo
298 298
 <?php
299 299
 
300 300
 echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/session_add.php">'.
301
-    Display::return_icon('new_session.png',get_lang('AddSession'),'',ICON_SIZE_MEDIUM).'</a>';
301
+    Display::return_icon('new_session.png', get_lang('AddSession'), '', ICON_SIZE_MEDIUM).'</a>';
302 302
 if (api_is_platform_admin()) {
303 303
     echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/add_many_session_to_category.php">'.
304
-        Display::return_icon('session_to_category.png',get_lang('AddSessionsInCategories'),'',ICON_SIZE_MEDIUM).'</a>';
304
+        Display::return_icon('session_to_category.png', get_lang('AddSessionsInCategories'), '', ICON_SIZE_MEDIUM).'</a>';
305 305
     echo '<a href="'.api_get_path(WEB_CODE_PATH).'session/session_category_list.php">'.
306
-        Display::return_icon('folder.png',get_lang('ListSessionCategory'),'',ICON_SIZE_MEDIUM).'</a>';
306
+        Display::return_icon('folder.png', get_lang('ListSessionCategory'), '', ICON_SIZE_MEDIUM).'</a>';
307 307
 }
308 308
 
309 309
 if ($list_type == 'complete') {
310
-    echo '<a href="'.api_get_self().'?list_type=simple">'.Display::return_icon('view_remove.png',get_lang('Simple'),'',ICON_SIZE_MEDIUM).'</a>';
310
+    echo '<a href="'.api_get_self().'?list_type=simple">'.Display::return_icon('view_remove.png', get_lang('Simple'), '', ICON_SIZE_MEDIUM).'</a>';
311 311
 } else {
312
-    echo '<a href="'.api_get_self().'?list_type=complete">'.Display::return_icon('view_text.png',get_lang('Complete'),'',ICON_SIZE_MEDIUM).'</a>';
312
+    echo '<a href="'.api_get_self().'?list_type=complete">'.Display::return_icon('view_text.png', get_lang('Complete'), '', ICON_SIZE_MEDIUM).'</a>';
313 313
 }
314 314
 
315 315
 echo $actions;
Please login to merge, or discard this patch.
main/session/session_category_edit.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,15 +29,15 @@  discard block
 block discarded – undo
29 29
 $sql = "SELECT * FROM $tbl_session_category WHERE id='".$id."' ORDER BY name";
30 30
 $result = Database::query($sql);
31 31
 if (!$infos = Database::fetch_array($result)) {
32
-	header('Location: session_list.php');
33
-	exit();
32
+    header('Location: session_list.php');
33
+    exit();
34 34
 }
35 35
 
36 36
 list($year_start,$month_start,$day_start)=explode('-',$infos['date_start']);
37 37
 list($year_end,$month_end,$day_end)=explode('-',$infos['date_end']);
38 38
 
39 39
 if (!api_is_platform_admin() && $infos['session_admin_id']!=$_user['user_id'] && !api_is_session_admin()) {
40
-	api_not_allowed(true);
40
+    api_not_allowed(true);
41 41
 }
42 42
 
43 43
 if (isset($_POST['formSent']) && $_POST['formSent']) {
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $day_end
61 61
     );
62 62
     if ($return == strval(intval($return))) {
63
-		Display::addFlash(Display::return_message(get_lang('SessionCategoryUpdate')));
63
+        Display::addFlash(Display::return_message(get_lang('SessionCategoryUpdate')));
64 64
         header('Location: session_category_list.php');
65 65
         exit();
66 66
     }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 // display the header
74 74
 Display::display_header($tool_name);
75 75
 if (!empty($return)) {
76
-	Display::display_error_message($return,false);
76
+    Display::display_error_message($return,false);
77 77
 }
78 78
 ?>
79 79
 <div class="row">
Please login to merge, or discard this patch.
Spacing   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 	exit();
34 34
 }
35 35
 
36
-list($year_start,$month_start,$day_start)=explode('-',$infos['date_start']);
37
-list($year_end,$month_end,$day_end)=explode('-',$infos['date_end']);
36
+list($year_start, $month_start, $day_start) = explode('-', $infos['date_start']);
37
+list($year_end, $month_end, $day_end) = explode('-', $infos['date_end']);
38 38
 
39
-if (!api_is_platform_admin() && $infos['session_admin_id']!=$_user['user_id'] && !api_is_session_admin()) {
39
+if (!api_is_platform_admin() && $infos['session_admin_id'] != $_user['user_id'] && !api_is_session_admin()) {
40 40
 	api_not_allowed(true);
41 41
 }
42 42
 
@@ -73,85 +73,85 @@  discard block
 block discarded – undo
73 73
 // display the header
74 74
 Display::display_header($tool_name);
75 75
 if (!empty($return)) {
76
-	Display::display_error_message($return,false);
76
+	Display::display_error_message($return, false);
77 77
 }
78 78
 ?>
79 79
 <div class="row">
80 80
     <div class="col-md-12">
81 81
         <form method="post" name="form" action="<?php echo api_get_self(); ?>?id=<?php echo $id; ?>" class="form-horizontal">
82 82
         <input type="hidden" name="formSent" value="1">
83
-        <legend><?php echo $tool_name;?> </legend>
83
+        <legend><?php echo $tool_name; ?> </legend>
84 84
         <div class="form-group">
85 85
             <label class="col-sm-3 control-label"><?php echo get_lang('SessionName') ?></label>
86 86
             <div class="col-sm-6">
87
-                <input class="form-control" 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); ?>">
87
+                <input class="form-control" 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); ?>">
88 88
             </div>
89 89
             <div class="col-sm-3"></div>
90 90
         </div>
91 91
         <div class="form-group">
92 92
             <div class="col-sm-offset-3 col-sm-6">
93
-                <?php echo get_lang('TheTimeLimitsAreReferential');?>
93
+                <?php echo get_lang('TheTimeLimitsAreReferential'); ?>
94 94
                 <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('EditTimeLimit') ?></a>
95 95
             </div>
96 96
         </div>
97
-        <div style="display: <?php if($formSent && ($coachAccessStartDate!='0000-00-00 00:00:00' || $coachAccessEndDate!='0000-00-00 00:00:00')) echo 'block'; else echo 'none'; ?>;" id="options">
97
+        <div style="display: <?php if ($formSent && ($coachAccessStartDate != '0000-00-00 00:00:00' || $coachAccessEndDate != '0000-00-00 00:00:00')) echo 'block'; else echo 'none'; ?>;" id="options">
98 98
             <div class="form-group">
99 99
                 <label class="col-sm-3 control-label"><?php echo get_lang('DateStart') ?></label>
100 100
                 <div class="col-sm-6">
101 101
                     <select name="day_start">
102 102
                         <option value="1">01</option>
103
-                        <option value="2" <?php if($day_start == 2) echo 'selected="selected"'; ?> >02</option>
104
-                        <option value="3" <?php if($day_start == 3) echo 'selected="selected"'; ?> >03</option>
105
-                        <option value="4" <?php if($day_start == 4) echo 'selected="selected"'; ?> >04</option>
106
-                        <option value="5" <?php if($day_start == 5) echo 'selected="selected"'; ?> >05</option>
107
-                        <option value="6" <?php if($day_start == 6) echo 'selected="selected"'; ?> >06</option>
108
-                        <option value="7" <?php if($day_start == 7) echo 'selected="selected"'; ?> >07</option>
109
-                        <option value="8" <?php if($day_start == 8) echo 'selected="selected"'; ?> >08</option>
110
-                        <option value="9" <?php if($day_start == 9) echo 'selected="selected"'; ?> >09</option>
111
-                        <option value="10" <?php if($day_start == 10) echo 'selected="selected"'; ?> >10</option>
112
-                        <option value="11" <?php if($day_start == 11) echo 'selected="selected"'; ?> >11</option>
113
-                        <option value="12" <?php if($day_start == 12) echo 'selected="selected"'; ?> >12</option>
114
-                        <option value="13" <?php if($day_start == 13) echo 'selected="selected"'; ?> >13</option>
115
-                        <option value="14" <?php if($day_start == 14) echo 'selected="selected"'; ?> >14</option>
116
-                        <option value="15" <?php if($day_start == 15) echo 'selected="selected"'; ?> >15</option>
117
-                        <option value="16" <?php if($day_start == 16) echo 'selected="selected"'; ?> >16</option>
118
-                        <option value="17" <?php if($day_start == 17) echo 'selected="selected"'; ?> >17</option>
119
-                        <option value="18" <?php if($day_start == 18) echo 'selected="selected"'; ?> >18</option>
120
-                        <option value="19" <?php if($day_start == 19) echo 'selected="selected"'; ?> >19</option>
121
-                        <option value="20" <?php if($day_start == 20) echo 'selected="selected"'; ?> >20</option>
122
-                        <option value="21" <?php if($day_start == 21) echo 'selected="selected"'; ?> >21</option>
123
-                        <option value="22" <?php if($day_start == 22) echo 'selected="selected"'; ?> >22</option>
124
-                        <option value="23" <?php if($day_start == 23) echo 'selected="selected"'; ?> >23</option>
125
-                        <option value="24" <?php if($day_start == 24) echo 'selected="selected"'; ?> >24</option>
126
-                        <option value="25" <?php if($day_start == 25) echo 'selected="selected"'; ?> >25</option>
127
-                        <option value="26" <?php if($day_start == 26) echo 'selected="selected"'; ?> >26</option>
128
-                        <option value="27" <?php if($day_start == 27) echo 'selected="selected"'; ?> >27</option>
129
-                        <option value="28" <?php if($day_start == 28) echo 'selected="selected"'; ?> >28</option>
130
-                        <option value="29" <?php if($day_start == 29) echo 'selected="selected"'; ?> >29</option>
131
-                        <option value="30" <?php if($day_start == 30) echo 'selected="selected"'; ?> >30</option>
132
-                        <option value="31" <?php if($day_start == 31) echo 'selected="selected"'; ?> >31</option>
103
+                        <option value="2" <?php if ($day_start == 2) echo 'selected="selected"'; ?> >02</option>
104
+                        <option value="3" <?php if ($day_start == 3) echo 'selected="selected"'; ?> >03</option>
105
+                        <option value="4" <?php if ($day_start == 4) echo 'selected="selected"'; ?> >04</option>
106
+                        <option value="5" <?php if ($day_start == 5) echo 'selected="selected"'; ?> >05</option>
107
+                        <option value="6" <?php if ($day_start == 6) echo 'selected="selected"'; ?> >06</option>
108
+                        <option value="7" <?php if ($day_start == 7) echo 'selected="selected"'; ?> >07</option>
109
+                        <option value="8" <?php if ($day_start == 8) echo 'selected="selected"'; ?> >08</option>
110
+                        <option value="9" <?php if ($day_start == 9) echo 'selected="selected"'; ?> >09</option>
111
+                        <option value="10" <?php if ($day_start == 10) echo 'selected="selected"'; ?> >10</option>
112
+                        <option value="11" <?php if ($day_start == 11) echo 'selected="selected"'; ?> >11</option>
113
+                        <option value="12" <?php if ($day_start == 12) echo 'selected="selected"'; ?> >12</option>
114
+                        <option value="13" <?php if ($day_start == 13) echo 'selected="selected"'; ?> >13</option>
115
+                        <option value="14" <?php if ($day_start == 14) echo 'selected="selected"'; ?> >14</option>
116
+                        <option value="15" <?php if ($day_start == 15) echo 'selected="selected"'; ?> >15</option>
117
+                        <option value="16" <?php if ($day_start == 16) echo 'selected="selected"'; ?> >16</option>
118
+                        <option value="17" <?php if ($day_start == 17) echo 'selected="selected"'; ?> >17</option>
119
+                        <option value="18" <?php if ($day_start == 18) echo 'selected="selected"'; ?> >18</option>
120
+                        <option value="19" <?php if ($day_start == 19) echo 'selected="selected"'; ?> >19</option>
121
+                        <option value="20" <?php if ($day_start == 20) echo 'selected="selected"'; ?> >20</option>
122
+                        <option value="21" <?php if ($day_start == 21) echo 'selected="selected"'; ?> >21</option>
123
+                        <option value="22" <?php if ($day_start == 22) echo 'selected="selected"'; ?> >22</option>
124
+                        <option value="23" <?php if ($day_start == 23) echo 'selected="selected"'; ?> >23</option>
125
+                        <option value="24" <?php if ($day_start == 24) echo 'selected="selected"'; ?> >24</option>
126
+                        <option value="25" <?php if ($day_start == 25) echo 'selected="selected"'; ?> >25</option>
127
+                        <option value="26" <?php if ($day_start == 26) echo 'selected="selected"'; ?> >26</option>
128
+                        <option value="27" <?php if ($day_start == 27) echo 'selected="selected"'; ?> >27</option>
129
+                        <option value="28" <?php if ($day_start == 28) echo 'selected="selected"'; ?> >28</option>
130
+                        <option value="29" <?php if ($day_start == 29) echo 'selected="selected"'; ?> >29</option>
131
+                        <option value="30" <?php if ($day_start == 30) echo 'selected="selected"'; ?> >30</option>
132
+                        <option value="31" <?php if ($day_start == 31) echo 'selected="selected"'; ?> >31</option>
133 133
                   </select>
134 134
                   /
135 135
                   <select name="month_start">
136 136
                         <option value="1">01</option>
137
-                        <option value="2" <?php if($month_start == 2) echo 'selected="selected"'; ?> >02</option>
138
-                        <option value="3" <?php if($month_start == 3) echo 'selected="selected"'; ?> >03</option>
139
-                        <option value="4" <?php if($month_start == 4) echo 'selected="selected"'; ?> >04</option>
140
-                        <option value="5" <?php if($month_start == 5) echo 'selected="selected"'; ?> >05</option>
141
-                        <option value="6" <?php if($month_start == 6) echo 'selected="selected"'; ?> >06</option>
142
-                        <option value="7" <?php if($month_start == 7) echo 'selected="selected"'; ?> >07</option>
143
-                        <option value="8" <?php if($month_start == 8) echo 'selected="selected"'; ?> >08</option>
144
-                        <option value="9" <?php if($month_start == 9) echo 'selected="selected"'; ?> >09</option>
145
-                        <option value="10" <?php if($month_start == 10) echo 'selected="selected"'; ?> >10</option>
146
-                        <option value="11" <?php if($month_start == 11) echo 'selected="selected"'; ?> >11</option>
147
-                        <option value="12" <?php if($month_start == 12) echo 'selected="selected"'; ?> >12</option>
137
+                        <option value="2" <?php if ($month_start == 2) echo 'selected="selected"'; ?> >02</option>
138
+                        <option value="3" <?php if ($month_start == 3) echo 'selected="selected"'; ?> >03</option>
139
+                        <option value="4" <?php if ($month_start == 4) echo 'selected="selected"'; ?> >04</option>
140
+                        <option value="5" <?php if ($month_start == 5) echo 'selected="selected"'; ?> >05</option>
141
+                        <option value="6" <?php if ($month_start == 6) echo 'selected="selected"'; ?> >06</option>
142
+                        <option value="7" <?php if ($month_start == 7) echo 'selected="selected"'; ?> >07</option>
143
+                        <option value="8" <?php if ($month_start == 8) echo 'selected="selected"'; ?> >08</option>
144
+                        <option value="9" <?php if ($month_start == 9) echo 'selected="selected"'; ?> >09</option>
145
+                        <option value="10" <?php if ($month_start == 10) echo 'selected="selected"'; ?> >10</option>
146
+                        <option value="11" <?php if ($month_start == 11) echo 'selected="selected"'; ?> >11</option>
147
+                        <option value="12" <?php if ($month_start == 12) echo 'selected="selected"'; ?> >12</option>
148 148
                   </select>
149 149
                   /
150 150
                 <select name="year_start">
151 151
                         <?php
152
-                        for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
152
+                        for ($i = $thisYear - 5; $i <= ($thisYear + 5); $i++)
153 153
                         { ?>
154
-                                <option value="<?php echo $i; ?>" <?php if($year_start == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
154
+                                <option value="<?php echo $i; ?>" <?php if ($year_start == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
155 155
                         <?php
156 156
                         } ?>
157 157
                 </select>
@@ -163,61 +163,61 @@  discard block
 block discarded – undo
163 163
                 <div class="col-sm-6">
164 164
                     <select name="day_end">
165 165
                         <option value="0">--</option>
166
-                        <option value="1" <?php if($day_end == 1) echo 'selected="selected"'; ?> >01</option>
167
-                        <option value="2" <?php if($day_end == 2) echo 'selected="selected"'; ?> >02</option>
168
-                        <option value="3" <?php if($day_end == 3) echo 'selected="selected"'; ?> >03</option>
169
-                        <option value="4" <?php if($day_end == 4) echo 'selected="selected"'; ?> >04</option>
170
-                        <option value="5" <?php if($day_end == 5) echo 'selected="selected"'; ?> >05</option>
171
-                        <option value="6" <?php if($day_end == 6) echo 'selected="selected"'; ?> >06</option>
172
-                        <option value="7" <?php if($day_end == 7) echo 'selected="selected"'; ?> >07</option>
173
-                        <option value="8" <?php if($day_end == 8) echo 'selected="selected"'; ?> >08</option>
174
-                        <option value="9" <?php if($day_end == 9) echo 'selected="selected"'; ?> >09</option>
175
-                        <option value="10" <?php if($day_end == 10) echo 'selected="selected"'; ?> >10</option>
176
-                        <option value="11" <?php if($day_end == 11) echo 'selected="selected"'; ?> >11</option>
177
-                        <option value="12" <?php if($day_end == 12) echo 'selected="selected"'; ?> >12</option>
178
-                        <option value="13" <?php if($day_end == 13) echo 'selected="selected"'; ?> >13</option>
179
-                        <option value="14" <?php if($day_end == 14) echo 'selected="selected"'; ?> >14</option>
180
-                        <option value="15" <?php if($day_end == 15) echo 'selected="selected"'; ?> >15</option>
181
-                        <option value="16" <?php if($day_end == 16) echo 'selected="selected"'; ?> >16</option>
182
-                        <option value="17" <?php if($day_end == 17) echo 'selected="selected"'; ?> >17</option>
183
-                        <option value="18" <?php if($day_end == 18) echo 'selected="selected"'; ?> >18</option>
184
-                        <option value="19" <?php if($day_end == 19) echo 'selected="selected"'; ?> >19</option>
185
-                        <option value="20" <?php if($day_end == 20) echo 'selected="selected"'; ?> >20</option>
186
-                        <option value="21" <?php if($day_end == 21) echo 'selected="selected"'; ?> >21</option>
187
-                        <option value="22" <?php if($day_end == 22) echo 'selected="selected"'; ?> >22</option>
188
-                        <option value="23" <?php if($day_end == 23) echo 'selected="selected"'; ?> >23</option>
189
-                        <option value="24" <?php if($day_end == 24) echo 'selected="selected"'; ?> >24</option>
190
-                        <option value="25" <?php if($day_end == 25) echo 'selected="selected"'; ?> >25</option>
191
-                        <option value="26" <?php if($day_end == 26) echo 'selected="selected"'; ?> >26</option>
192
-                        <option value="27" <?php if($day_end == 27) echo 'selected="selected"'; ?> >27</option>
193
-                        <option value="28" <?php if($day_end == 28) echo 'selected="selected"'; ?> >28</option>
194
-                        <option value="29" <?php if($day_end == 29) echo 'selected="selected"'; ?> >29</option>
195
-                        <option value="30" <?php if($day_end == 30) echo 'selected="selected"'; ?> >30</option>
196
-                        <option value="31" <?php if($day_end == 31) echo 'selected="selected"'; ?> >31</option>
166
+                        <option value="1" <?php if ($day_end == 1) echo 'selected="selected"'; ?> >01</option>
167
+                        <option value="2" <?php if ($day_end == 2) echo 'selected="selected"'; ?> >02</option>
168
+                        <option value="3" <?php if ($day_end == 3) echo 'selected="selected"'; ?> >03</option>
169
+                        <option value="4" <?php if ($day_end == 4) echo 'selected="selected"'; ?> >04</option>
170
+                        <option value="5" <?php if ($day_end == 5) echo 'selected="selected"'; ?> >05</option>
171
+                        <option value="6" <?php if ($day_end == 6) echo 'selected="selected"'; ?> >06</option>
172
+                        <option value="7" <?php if ($day_end == 7) echo 'selected="selected"'; ?> >07</option>
173
+                        <option value="8" <?php if ($day_end == 8) echo 'selected="selected"'; ?> >08</option>
174
+                        <option value="9" <?php if ($day_end == 9) echo 'selected="selected"'; ?> >09</option>
175
+                        <option value="10" <?php if ($day_end == 10) echo 'selected="selected"'; ?> >10</option>
176
+                        <option value="11" <?php if ($day_end == 11) echo 'selected="selected"'; ?> >11</option>
177
+                        <option value="12" <?php if ($day_end == 12) echo 'selected="selected"'; ?> >12</option>
178
+                        <option value="13" <?php if ($day_end == 13) echo 'selected="selected"'; ?> >13</option>
179
+                        <option value="14" <?php if ($day_end == 14) echo 'selected="selected"'; ?> >14</option>
180
+                        <option value="15" <?php if ($day_end == 15) echo 'selected="selected"'; ?> >15</option>
181
+                        <option value="16" <?php if ($day_end == 16) echo 'selected="selected"'; ?> >16</option>
182
+                        <option value="17" <?php if ($day_end == 17) echo 'selected="selected"'; ?> >17</option>
183
+                        <option value="18" <?php if ($day_end == 18) echo 'selected="selected"'; ?> >18</option>
184
+                        <option value="19" <?php if ($day_end == 19) echo 'selected="selected"'; ?> >19</option>
185
+                        <option value="20" <?php if ($day_end == 20) echo 'selected="selected"'; ?> >20</option>
186
+                        <option value="21" <?php if ($day_end == 21) echo 'selected="selected"'; ?> >21</option>
187
+                        <option value="22" <?php if ($day_end == 22) echo 'selected="selected"'; ?> >22</option>
188
+                        <option value="23" <?php if ($day_end == 23) echo 'selected="selected"'; ?> >23</option>
189
+                        <option value="24" <?php if ($day_end == 24) echo 'selected="selected"'; ?> >24</option>
190
+                        <option value="25" <?php if ($day_end == 25) echo 'selected="selected"'; ?> >25</option>
191
+                        <option value="26" <?php if ($day_end == 26) echo 'selected="selected"'; ?> >26</option>
192
+                        <option value="27" <?php if ($day_end == 27) echo 'selected="selected"'; ?> >27</option>
193
+                        <option value="28" <?php if ($day_end == 28) echo 'selected="selected"'; ?> >28</option>
194
+                        <option value="29" <?php if ($day_end == 29) echo 'selected="selected"'; ?> >29</option>
195
+                        <option value="30" <?php if ($day_end == 30) echo 'selected="selected"'; ?> >30</option>
196
+                        <option value="31" <?php if ($day_end == 31) echo 'selected="selected"'; ?> >31</option>
197 197
                   </select>
198 198
                   /
199 199
                   <select name="month_end">
200 200
                         <option value="0">--</option>
201
-                        <option value="1" <?php if($month_end == 1) echo 'selected="selected"'; ?> >01</option>
202
-                        <option value="2" <?php if($month_end == 2) echo 'selected="selected"'; ?> >02</option>
203
-                        <option value="3" <?php if($month_end == 3) echo 'selected="selected"'; ?> >03</option>
204
-                        <option value="4" <?php if($month_end == 4) echo 'selected="selected"'; ?> >04</option>
205
-                        <option value="5" <?php if($month_end == 5) echo 'selected="selected"'; ?> >05</option>
206
-                        <option value="6" <?php if($month_end == 6) echo 'selected="selected"'; ?> >06</option>
207
-                        <option value="7" <?php if($month_end == 7) echo 'selected="selected"'; ?> >07</option>
208
-                        <option value="8" <?php if($month_end == 8) echo 'selected="selected"'; ?> >08</option>
209
-                        <option value="9" <?php if($month_end == 9) echo 'selected="selected"'; ?> >09</option>
210
-                        <option value="10" <?php if($month_end == 10) echo 'selected="selected"'; ?> >10</option>
211
-                        <option value="11" <?php if($month_end == 11) echo 'selected="selected"'; ?> >11</option>
212
-                        <option value="12" <?php if($month_end == 12) echo 'selected="selected"'; ?> >12</option>
201
+                        <option value="1" <?php if ($month_end == 1) echo 'selected="selected"'; ?> >01</option>
202
+                        <option value="2" <?php if ($month_end == 2) echo 'selected="selected"'; ?> >02</option>
203
+                        <option value="3" <?php if ($month_end == 3) echo 'selected="selected"'; ?> >03</option>
204
+                        <option value="4" <?php if ($month_end == 4) echo 'selected="selected"'; ?> >04</option>
205
+                        <option value="5" <?php if ($month_end == 5) echo 'selected="selected"'; ?> >05</option>
206
+                        <option value="6" <?php if ($month_end == 6) echo 'selected="selected"'; ?> >06</option>
207
+                        <option value="7" <?php if ($month_end == 7) echo 'selected="selected"'; ?> >07</option>
208
+                        <option value="8" <?php if ($month_end == 8) echo 'selected="selected"'; ?> >08</option>
209
+                        <option value="9" <?php if ($month_end == 9) echo 'selected="selected"'; ?> >09</option>
210
+                        <option value="10" <?php if ($month_end == 10) echo 'selected="selected"'; ?> >10</option>
211
+                        <option value="11" <?php if ($month_end == 11) echo 'selected="selected"'; ?> >11</option>
212
+                        <option value="12" <?php if ($month_end == 12) echo 'selected="selected"'; ?> >12</option>
213 213
                   </select>
214 214
                   /
215 215
                   <select name="year_end">
216 216
                         <option value="0">----</option>
217 217
                         <?php
218
-                        for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
218
+                        for ($i = $thisYear - 5; $i <= ($thisYear + 5); $i++)
219 219
                         { ?>
220
-                         <option value="<?php echo $i; ?>" <?php if($year_end == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
220
+                         <option value="<?php echo $i; ?>" <?php if ($year_end == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
221 221
                         <?php
222 222
                         } ?>
223 223
                  </select>
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
 
240 240
 <script>
241
-<?php if($year_start=="0000") echo "setDisable(document.form.nolimit);\r\n"; ?>
241
+<?php if ($year_start == "0000") echo "setDisable(document.form.nolimit);\r\n"; ?>
242 242
 function setDisable(select){
243 243
 	document.form.day_start.disabled = (select.checked) ? true : false;
244 244
 	document.form.month_start.disabled = (select.checked) ? true : false;
Please login to merge, or discard this patch.
Braces   +360 added lines, -89 removed lines patch added patch discarded remove patch
@@ -84,7 +84,12 @@  discard block
 block discarded – undo
84 84
         <div class="form-group">
85 85
             <label class="col-sm-3 control-label"><?php echo get_lang('SessionName') ?></label>
86 86
             <div class="col-sm-6">
87
-                <input class="form-control" 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); ?>">
87
+                <input class="form-control" type="text" name="name" size="50" maxlength="50" value="<?php if($formSent) {
88
+    echo api_htmlentities($name,ENT_QUOTES,$charset);
89
+} else {
90
+    echo api_htmlentities($infos['name'],ENT_QUOTES,$charset);
91
+}
92
+?>">
88 93
             </div>
89 94
             <div class="col-sm-3"></div>
90 95
         </div>
@@ -94,64 +99,195 @@  discard block
 block discarded – undo
94 99
                 <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('EditTimeLimit') ?></a>
95 100
             </div>
96 101
         </div>
97
-        <div style="display: <?php if($formSent && ($coachAccessStartDate!='0000-00-00 00:00:00' || $coachAccessEndDate!='0000-00-00 00:00:00')) echo 'block'; else echo 'none'; ?>;" id="options">
102
+        <div style="display: <?php if($formSent && ($coachAccessStartDate!='0000-00-00 00:00:00' || $coachAccessEndDate!='0000-00-00 00:00:00')) {
103
+    echo 'block';
104
+} else {
105
+    echo 'none';
106
+}
107
+?>;" id="options">
98 108
             <div class="form-group">
99 109
                 <label class="col-sm-3 control-label"><?php echo get_lang('DateStart') ?></label>
100 110
                 <div class="col-sm-6">
101 111
                     <select name="day_start">
102 112
                         <option value="1">01</option>
103
-                        <option value="2" <?php if($day_start == 2) echo 'selected="selected"'; ?> >02</option>
104
-                        <option value="3" <?php if($day_start == 3) echo 'selected="selected"'; ?> >03</option>
105
-                        <option value="4" <?php if($day_start == 4) echo 'selected="selected"'; ?> >04</option>
106
-                        <option value="5" <?php if($day_start == 5) echo 'selected="selected"'; ?> >05</option>
107
-                        <option value="6" <?php if($day_start == 6) echo 'selected="selected"'; ?> >06</option>
108
-                        <option value="7" <?php if($day_start == 7) echo 'selected="selected"'; ?> >07</option>
109
-                        <option value="8" <?php if($day_start == 8) echo 'selected="selected"'; ?> >08</option>
110
-                        <option value="9" <?php if($day_start == 9) echo 'selected="selected"'; ?> >09</option>
111
-                        <option value="10" <?php if($day_start == 10) echo 'selected="selected"'; ?> >10</option>
112
-                        <option value="11" <?php if($day_start == 11) echo 'selected="selected"'; ?> >11</option>
113
-                        <option value="12" <?php if($day_start == 12) echo 'selected="selected"'; ?> >12</option>
114
-                        <option value="13" <?php if($day_start == 13) echo 'selected="selected"'; ?> >13</option>
115
-                        <option value="14" <?php if($day_start == 14) echo 'selected="selected"'; ?> >14</option>
116
-                        <option value="15" <?php if($day_start == 15) echo 'selected="selected"'; ?> >15</option>
117
-                        <option value="16" <?php if($day_start == 16) echo 'selected="selected"'; ?> >16</option>
118
-                        <option value="17" <?php if($day_start == 17) echo 'selected="selected"'; ?> >17</option>
119
-                        <option value="18" <?php if($day_start == 18) echo 'selected="selected"'; ?> >18</option>
120
-                        <option value="19" <?php if($day_start == 19) echo 'selected="selected"'; ?> >19</option>
121
-                        <option value="20" <?php if($day_start == 20) echo 'selected="selected"'; ?> >20</option>
122
-                        <option value="21" <?php if($day_start == 21) echo 'selected="selected"'; ?> >21</option>
123
-                        <option value="22" <?php if($day_start == 22) echo 'selected="selected"'; ?> >22</option>
124
-                        <option value="23" <?php if($day_start == 23) echo 'selected="selected"'; ?> >23</option>
125
-                        <option value="24" <?php if($day_start == 24) echo 'selected="selected"'; ?> >24</option>
126
-                        <option value="25" <?php if($day_start == 25) echo 'selected="selected"'; ?> >25</option>
127
-                        <option value="26" <?php if($day_start == 26) echo 'selected="selected"'; ?> >26</option>
128
-                        <option value="27" <?php if($day_start == 27) echo 'selected="selected"'; ?> >27</option>
129
-                        <option value="28" <?php if($day_start == 28) echo 'selected="selected"'; ?> >28</option>
130
-                        <option value="29" <?php if($day_start == 29) echo 'selected="selected"'; ?> >29</option>
131
-                        <option value="30" <?php if($day_start == 30) echo 'selected="selected"'; ?> >30</option>
132
-                        <option value="31" <?php if($day_start == 31) echo 'selected="selected"'; ?> >31</option>
113
+                        <option value="2" <?php if($day_start == 2) {
114
+    echo 'selected="selected"';
115
+}
116
+?> >02</option>
117
+                        <option value="3" <?php if($day_start == 3) {
118
+    echo 'selected="selected"';
119
+}
120
+?> >03</option>
121
+                        <option value="4" <?php if($day_start == 4) {
122
+    echo 'selected="selected"';
123
+}
124
+?> >04</option>
125
+                        <option value="5" <?php if($day_start == 5) {
126
+    echo 'selected="selected"';
127
+}
128
+?> >05</option>
129
+                        <option value="6" <?php if($day_start == 6) {
130
+    echo 'selected="selected"';
131
+}
132
+?> >06</option>
133
+                        <option value="7" <?php if($day_start == 7) {
134
+    echo 'selected="selected"';
135
+}
136
+?> >07</option>
137
+                        <option value="8" <?php if($day_start == 8) {
138
+    echo 'selected="selected"';
139
+}
140
+?> >08</option>
141
+                        <option value="9" <?php if($day_start == 9) {
142
+    echo 'selected="selected"';
143
+}
144
+?> >09</option>
145
+                        <option value="10" <?php if($day_start == 10) {
146
+    echo 'selected="selected"';
147
+}
148
+?> >10</option>
149
+                        <option value="11" <?php if($day_start == 11) {
150
+    echo 'selected="selected"';
151
+}
152
+?> >11</option>
153
+                        <option value="12" <?php if($day_start == 12) {
154
+    echo 'selected="selected"';
155
+}
156
+?> >12</option>
157
+                        <option value="13" <?php if($day_start == 13) {
158
+    echo 'selected="selected"';
159
+}
160
+?> >13</option>
161
+                        <option value="14" <?php if($day_start == 14) {
162
+    echo 'selected="selected"';
163
+}
164
+?> >14</option>
165
+                        <option value="15" <?php if($day_start == 15) {
166
+    echo 'selected="selected"';
167
+}
168
+?> >15</option>
169
+                        <option value="16" <?php if($day_start == 16) {
170
+    echo 'selected="selected"';
171
+}
172
+?> >16</option>
173
+                        <option value="17" <?php if($day_start == 17) {
174
+    echo 'selected="selected"';
175
+}
176
+?> >17</option>
177
+                        <option value="18" <?php if($day_start == 18) {
178
+    echo 'selected="selected"';
179
+}
180
+?> >18</option>
181
+                        <option value="19" <?php if($day_start == 19) {
182
+    echo 'selected="selected"';
183
+}
184
+?> >19</option>
185
+                        <option value="20" <?php if($day_start == 20) {
186
+    echo 'selected="selected"';
187
+}
188
+?> >20</option>
189
+                        <option value="21" <?php if($day_start == 21) {
190
+    echo 'selected="selected"';
191
+}
192
+?> >21</option>
193
+                        <option value="22" <?php if($day_start == 22) {
194
+    echo 'selected="selected"';
195
+}
196
+?> >22</option>
197
+                        <option value="23" <?php if($day_start == 23) {
198
+    echo 'selected="selected"';
199
+}
200
+?> >23</option>
201
+                        <option value="24" <?php if($day_start == 24) {
202
+    echo 'selected="selected"';
203
+}
204
+?> >24</option>
205
+                        <option value="25" <?php if($day_start == 25) {
206
+    echo 'selected="selected"';
207
+}
208
+?> >25</option>
209
+                        <option value="26" <?php if($day_start == 26) {
210
+    echo 'selected="selected"';
211
+}
212
+?> >26</option>
213
+                        <option value="27" <?php if($day_start == 27) {
214
+    echo 'selected="selected"';
215
+}
216
+?> >27</option>
217
+                        <option value="28" <?php if($day_start == 28) {
218
+    echo 'selected="selected"';
219
+}
220
+?> >28</option>
221
+                        <option value="29" <?php if($day_start == 29) {
222
+    echo 'selected="selected"';
223
+}
224
+?> >29</option>
225
+                        <option value="30" <?php if($day_start == 30) {
226
+    echo 'selected="selected"';
227
+}
228
+?> >30</option>
229
+                        <option value="31" <?php if($day_start == 31) {
230
+    echo 'selected="selected"';
231
+}
232
+?> >31</option>
133 233
                   </select>
134 234
                   /
135 235
                   <select name="month_start">
136 236
                         <option value="1">01</option>
137
-                        <option value="2" <?php if($month_start == 2) echo 'selected="selected"'; ?> >02</option>
138
-                        <option value="3" <?php if($month_start == 3) echo 'selected="selected"'; ?> >03</option>
139
-                        <option value="4" <?php if($month_start == 4) echo 'selected="selected"'; ?> >04</option>
140
-                        <option value="5" <?php if($month_start == 5) echo 'selected="selected"'; ?> >05</option>
141
-                        <option value="6" <?php if($month_start == 6) echo 'selected="selected"'; ?> >06</option>
142
-                        <option value="7" <?php if($month_start == 7) echo 'selected="selected"'; ?> >07</option>
143
-                        <option value="8" <?php if($month_start == 8) echo 'selected="selected"'; ?> >08</option>
144
-                        <option value="9" <?php if($month_start == 9) echo 'selected="selected"'; ?> >09</option>
145
-                        <option value="10" <?php if($month_start == 10) echo 'selected="selected"'; ?> >10</option>
146
-                        <option value="11" <?php if($month_start == 11) echo 'selected="selected"'; ?> >11</option>
147
-                        <option value="12" <?php if($month_start == 12) echo 'selected="selected"'; ?> >12</option>
237
+                        <option value="2" <?php if($month_start == 2) {
238
+    echo 'selected="selected"';
239
+}
240
+?> >02</option>
241
+                        <option value="3" <?php if($month_start == 3) {
242
+    echo 'selected="selected"';
243
+}
244
+?> >03</option>
245
+                        <option value="4" <?php if($month_start == 4) {
246
+    echo 'selected="selected"';
247
+}
248
+?> >04</option>
249
+                        <option value="5" <?php if($month_start == 5) {
250
+    echo 'selected="selected"';
251
+}
252
+?> >05</option>
253
+                        <option value="6" <?php if($month_start == 6) {
254
+    echo 'selected="selected"';
255
+}
256
+?> >06</option>
257
+                        <option value="7" <?php if($month_start == 7) {
258
+    echo 'selected="selected"';
259
+}
260
+?> >07</option>
261
+                        <option value="8" <?php if($month_start == 8) {
262
+    echo 'selected="selected"';
263
+}
264
+?> >08</option>
265
+                        <option value="9" <?php if($month_start == 9) {
266
+    echo 'selected="selected"';
267
+}
268
+?> >09</option>
269
+                        <option value="10" <?php if($month_start == 10) {
270
+    echo 'selected="selected"';
271
+}
272
+?> >10</option>
273
+                        <option value="11" <?php if($month_start == 11) {
274
+    echo 'selected="selected"';
275
+}
276
+?> >11</option>
277
+                        <option value="12" <?php if($month_start == 12) {
278
+    echo 'selected="selected"';
279
+}
280
+?> >12</option>
148 281
                   </select>
149 282
                   /
150 283
                 <select name="year_start">
151 284
                         <?php
152 285
                         for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
153 286
                         { ?>
154
-                                <option value="<?php echo $i; ?>" <?php if($year_start == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
287
+                                <option value="<?php echo $i; ?>" <?php if($year_start == $i) {
288
+    echo 'selected="selected"';
289
+}
290
+?> ><?php echo $i; ?></option>
155 291
                         <?php
156 292
                         } ?>
157 293
                 </select>
@@ -163,53 +299,182 @@  discard block
 block discarded – undo
163 299
                 <div class="col-sm-6">
164 300
                     <select name="day_end">
165 301
                         <option value="0">--</option>
166
-                        <option value="1" <?php if($day_end == 1) echo 'selected="selected"'; ?> >01</option>
167
-                        <option value="2" <?php if($day_end == 2) echo 'selected="selected"'; ?> >02</option>
168
-                        <option value="3" <?php if($day_end == 3) echo 'selected="selected"'; ?> >03</option>
169
-                        <option value="4" <?php if($day_end == 4) echo 'selected="selected"'; ?> >04</option>
170
-                        <option value="5" <?php if($day_end == 5) echo 'selected="selected"'; ?> >05</option>
171
-                        <option value="6" <?php if($day_end == 6) echo 'selected="selected"'; ?> >06</option>
172
-                        <option value="7" <?php if($day_end == 7) echo 'selected="selected"'; ?> >07</option>
173
-                        <option value="8" <?php if($day_end == 8) echo 'selected="selected"'; ?> >08</option>
174
-                        <option value="9" <?php if($day_end == 9) echo 'selected="selected"'; ?> >09</option>
175
-                        <option value="10" <?php if($day_end == 10) echo 'selected="selected"'; ?> >10</option>
176
-                        <option value="11" <?php if($day_end == 11) echo 'selected="selected"'; ?> >11</option>
177
-                        <option value="12" <?php if($day_end == 12) echo 'selected="selected"'; ?> >12</option>
178
-                        <option value="13" <?php if($day_end == 13) echo 'selected="selected"'; ?> >13</option>
179
-                        <option value="14" <?php if($day_end == 14) echo 'selected="selected"'; ?> >14</option>
180
-                        <option value="15" <?php if($day_end == 15) echo 'selected="selected"'; ?> >15</option>
181
-                        <option value="16" <?php if($day_end == 16) echo 'selected="selected"'; ?> >16</option>
182
-                        <option value="17" <?php if($day_end == 17) echo 'selected="selected"'; ?> >17</option>
183
-                        <option value="18" <?php if($day_end == 18) echo 'selected="selected"'; ?> >18</option>
184
-                        <option value="19" <?php if($day_end == 19) echo 'selected="selected"'; ?> >19</option>
185
-                        <option value="20" <?php if($day_end == 20) echo 'selected="selected"'; ?> >20</option>
186
-                        <option value="21" <?php if($day_end == 21) echo 'selected="selected"'; ?> >21</option>
187
-                        <option value="22" <?php if($day_end == 22) echo 'selected="selected"'; ?> >22</option>
188
-                        <option value="23" <?php if($day_end == 23) echo 'selected="selected"'; ?> >23</option>
189
-                        <option value="24" <?php if($day_end == 24) echo 'selected="selected"'; ?> >24</option>
190
-                        <option value="25" <?php if($day_end == 25) echo 'selected="selected"'; ?> >25</option>
191
-                        <option value="26" <?php if($day_end == 26) echo 'selected="selected"'; ?> >26</option>
192
-                        <option value="27" <?php if($day_end == 27) echo 'selected="selected"'; ?> >27</option>
193
-                        <option value="28" <?php if($day_end == 28) echo 'selected="selected"'; ?> >28</option>
194
-                        <option value="29" <?php if($day_end == 29) echo 'selected="selected"'; ?> >29</option>
195
-                        <option value="30" <?php if($day_end == 30) echo 'selected="selected"'; ?> >30</option>
196
-                        <option value="31" <?php if($day_end == 31) echo 'selected="selected"'; ?> >31</option>
302
+                        <option value="1" <?php if($day_end == 1) {
303
+    echo 'selected="selected"';
304
+}
305
+?> >01</option>
306
+                        <option value="2" <?php if($day_end == 2) {
307
+    echo 'selected="selected"';
308
+}
309
+?> >02</option>
310
+                        <option value="3" <?php if($day_end == 3) {
311
+    echo 'selected="selected"';
312
+}
313
+?> >03</option>
314
+                        <option value="4" <?php if($day_end == 4) {
315
+    echo 'selected="selected"';
316
+}
317
+?> >04</option>
318
+                        <option value="5" <?php if($day_end == 5) {
319
+    echo 'selected="selected"';
320
+}
321
+?> >05</option>
322
+                        <option value="6" <?php if($day_end == 6) {
323
+    echo 'selected="selected"';
324
+}
325
+?> >06</option>
326
+                        <option value="7" <?php if($day_end == 7) {
327
+    echo 'selected="selected"';
328
+}
329
+?> >07</option>
330
+                        <option value="8" <?php if($day_end == 8) {
331
+    echo 'selected="selected"';
332
+}
333
+?> >08</option>
334
+                        <option value="9" <?php if($day_end == 9) {
335
+    echo 'selected="selected"';
336
+}
337
+?> >09</option>
338
+                        <option value="10" <?php if($day_end == 10) {
339
+    echo 'selected="selected"';
340
+}
341
+?> >10</option>
342
+                        <option value="11" <?php if($day_end == 11) {
343
+    echo 'selected="selected"';
344
+}
345
+?> >11</option>
346
+                        <option value="12" <?php if($day_end == 12) {
347
+    echo 'selected="selected"';
348
+}
349
+?> >12</option>
350
+                        <option value="13" <?php if($day_end == 13) {
351
+    echo 'selected="selected"';
352
+}
353
+?> >13</option>
354
+                        <option value="14" <?php if($day_end == 14) {
355
+    echo 'selected="selected"';
356
+}
357
+?> >14</option>
358
+                        <option value="15" <?php if($day_end == 15) {
359
+    echo 'selected="selected"';
360
+}
361
+?> >15</option>
362
+                        <option value="16" <?php if($day_end == 16) {
363
+    echo 'selected="selected"';
364
+}
365
+?> >16</option>
366
+                        <option value="17" <?php if($day_end == 17) {
367
+    echo 'selected="selected"';
368
+}
369
+?> >17</option>
370
+                        <option value="18" <?php if($day_end == 18) {
371
+    echo 'selected="selected"';
372
+}
373
+?> >18</option>
374
+                        <option value="19" <?php if($day_end == 19) {
375
+    echo 'selected="selected"';
376
+}
377
+?> >19</option>
378
+                        <option value="20" <?php if($day_end == 20) {
379
+    echo 'selected="selected"';
380
+}
381
+?> >20</option>
382
+                        <option value="21" <?php if($day_end == 21) {
383
+    echo 'selected="selected"';
384
+}
385
+?> >21</option>
386
+                        <option value="22" <?php if($day_end == 22) {
387
+    echo 'selected="selected"';
388
+}
389
+?> >22</option>
390
+                        <option value="23" <?php if($day_end == 23) {
391
+    echo 'selected="selected"';
392
+}
393
+?> >23</option>
394
+                        <option value="24" <?php if($day_end == 24) {
395
+    echo 'selected="selected"';
396
+}
397
+?> >24</option>
398
+                        <option value="25" <?php if($day_end == 25) {
399
+    echo 'selected="selected"';
400
+}
401
+?> >25</option>
402
+                        <option value="26" <?php if($day_end == 26) {
403
+    echo 'selected="selected"';
404
+}
405
+?> >26</option>
406
+                        <option value="27" <?php if($day_end == 27) {
407
+    echo 'selected="selected"';
408
+}
409
+?> >27</option>
410
+                        <option value="28" <?php if($day_end == 28) {
411
+    echo 'selected="selected"';
412
+}
413
+?> >28</option>
414
+                        <option value="29" <?php if($day_end == 29) {
415
+    echo 'selected="selected"';
416
+}
417
+?> >29</option>
418
+                        <option value="30" <?php if($day_end == 30) {
419
+    echo 'selected="selected"';
420
+}
421
+?> >30</option>
422
+                        <option value="31" <?php if($day_end == 31) {
423
+    echo 'selected="selected"';
424
+}
425
+?> >31</option>
197 426
                   </select>
198 427
                   /
199 428
                   <select name="month_end">
200 429
                         <option value="0">--</option>
201
-                        <option value="1" <?php if($month_end == 1) echo 'selected="selected"'; ?> >01</option>
202
-                        <option value="2" <?php if($month_end == 2) echo 'selected="selected"'; ?> >02</option>
203
-                        <option value="3" <?php if($month_end == 3) echo 'selected="selected"'; ?> >03</option>
204
-                        <option value="4" <?php if($month_end == 4) echo 'selected="selected"'; ?> >04</option>
205
-                        <option value="5" <?php if($month_end == 5) echo 'selected="selected"'; ?> >05</option>
206
-                        <option value="6" <?php if($month_end == 6) echo 'selected="selected"'; ?> >06</option>
207
-                        <option value="7" <?php if($month_end == 7) echo 'selected="selected"'; ?> >07</option>
208
-                        <option value="8" <?php if($month_end == 8) echo 'selected="selected"'; ?> >08</option>
209
-                        <option value="9" <?php if($month_end == 9) echo 'selected="selected"'; ?> >09</option>
210
-                        <option value="10" <?php if($month_end == 10) echo 'selected="selected"'; ?> >10</option>
211
-                        <option value="11" <?php if($month_end == 11) echo 'selected="selected"'; ?> >11</option>
212
-                        <option value="12" <?php if($month_end == 12) echo 'selected="selected"'; ?> >12</option>
430
+                        <option value="1" <?php if($month_end == 1) {
431
+    echo 'selected="selected"';
432
+}
433
+?> >01</option>
434
+                        <option value="2" <?php if($month_end == 2) {
435
+    echo 'selected="selected"';
436
+}
437
+?> >02</option>
438
+                        <option value="3" <?php if($month_end == 3) {
439
+    echo 'selected="selected"';
440
+}
441
+?> >03</option>
442
+                        <option value="4" <?php if($month_end == 4) {
443
+    echo 'selected="selected"';
444
+}
445
+?> >04</option>
446
+                        <option value="5" <?php if($month_end == 5) {
447
+    echo 'selected="selected"';
448
+}
449
+?> >05</option>
450
+                        <option value="6" <?php if($month_end == 6) {
451
+    echo 'selected="selected"';
452
+}
453
+?> >06</option>
454
+                        <option value="7" <?php if($month_end == 7) {
455
+    echo 'selected="selected"';
456
+}
457
+?> >07</option>
458
+                        <option value="8" <?php if($month_end == 8) {
459
+    echo 'selected="selected"';
460
+}
461
+?> >08</option>
462
+                        <option value="9" <?php if($month_end == 9) {
463
+    echo 'selected="selected"';
464
+}
465
+?> >09</option>
466
+                        <option value="10" <?php if($month_end == 10) {
467
+    echo 'selected="selected"';
468
+}
469
+?> >10</option>
470
+                        <option value="11" <?php if($month_end == 11) {
471
+    echo 'selected="selected"';
472
+}
473
+?> >11</option>
474
+                        <option value="12" <?php if($month_end == 12) {
475
+    echo 'selected="selected"';
476
+}
477
+?> >12</option>
213 478
                   </select>
214 479
                   /
215 480
                   <select name="year_end">
@@ -217,7 +482,10 @@  discard block
 block discarded – undo
217 482
                         <?php
218 483
                         for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
219 484
                         { ?>
220
-                         <option value="<?php echo $i; ?>" <?php if($year_end == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
485
+                         <option value="<?php echo $i; ?>" <?php if($year_end == $i) {
486
+    echo 'selected="selected"';
487
+}
488
+?> ><?php echo $i; ?></option>
221 489
                         <?php
222 490
                         } ?>
223 491
                  </select>
@@ -238,7 +506,10 @@  discard block
 block discarded – undo
238 506
 
239 507
 
240 508
 <script>
241
-<?php if($year_start=="0000") echo "setDisable(document.form.nolimit);\r\n"; ?>
509
+<?php if($year_start=="0000") {
510
+    echo "setDisable(document.form.nolimit);\r\n";
511
+}
512
+?>
242 513
 function setDisable(select){
243 514
 	document.form.day_start.disabled = (select.checked) ? true : false;
244 515
 	document.form.month_start.disabled = (select.checked) ? true : false;
Please login to merge, or discard this patch.
main/session/about.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,8 +132,8 @@
 block discarded – undo
132 132
 
133 133
 /* View */
134 134
 $template = new Template($session->getName(), true, true, false, true, false);
135
-$template->assign('show_tutor', (api_get_setting('show_session_coach')==='true' ? true : false));
136
-$template->assign('pageUrl', api_get_path(WEB_PATH) . "session/{$session->getId()}/about/");
135
+$template->assign('show_tutor', (api_get_setting('show_session_coach') === 'true' ? true : false));
136
+$template->assign('pageUrl', api_get_path(WEB_PATH)."session/{$session->getId()}/about/");
137 137
 $template->assign('session', $session);
138 138
 $template->assign('session_date', $sessionDates);
139 139
 $template->assign(
Please login to merge, or discard this patch.
main/session/session_import.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 $tool_name = get_lang('ImportSessionListXMLCSV');
25 25
 
26 26
 //$interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
27
-$interbreadcrumb[] = array('url' => 'session_list.php','name' => get_lang('SessionList'));
27
+$interbreadcrumb[] = array('url' => 'session_list.php', 'name' => get_lang('SessionList'));
28 28
 
29 29
 set_time_limit(0);
30 30
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         $form_sent = $_POST['formSent'];
41 41
         $file_type = isset($_POST['file_type']) ? $_POST['file_type'] : null;
42 42
         $send_mail = isset($_POST['sendMail']) && $_POST['sendMail'] ? 1 : 0;
43
-        $isOverwrite = isset($_POST['overwrite']) && $_POST['overwrite'] ? true: false;
43
+        $isOverwrite = isset($_POST['overwrite']) && $_POST['overwrite'] ? true : false;
44 44
         $deleteUsersNotInList = isset($_POST['delete_users_not_in_list']) ? true : false;
45 45
         $sessions = array();
46 46
         $session_counter = 0;
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
                                 $sql = "INSERT IGNORE INTO $tbl_session_user SET
319 319
                                         user_id ='$user_id',
320 320
                                         session_id = '$session_id',
321
-                                        registered_at = '" . api_get_utc_datetime() . "'";
321
+                                        registered_at = '".api_get_utc_datetime()."'";
322 322
                                 $rs_user = Database::query($sql);
323 323
                                 $user_counter++;
324 324
                             }
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
                                         $sql = "INSERT IGNORE INTO $tbl_session_user SET
372 372
                                                 user_id ='$user_id',
373 373
                                                 session_id = '$session_id',
374
-                                                registered_at = '" . api_get_utc_datetime() . "'";
374
+                                                registered_at = '".api_get_utc_datetime()."'";
375 375
                                         $rs_user = Database::query($sql);
376 376
                                         $user_counter++;
377 377
                                         // Adding to session_rel_user_rel_course table.
@@ -468,7 +468,7 @@  discard block
 block discarded – undo
468 468
 
469 469
 echo '<div class="actions">';
470 470
 echo '<a href="../session/session_list.php">'.
471
-    Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'),'',ICON_SIZE_MEDIUM).'</a>';
471
+    Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'), '', ICON_SIZE_MEDIUM).'</a>';
472 472
 echo '</div>';
473 473
 
474 474
 if (!empty($error_message)) {
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
         get_lang('FileType'),
486 486
         Display::url(
487 487
             get_lang('ExampleCSVFile'),
488
-            api_get_path(WEB_CODE_PATH) . 'admin/example_session.csv',
488
+            api_get_path(WEB_CODE_PATH).'admin/example_session.csv',
489 489
             ['target' => '_blank']
490 490
         )
491 491
     ],
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
         null,
500 500
         Display::url(
501 501
             get_lang('ExampleXMLFile'),
502
-            api_get_path(WEB_CODE_PATH) . 'admin/example_session.xml',
502
+            api_get_path(WEB_CODE_PATH).'admin/example_session.xml',
503 503
             ['target' => '_blank']
504 504
         )
505 505
     ],
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
 $form->addElement('checkbox', 'sendMail', null, get_lang('SendMailToUsers'));
515 515
 $form->addButtonImport(get_lang('ImportSession'));
516 516
 
517
-$defaults = array('sendMail' => 'true','file_type' => 'csv');
517
+$defaults = array('sendMail' => 'true', 'file_type' => 'csv');
518 518
 $form->setDefaults($defaults);
519 519
 
520 520
 Display::display_normal_message(get_lang('TheXMLImportLetYouAddMoreInfoAndCreateResources'));
Please login to merge, or discard this patch.
main/session/session_course_edit.php 3 patches
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@  discard block
 block discarded – undo
37 37
 $result = Database::query($sql);
38 38
 
39 39
 if (!list($session_name,$course_title) = Database::fetch_row($result)) {
40
-	header('Location: session_course_list.php?id_session='.$id_session);
41
-	exit();
40
+    header('Location: session_course_list.php?id_session='.$id_session);
41
+    exit();
42 42
 }
43 43
 
44 44
 //$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
@@ -48,63 +48,63 @@  discard block
 block discarded – undo
48 48
 
49 49
 $arr_infos = array();
50 50
 if (isset($_POST['formSent']) && $_POST['formSent']) {
51
-	$formSent = 1;
51
+    $formSent = 1;
52 52
 
53
-	// get all tutor by course_code in the session
54
-	$sql = "SELECT user_id
53
+    // get all tutor by course_code in the session
54
+    $sql = "SELECT user_id
55 55
 	        FROM $tbl_session_rel_course_rel_user
56 56
 	        WHERE session_id = '$id_session' AND c_id = '".$courseId."' AND status = 2";
57
-	$rs_coaches = Database::query($sql);
57
+    $rs_coaches = Database::query($sql);
58 58
 
59
-	$coaches_course_session = array();
60
-	if (Database::num_rows($rs_coaches) > 0){
61
-		while ($row_coaches = Database::fetch_row($rs_coaches)) {
62
-			$coaches_course_session[] = $row_coaches[0];
63
-		}
64
-	}
59
+    $coaches_course_session = array();
60
+    if (Database::num_rows($rs_coaches) > 0){
61
+        while ($row_coaches = Database::fetch_row($rs_coaches)) {
62
+            $coaches_course_session[] = $row_coaches[0];
63
+        }
64
+    }
65 65
 
66
-	$id_coaches= $_POST['id_coach'];
66
+    $id_coaches= $_POST['id_coach'];
67 67
 
68
-	if (is_array($id_coaches) && count($id_coaches) > 0) {
68
+    if (is_array($id_coaches) && count($id_coaches) > 0) {
69 69
 
70
-		foreach ($id_coaches as $id_coach) {
71
-			$id_coach = intval($id_coach);
70
+        foreach ($id_coaches as $id_coach) {
71
+            $id_coach = intval($id_coach);
72 72
             $rs1 = SessionManager::set_coach_to_course_session(
73 73
                 $id_coach,
74 74
                 $id_session,
75 75
                 $courseId
76 76
             );
77
-		}
77
+        }
78 78
 
79
-		// set status to 0 other tutors from multiple list
80
-		$array_intersect = array_diff($coaches_course_session,$id_coaches);
79
+        // set status to 0 other tutors from multiple list
80
+        $array_intersect = array_diff($coaches_course_session,$id_coaches);
81 81
 
82
-		foreach ($array_intersect as $no_coach_user_id) {
83
-			$rs2 = SessionManager::set_coach_to_course_session(
84
-				$no_coach_user_id,
85
-				$id_session,
82
+        foreach ($array_intersect as $no_coach_user_id) {
83
+            $rs2 = SessionManager::set_coach_to_course_session(
84
+                $no_coach_user_id,
85
+                $id_session,
86 86
                 $courseId,
87
-				true
88
-			);
89
-		}
87
+                true
88
+            );
89
+        }
90 90
 
91
-		header('Location: '.Security::remove_XSS($_GET['page']).'?id_session='.$id_session);
92
-		exit();
93
-	}
91
+        header('Location: '.Security::remove_XSS($_GET['page']).'?id_session='.$id_session);
92
+        exit();
93
+    }
94 94
 } else {
95
-	$sql = "SELECT user_id
95
+    $sql = "SELECT user_id
96 96
 	        FROM $tbl_session_rel_course_rel_user
97 97
 	        WHERE
98 98
                 session_id = '$id_session' AND
99 99
                 c_id = '".$courseId."' AND
100 100
                 status = 2 ";
101
-	$rs = Database::query($sql);
101
+    $rs = Database::query($sql);
102 102
 
103
-	if (Database::num_rows($rs) > 0) {
104
-		while ($infos = Database::fetch_array($rs)) {
105
-			$arr_infos[] = $infos['user_id'];
106
-		}
107
-	}
103
+    if (Database::num_rows($rs) > 0) {
104
+        while ($infos = Database::fetch_array($rs)) {
105
+            $arr_infos[] = $infos['user_id'];
106
+        }
107
+    }
108 108
 }
109 109
 
110 110
 $order_clause = api_sort_by_first_name() ? ' ORDER BY firstname, lastname, username' : ' ORDER BY lastname, firstname, username';
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -36,15 +36,15 @@  discard block
 block discarded – undo
36 36
             sc.c_id ='".$courseId."'";
37 37
 $result = Database::query($sql);
38 38
 
39
-if (!list($session_name,$course_title) = Database::fetch_row($result)) {
39
+if (!list($session_name, $course_title) = Database::fetch_row($result)) {
40 40
 	header('Location: session_course_list.php?id_session='.$id_session);
41 41
 	exit();
42 42
 }
43 43
 
44 44
 //$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
45
-$interbreadcrumb[]=array('url' => "session_list.php","name" => get_lang("SessionList"));
46
-$interbreadcrumb[]=array('url' => "resume_session.php?id_session=".$id_session,"name" => get_lang('SessionOverview'));
47
-$interbreadcrumb[]=array('url' => "session_course_list.php?id_session=$id_session","name" =>api_htmlentities($session_name, ENT_QUOTES, $charset));
45
+$interbreadcrumb[] = array('url' => "session_list.php", "name" => get_lang("SessionList"));
46
+$interbreadcrumb[] = array('url' => "resume_session.php?id_session=".$id_session, "name" => get_lang('SessionOverview'));
47
+$interbreadcrumb[] = array('url' => "session_course_list.php?id_session=$id_session", "name" =>api_htmlentities($session_name, ENT_QUOTES, $charset));
48 48
 
49 49
 $arr_infos = array();
50 50
 if (isset($_POST['formSent']) && $_POST['formSent']) {
@@ -57,13 +57,13 @@  discard block
 block discarded – undo
57 57
 	$rs_coaches = Database::query($sql);
58 58
 
59 59
 	$coaches_course_session = array();
60
-	if (Database::num_rows($rs_coaches) > 0){
60
+	if (Database::num_rows($rs_coaches) > 0) {
61 61
 		while ($row_coaches = Database::fetch_row($rs_coaches)) {
62 62
 			$coaches_course_session[] = $row_coaches[0];
63 63
 		}
64 64
 	}
65 65
 
66
-	$id_coaches= $_POST['id_coach'];
66
+	$id_coaches = $_POST['id_coach'];
67 67
 
68 68
 	if (is_array($id_coaches) && count($id_coaches) > 0) {
69 69
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 		}
78 78
 
79 79
 		// set status to 0 other tutors from multiple list
80
-		$array_intersect = array_diff($coaches_course_session,$id_coaches);
80
+		$array_intersect = array_diff($coaches_course_session, $id_coaches);
81 81
 
82 82
 		foreach ($array_intersect as $no_coach_user_id) {
83 83
 			$rs2 = SessionManager::set_coach_to_course_session(
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 $order_clause = api_sort_by_first_name() ? ' ORDER BY firstname, lastname, username' : ' ORDER BY lastname, firstname, username';
111 111
 
112 112
 if (api_is_multiple_url_enabled()) {
113
-    $tbl_access_rel_user= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
113
+    $tbl_access_rel_user = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_USER);
114 114
     $access_url_id = api_get_current_access_url_id();
115 115
     $sql = "SELECT u.user_id,lastname,firstname,username
116 116
             FROM $tbl_user u
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     <div class="col-md-12">
153 153
         <div class="title"></div>
154 154
         <?php
155
-            if(!empty($errorMsg)) {
155
+            if (!empty($errorMsg)) {
156 156
                 Display::display_normal_message($errorMsg);
157 157
             }
158 158
         ?>
@@ -166,13 +166,13 @@  discard block
 block discarded – undo
166 166
 
167 167
         <select name="id_coach[]" class="form-control" multiple>
168 168
             <option value="0">----- <?php echo get_lang("Choose") ?> -----</option>
169
-            <option value="0" <?php if(count($arr_infos) == 0) echo 'selected="selected"'; ?>>
169
+            <option value="0" <?php if (count($arr_infos) == 0) echo 'selected="selected"'; ?>>
170 170
                 <?php echo get_lang('None') ?>
171 171
             </option>
172 172
             <?php
173 173
             foreach ($coaches as $enreg) {
174 174
                 ?>
175
-                <option value="<?php echo $enreg['user_id']; ?>" <?php if(((is_array($arr_infos) && in_array($enreg['user_id'], $arr_infos)))) echo 'selected="selected"'; ?>>
175
+                <option value="<?php echo $enreg['user_id']; ?>" <?php if (((is_array($arr_infos) && in_array($enreg['user_id'], $arr_infos)))) echo 'selected="selected"'; ?>>
176 176
                     <?php echo api_get_person_name($enreg['firstname'], $enreg['lastname']).' ('.$enreg['username'].')'; ?>
177 177
                 </option>
178 178
             <?php
Please login to merge, or discard this patch.
Braces   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,13 +166,19 @@
 block discarded – undo
166 166
 
167 167
         <select name="id_coach[]" class="form-control" multiple>
168 168
             <option value="0">----- <?php echo get_lang("Choose") ?> -----</option>
169
-            <option value="0" <?php if(count($arr_infos) == 0) echo 'selected="selected"'; ?>>
169
+            <option value="0" <?php if(count($arr_infos) == 0) {
170
+    echo 'selected="selected"';
171
+}
172
+?>>
170 173
                 <?php echo get_lang('None') ?>
171 174
             </option>
172 175
             <?php
173 176
             foreach ($coaches as $enreg) {
174 177
                 ?>
175
-                <option value="<?php echo $enreg['user_id']; ?>" <?php if(((is_array($arr_infos) && in_array($enreg['user_id'], $arr_infos)))) echo 'selected="selected"'; ?>>
178
+                <option value="<?php echo $enreg['user_id']; ?>" <?php if(((is_array($arr_infos) && in_array($enreg['user_id'], $arr_infos)))) {
179
+    echo 'selected="selected"';
180
+}
181
+?>>
176 182
                     <?php echo api_get_person_name($enreg['firstname'], $enreg['lastname']).' ('.$enreg['username'].')'; ?>
177 183
                 </option>
178 184
             <?php
Please login to merge, or discard this patch.