Completed
Push — 1.11.x ( d00fca...f1f062 )
by José
28:05
created
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_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_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   +96 added lines, -96 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,24 +73,24 @@  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>
@@ -100,58 +100,58 @@  discard block
 block discarded – undo
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   +354 added lines, -88 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>
@@ -100,58 +105,184 @@  discard block
 block discarded – undo
100 105
                 <div class="col-sm-6">
101 106
                     <select name="day_start">
102 107
                         <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>
108
+                        <option value="2" <?php if($day_start == 2) {
109
+    echo 'selected="selected"';
110
+}
111
+?> >02</option>
112
+                        <option value="3" <?php if($day_start == 3) {
113
+    echo 'selected="selected"';
114
+}
115
+?> >03</option>
116
+                        <option value="4" <?php if($day_start == 4) {
117
+    echo 'selected="selected"';
118
+}
119
+?> >04</option>
120
+                        <option value="5" <?php if($day_start == 5) {
121
+    echo 'selected="selected"';
122
+}
123
+?> >05</option>
124
+                        <option value="6" <?php if($day_start == 6) {
125
+    echo 'selected="selected"';
126
+}
127
+?> >06</option>
128
+                        <option value="7" <?php if($day_start == 7) {
129
+    echo 'selected="selected"';
130
+}
131
+?> >07</option>
132
+                        <option value="8" <?php if($day_start == 8) {
133
+    echo 'selected="selected"';
134
+}
135
+?> >08</option>
136
+                        <option value="9" <?php if($day_start == 9) {
137
+    echo 'selected="selected"';
138
+}
139
+?> >09</option>
140
+                        <option value="10" <?php if($day_start == 10) {
141
+    echo 'selected="selected"';
142
+}
143
+?> >10</option>
144
+                        <option value="11" <?php if($day_start == 11) {
145
+    echo 'selected="selected"';
146
+}
147
+?> >11</option>
148
+                        <option value="12" <?php if($day_start == 12) {
149
+    echo 'selected="selected"';
150
+}
151
+?> >12</option>
152
+                        <option value="13" <?php if($day_start == 13) {
153
+    echo 'selected="selected"';
154
+}
155
+?> >13</option>
156
+                        <option value="14" <?php if($day_start == 14) {
157
+    echo 'selected="selected"';
158
+}
159
+?> >14</option>
160
+                        <option value="15" <?php if($day_start == 15) {
161
+    echo 'selected="selected"';
162
+}
163
+?> >15</option>
164
+                        <option value="16" <?php if($day_start == 16) {
165
+    echo 'selected="selected"';
166
+}
167
+?> >16</option>
168
+                        <option value="17" <?php if($day_start == 17) {
169
+    echo 'selected="selected"';
170
+}
171
+?> >17</option>
172
+                        <option value="18" <?php if($day_start == 18) {
173
+    echo 'selected="selected"';
174
+}
175
+?> >18</option>
176
+                        <option value="19" <?php if($day_start == 19) {
177
+    echo 'selected="selected"';
178
+}
179
+?> >19</option>
180
+                        <option value="20" <?php if($day_start == 20) {
181
+    echo 'selected="selected"';
182
+}
183
+?> >20</option>
184
+                        <option value="21" <?php if($day_start == 21) {
185
+    echo 'selected="selected"';
186
+}
187
+?> >21</option>
188
+                        <option value="22" <?php if($day_start == 22) {
189
+    echo 'selected="selected"';
190
+}
191
+?> >22</option>
192
+                        <option value="23" <?php if($day_start == 23) {
193
+    echo 'selected="selected"';
194
+}
195
+?> >23</option>
196
+                        <option value="24" <?php if($day_start == 24) {
197
+    echo 'selected="selected"';
198
+}
199
+?> >24</option>
200
+                        <option value="25" <?php if($day_start == 25) {
201
+    echo 'selected="selected"';
202
+}
203
+?> >25</option>
204
+                        <option value="26" <?php if($day_start == 26) {
205
+    echo 'selected="selected"';
206
+}
207
+?> >26</option>
208
+                        <option value="27" <?php if($day_start == 27) {
209
+    echo 'selected="selected"';
210
+}
211
+?> >27</option>
212
+                        <option value="28" <?php if($day_start == 28) {
213
+    echo 'selected="selected"';
214
+}
215
+?> >28</option>
216
+                        <option value="29" <?php if($day_start == 29) {
217
+    echo 'selected="selected"';
218
+}
219
+?> >29</option>
220
+                        <option value="30" <?php if($day_start == 30) {
221
+    echo 'selected="selected"';
222
+}
223
+?> >30</option>
224
+                        <option value="31" <?php if($day_start == 31) {
225
+    echo 'selected="selected"';
226
+}
227
+?> >31</option>
133 228
                   </select>
134 229
                   /
135 230
                   <select name="month_start">
136 231
                         <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>
232
+                        <option value="2" <?php if($month_start == 2) {
233
+    echo 'selected="selected"';
234
+}
235
+?> >02</option>
236
+                        <option value="3" <?php if($month_start == 3) {
237
+    echo 'selected="selected"';
238
+}
239
+?> >03</option>
240
+                        <option value="4" <?php if($month_start == 4) {
241
+    echo 'selected="selected"';
242
+}
243
+?> >04</option>
244
+                        <option value="5" <?php if($month_start == 5) {
245
+    echo 'selected="selected"';
246
+}
247
+?> >05</option>
248
+                        <option value="6" <?php if($month_start == 6) {
249
+    echo 'selected="selected"';
250
+}
251
+?> >06</option>
252
+                        <option value="7" <?php if($month_start == 7) {
253
+    echo 'selected="selected"';
254
+}
255
+?> >07</option>
256
+                        <option value="8" <?php if($month_start == 8) {
257
+    echo 'selected="selected"';
258
+}
259
+?> >08</option>
260
+                        <option value="9" <?php if($month_start == 9) {
261
+    echo 'selected="selected"';
262
+}
263
+?> >09</option>
264
+                        <option value="10" <?php if($month_start == 10) {
265
+    echo 'selected="selected"';
266
+}
267
+?> >10</option>
268
+                        <option value="11" <?php if($month_start == 11) {
269
+    echo 'selected="selected"';
270
+}
271
+?> >11</option>
272
+                        <option value="12" <?php if($month_start == 12) {
273
+    echo 'selected="selected"';
274
+}
275
+?> >12</option>
148 276
                   </select>
149 277
                   /
150 278
                 <select name="year_start">
151 279
                         <?php
152 280
                         for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
153 281
                         { ?>
154
-                                <option value="<?php echo $i; ?>" <?php if($year_start == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
282
+                                <option value="<?php echo $i; ?>" <?php if($year_start == $i) {
283
+    echo 'selected="selected"';
284
+}
285
+?> ><?php echo $i; ?></option>
155 286
                         <?php
156 287
                         } ?>
157 288
                 </select>
@@ -163,53 +294,182 @@  discard block
 block discarded – undo
163 294
                 <div class="col-sm-6">
164 295
                     <select name="day_end">
165 296
                         <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>
297
+                        <option value="1" <?php if($day_end == 1) {
298
+    echo 'selected="selected"';
299
+}
300
+?> >01</option>
301
+                        <option value="2" <?php if($day_end == 2) {
302
+    echo 'selected="selected"';
303
+}
304
+?> >02</option>
305
+                        <option value="3" <?php if($day_end == 3) {
306
+    echo 'selected="selected"';
307
+}
308
+?> >03</option>
309
+                        <option value="4" <?php if($day_end == 4) {
310
+    echo 'selected="selected"';
311
+}
312
+?> >04</option>
313
+                        <option value="5" <?php if($day_end == 5) {
314
+    echo 'selected="selected"';
315
+}
316
+?> >05</option>
317
+                        <option value="6" <?php if($day_end == 6) {
318
+    echo 'selected="selected"';
319
+}
320
+?> >06</option>
321
+                        <option value="7" <?php if($day_end == 7) {
322
+    echo 'selected="selected"';
323
+}
324
+?> >07</option>
325
+                        <option value="8" <?php if($day_end == 8) {
326
+    echo 'selected="selected"';
327
+}
328
+?> >08</option>
329
+                        <option value="9" <?php if($day_end == 9) {
330
+    echo 'selected="selected"';
331
+}
332
+?> >09</option>
333
+                        <option value="10" <?php if($day_end == 10) {
334
+    echo 'selected="selected"';
335
+}
336
+?> >10</option>
337
+                        <option value="11" <?php if($day_end == 11) {
338
+    echo 'selected="selected"';
339
+}
340
+?> >11</option>
341
+                        <option value="12" <?php if($day_end == 12) {
342
+    echo 'selected="selected"';
343
+}
344
+?> >12</option>
345
+                        <option value="13" <?php if($day_end == 13) {
346
+    echo 'selected="selected"';
347
+}
348
+?> >13</option>
349
+                        <option value="14" <?php if($day_end == 14) {
350
+    echo 'selected="selected"';
351
+}
352
+?> >14</option>
353
+                        <option value="15" <?php if($day_end == 15) {
354
+    echo 'selected="selected"';
355
+}
356
+?> >15</option>
357
+                        <option value="16" <?php if($day_end == 16) {
358
+    echo 'selected="selected"';
359
+}
360
+?> >16</option>
361
+                        <option value="17" <?php if($day_end == 17) {
362
+    echo 'selected="selected"';
363
+}
364
+?> >17</option>
365
+                        <option value="18" <?php if($day_end == 18) {
366
+    echo 'selected="selected"';
367
+}
368
+?> >18</option>
369
+                        <option value="19" <?php if($day_end == 19) {
370
+    echo 'selected="selected"';
371
+}
372
+?> >19</option>
373
+                        <option value="20" <?php if($day_end == 20) {
374
+    echo 'selected="selected"';
375
+}
376
+?> >20</option>
377
+                        <option value="21" <?php if($day_end == 21) {
378
+    echo 'selected="selected"';
379
+}
380
+?> >21</option>
381
+                        <option value="22" <?php if($day_end == 22) {
382
+    echo 'selected="selected"';
383
+}
384
+?> >22</option>
385
+                        <option value="23" <?php if($day_end == 23) {
386
+    echo 'selected="selected"';
387
+}
388
+?> >23</option>
389
+                        <option value="24" <?php if($day_end == 24) {
390
+    echo 'selected="selected"';
391
+}
392
+?> >24</option>
393
+                        <option value="25" <?php if($day_end == 25) {
394
+    echo 'selected="selected"';
395
+}
396
+?> >25</option>
397
+                        <option value="26" <?php if($day_end == 26) {
398
+    echo 'selected="selected"';
399
+}
400
+?> >26</option>
401
+                        <option value="27" <?php if($day_end == 27) {
402
+    echo 'selected="selected"';
403
+}
404
+?> >27</option>
405
+                        <option value="28" <?php if($day_end == 28) {
406
+    echo 'selected="selected"';
407
+}
408
+?> >28</option>
409
+                        <option value="29" <?php if($day_end == 29) {
410
+    echo 'selected="selected"';
411
+}
412
+?> >29</option>
413
+                        <option value="30" <?php if($day_end == 30) {
414
+    echo 'selected="selected"';
415
+}
416
+?> >30</option>
417
+                        <option value="31" <?php if($day_end == 31) {
418
+    echo 'selected="selected"';
419
+}
420
+?> >31</option>
197 421
                   </select>
198 422
                   /
199 423
                   <select name="month_end">
200 424
                         <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>
425
+                        <option value="1" <?php if($month_end == 1) {
426
+    echo 'selected="selected"';
427
+}
428
+?> >01</option>
429
+                        <option value="2" <?php if($month_end == 2) {
430
+    echo 'selected="selected"';
431
+}
432
+?> >02</option>
433
+                        <option value="3" <?php if($month_end == 3) {
434
+    echo 'selected="selected"';
435
+}
436
+?> >03</option>
437
+                        <option value="4" <?php if($month_end == 4) {
438
+    echo 'selected="selected"';
439
+}
440
+?> >04</option>
441
+                        <option value="5" <?php if($month_end == 5) {
442
+    echo 'selected="selected"';
443
+}
444
+?> >05</option>
445
+                        <option value="6" <?php if($month_end == 6) {
446
+    echo 'selected="selected"';
447
+}
448
+?> >06</option>
449
+                        <option value="7" <?php if($month_end == 7) {
450
+    echo 'selected="selected"';
451
+}
452
+?> >07</option>
453
+                        <option value="8" <?php if($month_end == 8) {
454
+    echo 'selected="selected"';
455
+}
456
+?> >08</option>
457
+                        <option value="9" <?php if($month_end == 9) {
458
+    echo 'selected="selected"';
459
+}
460
+?> >09</option>
461
+                        <option value="10" <?php if($month_end == 10) {
462
+    echo 'selected="selected"';
463
+}
464
+?> >10</option>
465
+                        <option value="11" <?php if($month_end == 11) {
466
+    echo 'selected="selected"';
467
+}
468
+?> >11</option>
469
+                        <option value="12" <?php if($month_end == 12) {
470
+    echo 'selected="selected"';
471
+}
472
+?> >12</option>
213 473
                   </select>
214 474
                   /
215 475
                   <select name="year_end">
@@ -217,7 +477,10 @@  discard block
 block discarded – undo
217 477
                         <?php
218 478
                         for($i=$thisYear-5;$i <= ($thisYear+5);$i++)
219 479
                         { ?>
220
-                         <option value="<?php echo $i; ?>" <?php if($year_end == $i) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
480
+                         <option value="<?php echo $i; ?>" <?php if($year_end == $i) {
481
+    echo 'selected="selected"';
482
+}
483
+?> ><?php echo $i; ?></option>
221 484
                         <?php
222 485
                         } ?>
223 486
                  </select>
@@ -238,7 +501,10 @@  discard block
 block discarded – undo
238 501
 
239 502
 
240 503
 <script>
241
-<?php if($year_start=="0000") echo "setDisable(document.form.nolimit);\r\n"; ?>
504
+<?php if($year_start=="0000") {
505
+    echo "setDisable(document.form.nolimit);\r\n";
506
+}
507
+?>
242 508
 function setDisable(select){
243 509
 	document.form.day_start.disabled = (select.checked) ? true : false;
244 510
 	document.form.month_start.disabled = (select.checked) ? true : false;
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.
main/session/add_many_session_to_category.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -197,12 +197,12 @@
 block discarded – undo
197 197
         if (!empty($rows_session_category)) {
198 198
             foreach($rows_session_category as $category) {
199 199
                 if($category['id'] == $categoryId)
200
-                      echo '<option value="'.$category['id'].'" selected>'.$category['name'].'</option>';
201
-                  else
202
-                      echo '<option value="'.$category['id'].'">'.$category['name'].'</option>';
200
+                        echo '<option value="'.$category['id'].'" selected>'.$category['name'].'</option>';
201
+                    else
202
+                        echo '<option value="'.$category['id'].'">'.$category['name'].'</option>';
203 203
             }
204 204
         }
205
-          ?>
205
+            ?>
206 206
       </select>
207 207
     </td>
208 208
 </tr>
Please login to merge, or discard this patch.
Braces   +13 added lines, -6 removed lines patch added patch discarded remove patch
@@ -196,10 +196,11 @@  discard block
 block discarded – undo
196 196
         <?php
197 197
         if (!empty($rows_session_category)) {
198 198
             foreach($rows_session_category as $category) {
199
-                if($category['id'] == $categoryId)
200
-                      echo '<option value="'.$category['id'].'" selected>'.$category['name'].'</option>';
201
-                  else
202
-                      echo '<option value="'.$category['id'].'">'.$category['name'].'</option>';
199
+                if($category['id'] == $categoryId) {
200
+                                      echo '<option value="'.$category['id'].'" selected>'.$category['name'].'</option>';
201
+                } else {
202
+                                        echo '<option value="'.$category['id'].'">'.$category['name'].'</option>';
203
+                  }
203 204
             }
204 205
         }
205 206
           ?>
@@ -223,7 +224,10 @@  discard block
 block discarded – undo
223 224
     <?php
224 225
     foreach($rows_session as $enreg) {
225 226
     ?>
226
-        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'],ENT_QUOTES).'"'; if(in_array($enreg['id'],$CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
227
+        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'],ENT_QUOTES).'"'; if(in_array($enreg['id'],$CourseList)) {
228
+    echo 'selected="selected"';
229
+}
230
+?>><?php echo $enreg['name']; ?></option>
227 231
     <?php } ?>
228 232
     </select></div>
229 233
 <?php unset($nosessionCourses); ?>
@@ -245,7 +249,10 @@  discard block
 block discarded – undo
245 249
   <select id='destination' name="SessionCategoryList[]" multiple="multiple" size="20" style="width:320px;">
246 250
     <?php
247 251
     foreach($rows_category_session as $enreg) { ?>
248
-        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'],ENT_QUOTES).'"'; if(in_array($enreg['id'],$CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
252
+        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'],ENT_QUOTES).'"'; if(in_array($enreg['id'],$CourseList)) {
253
+    echo 'selected="selected"';
254
+}
255
+?>><?php echo $enreg['name']; ?></option>
249 256
     <?php } ?>
250 257
   </select></td>
251 258
 </tr>
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 $this_section = SECTION_PLATFORM_ADMIN;
17 17
 
18 18
 // setting breadcrumbs
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
 // Database Table Definitions
22 22
 $tbl_session_rel_course_rel_user = Database::get_main_table(TABLE_MAIN_SESSION_COURSE_USER);
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 }
39 39
 
40 40
 if (!api_is_platform_admin() && !api_is_session_admin()) {
41
-    $sql = 'SELECT session_admin_id FROM ' . Database:: get_main_table(TABLE_MAIN_SESSION) . ' WHERE id=' . $id_session;
41
+    $sql = 'SELECT session_admin_id FROM '.Database:: get_main_table(TABLE_MAIN_SESSION).' WHERE id='.$id_session;
42 42
     $rs = Database::query($sql);
43 43
     if (Database::result($rs, 0, 0) != $_user['user_id']) {
44 44
         api_not_allowed(true);
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
         $sql = "UPDATE $tbl_session SET session_category_id = $categoryId WHERE id in ($session_id) ";
102 102
         Database::query($sql);
103
-        header('Location: add_many_session_to_category.php?id_category=' . $categoryId . '&msg=ok');
103
+        header('Location: add_many_session_to_category.php?id_category='.$categoryId.'&msg=ok');
104 104
         exit;
105 105
     } else {
106 106
         header('Location: add_many_session_to_category.php?msg=error');
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 $rows_category_session = array();
129 129
 if ((isset($_POST['CategorySessionId']) && $_POST['formSent'] == 0) || isset($_GET['id_category'])) {
130 130
 
131
-    $where = 'WHERE session_category_id != ' . $categoryId .' OR session_category_id IS NULL';
132
-    $sql = 'SELECT id, name  FROM ' . $tbl_session . ' WHERE session_category_id =' . $categoryId . ' ORDER BY name';
131
+    $where = 'WHERE session_category_id != '.$categoryId.' OR session_category_id IS NULL';
132
+    $sql = 'SELECT id, name  FROM '.$tbl_session.' WHERE session_category_id ='.$categoryId.' ORDER BY name';
133 133
     $result = Database::query($sql);
134 134
     $rows_category_session = Database::store_result($result);
135 135
 }
@@ -142,13 +142,13 @@  discard block
 block discarded – undo
142 142
 }
143 143
 
144 144
 if (api_get_multiple_access_url()) {
145
-    $table_access_url_rel_session= Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_SESSION);
145
+    $table_access_url_rel_session = Database::get_main_table(TABLE_MAIN_ACCESS_URL_REL_SESSION);
146 146
     $access_url_id = api_get_current_access_url_id();
147 147
     $sql = "SELECT s.id, s.name  FROM $tbl_session s INNER JOIN $table_access_url_rel_session u ON s.id = u.session_id $where AND u.access_url_id = $access_url_id ORDER BY name";
148 148
 } else {
149 149
     $sql = "SELECT id, name  FROM $tbl_session $where ORDER BY name";
150 150
 }
151
-$result=Database::query($sql);
151
+$result = Database::query($sql);
152 152
 $rows_session = Database::store_result($result);
153 153
 ?>
154 154
 <form name="formulaire" method="post"
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 if (!empty($_GET['add'])) {
157 157
     echo '&add=true';
158 158
 } ?>" style="margin:0px;">
159
-<?php echo '<legend>' . $tool_name . '</legend>'; ?>
159
+<?php echo '<legend>'.$tool_name.'</legend>'; ?>
160 160
 <input type="hidden" name="formSent" value="1"/>
161 161
 <?php
162 162
 if (!empty($errorMsg)) {
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
         <option value="0" ></option>
195 195
         <?php
196 196
         if (!empty($rows_session_category)) {
197
-            foreach($rows_session_category as $category) {
198
-                if($category['id'] == $categoryId)
197
+            foreach ($rows_session_category as $category) {
198
+                if ($category['id'] == $categoryId)
199 199
                       echo '<option value="'.$category['id'].'" selected>'.$category['name'].'</option>';
200 200
                   else
201 201
                       echo '<option value="'.$category['id'].'">'.$category['name'].'</option>';
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
   <td align="center" width="45%"><b><?php echo get_lang('SessionListInCategory') ?> :</b></td>
212 212
 </tr>
213 213
 
214
-<?php if($add_type == 'multiple') { ?>
214
+<?php if ($add_type == 'multiple') { ?>
215 215
 <tr>
216 216
 <td>&nbsp;</td></tr>
217 217
 <?php } ?>
@@ -220,9 +220,9 @@  discard block
 block discarded – undo
220 220
     <div id="ajax_list_courses_multiple">
221 221
     <select id="origin" name="NoSessionCategoryList[]" multiple="multiple" size="20" style="width:320px;">
222 222
     <?php
223
-    foreach($rows_session as $enreg) {
223
+    foreach ($rows_session as $enreg) {
224 224
     ?>
225
-        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'],ENT_QUOTES).'"'; if(in_array($enreg['id'],$CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
225
+        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'], ENT_QUOTES).'"'; if (in_array($enreg['id'], $CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
226 226
     <?php } ?>
227 227
     </select></div>
228 228
 <?php unset($nosessionCourses); ?>
@@ -243,8 +243,8 @@  discard block
 block discarded – undo
243 243
   <td width="45%" align="center">
244 244
   <select id='destination' name="SessionCategoryList[]" multiple="multiple" size="20" style="width:320px;">
245 245
     <?php
246
-    foreach($rows_category_session as $enreg) { ?>
247
-        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'],ENT_QUOTES).'"'; if(in_array($enreg['id'],$CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
246
+    foreach ($rows_category_session as $enreg) { ?>
247
+        <option value="<?php echo $enreg['id']; ?>" <?php echo 'title="'.htmlspecialchars($enreg['name'], ENT_QUOTES).'"'; if (in_array($enreg['id'], $CourseList)) echo 'selected="selected"'; ?>><?php echo $enreg['name']; ?></option>
248 248
     <?php } ?>
249 249
   </select></td>
250 250
 </tr>
Please login to merge, or discard this patch.
main/session/session_category_add.php 3 patches
Spacing   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -18,11 +18,11 @@  discard block
 block discarded – undo
18 18
 
19 19
 api_protect_admin_script(true);
20 20
 
21
-$formSent=0;
22
-$errorMsg='';
21
+$formSent = 0;
22
+$errorMsg = '';
23 23
 //$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
24
-$interbreadcrumb[] = array('url' => 'session_list.php','name' => get_lang('SessionList'));
25
-$interbreadcrumb[] = array('url' => "session_category_list.php","name" => get_lang('ListSessionCategory'));
24
+$interbreadcrumb[] = array('url' => 'session_list.php', 'name' => get_lang('SessionList'));
25
+$interbreadcrumb[] = array('url' => "session_category_list.php", "name" => get_lang('ListSessionCategory'));
26 26
 
27 27
 // Database Table Definitions
28 28
 $tbl_user = Database::get_main_table(TABLE_MAIN_USER);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 //display the header
62 62
 Display::display_header($tool_name);
63 63
 if (!empty($return)) {
64
-	Display::display_error_message($return,false);
64
+	Display::display_error_message($return, false);
65 65
 }
66 66
 ?>
67 67
 <div class="row">
@@ -72,13 +72,13 @@  discard block
 block discarded – undo
72 72
             <div class="form-group">
73 73
                 <label class="col-sm-3 control-label"><?php echo get_lang('SessionCategoryName') ?></label>
74 74
                 <div class="col-sm-6">
75
-                    <input type="text" class="form-control" name="name" placeholder="<?php echo get_lang('Category') ?>" size="50" maxlength="50" value="<?php if($formSent) echo api_htmlentities($name,ENT_QUOTES,$charset); ?>">
75
+                    <input type="text" class="form-control" name="name" placeholder="<?php echo get_lang('Category') ?>" size="50" maxlength="50" value="<?php if ($formSent) echo api_htmlentities($name, ENT_QUOTES, $charset); ?>">
76 76
                 </div>
77 77
                 <div class="col-md-3"></div>
78 78
             </div>
79 79
             <div class="form-group">
80 80
                 <div class="col-sm-offset-3 col-sm-6">
81
-                    <?php echo get_lang('TheTimeLimitsAreReferential');?> <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('AddTimeLimit') ?></a>
81
+                    <?php echo get_lang('TheTimeLimitsAreReferential'); ?> <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('AddTimeLimit') ?></a>
82 82
                 </div>
83 83
                 <div class="col-md-3"></div>
84 84
             </div>
@@ -90,58 +90,58 @@  discard block
 block discarded – undo
90 90
                 <div class="col-sm-6">
91 91
                     <select name="day_start">
92 92
                         <option value="1">01</option>
93
-                        <option value="2" <?php if((!$formSent && $thisDay == 2) || ($formSent && $day_start == 2)) echo 'selected="selected"'; ?> >02</option>
94
-                        <option value="3" <?php if((!$formSent && $thisDay == 3) || ($formSent && $day_start == 3)) echo 'selected="selected"'; ?> >03</option>
95
-                        <option value="4" <?php if((!$formSent && $thisDay == 4) || ($formSent && $day_start == 4)) echo 'selected="selected"'; ?> >04</option>
96
-                        <option value="5" <?php if((!$formSent && $thisDay == 5) || ($formSent && $day_start == 5)) echo 'selected="selected"'; ?> >05</option>
97
-                        <option value="6" <?php if((!$formSent && $thisDay == 6) || ($formSent && $day_start == 6)) echo 'selected="selected"'; ?> >06</option>
98
-                        <option value="7" <?php if((!$formSent && $thisDay == 7) || ($formSent && $day_start == 7)) echo 'selected="selected"'; ?> >07</option>
99
-                        <option value="8" <?php if((!$formSent && $thisDay == 8) || ($formSent && $day_start == 8)) echo 'selected="selected"'; ?> >08</option>
100
-                        <option value="9" <?php if((!$formSent && $thisDay == 9) || ($formSent && $day_start == 9)) echo 'selected="selected"'; ?> >09</option>
101
-                        <option value="10" <?php if((!$formSent && $thisDay == 10) || ($formSent && $day_start == 10)) echo 'selected="selected"'; ?> >10</option>
102
-                        <option value="11" <?php if((!$formSent && $thisDay == 11) || ($formSent && $day_start == 11)) echo 'selected="selected"'; ?> >11</option>
103
-                        <option value="12" <?php if((!$formSent && $thisDay == 12) || ($formSent && $day_start == 12)) echo 'selected="selected"'; ?> >12</option>
104
-                        <option value="13" <?php if((!$formSent && $thisDay == 13) || ($formSent && $day_start == 13)) echo 'selected="selected"'; ?> >13</option>
105
-                        <option value="14" <?php if((!$formSent && $thisDay == 14) || ($formSent && $day_start == 14)) echo 'selected="selected"'; ?> >14</option>
106
-                        <option value="15" <?php if((!$formSent && $thisDay == 15) || ($formSent && $day_start == 15)) echo 'selected="selected"'; ?> >15</option>
107
-                        <option value="16" <?php if((!$formSent && $thisDay == 16) || ($formSent && $day_start == 16)) echo 'selected="selected"'; ?> >16</option>
108
-                        <option value="17" <?php if((!$formSent && $thisDay == 17) || ($formSent && $day_start == 17)) echo 'selected="selected"'; ?> >17</option>
109
-                        <option value="18" <?php if((!$formSent && $thisDay == 18) || ($formSent && $day_start == 18)) echo 'selected="selected"'; ?> >18</option>
110
-                        <option value="19" <?php if((!$formSent && $thisDay == 19) || ($formSent && $day_start == 19)) echo 'selected="selected"'; ?> >19</option>
111
-                        <option value="20" <?php if((!$formSent && $thisDay == 20) || ($formSent && $day_start == 20)) echo 'selected="selected"'; ?> >20</option>
112
-                        <option value="21" <?php if((!$formSent && $thisDay == 21) || ($formSent && $day_start == 21)) echo 'selected="selected"'; ?> >21</option>
113
-                        <option value="22" <?php if((!$formSent && $thisDay == 22) || ($formSent && $day_start == 22)) echo 'selected="selected"'; ?> >22</option>
114
-                        <option value="23" <?php if((!$formSent && $thisDay == 23) || ($formSent && $day_start == 23)) echo 'selected="selected"'; ?> >23</option>
115
-                        <option value="24" <?php if((!$formSent && $thisDay == 24) || ($formSent && $day_start == 24)) echo 'selected="selected"'; ?> >24</option>
116
-                        <option value="25" <?php if((!$formSent && $thisDay == 25) || ($formSent && $day_start == 25)) echo 'selected="selected"'; ?> >25</option>
117
-                        <option value="26" <?php if((!$formSent && $thisDay == 26) || ($formSent && $day_start == 26)) echo 'selected="selected"'; ?> >26</option>
118
-                        <option value="27" <?php if((!$formSent && $thisDay == 27) || ($formSent && $day_start == 27)) echo 'selected="selected"'; ?> >27</option>
119
-                        <option value="28" <?php if((!$formSent && $thisDay == 28) || ($formSent && $day_start == 28)) echo 'selected="selected"'; ?> >28</option>
120
-                        <option value="29" <?php if((!$formSent && $thisDay == 29) || ($formSent && $day_start == 29)) echo 'selected="selected"'; ?> >29</option>
121
-                        <option value="30" <?php if((!$formSent && $thisDay == 30) || ($formSent && $day_start == 30)) echo 'selected="selected"'; ?> >30</option>
122
-                        <option value="31" <?php if((!$formSent && $thisDay == 31) || ($formSent && $day_start == 31)) echo 'selected="selected"'; ?> >31</option>
93
+                        <option value="2" <?php if ((!$formSent && $thisDay == 2) || ($formSent && $day_start == 2)) echo 'selected="selected"'; ?> >02</option>
94
+                        <option value="3" <?php if ((!$formSent && $thisDay == 3) || ($formSent && $day_start == 3)) echo 'selected="selected"'; ?> >03</option>
95
+                        <option value="4" <?php if ((!$formSent && $thisDay == 4) || ($formSent && $day_start == 4)) echo 'selected="selected"'; ?> >04</option>
96
+                        <option value="5" <?php if ((!$formSent && $thisDay == 5) || ($formSent && $day_start == 5)) echo 'selected="selected"'; ?> >05</option>
97
+                        <option value="6" <?php if ((!$formSent && $thisDay == 6) || ($formSent && $day_start == 6)) echo 'selected="selected"'; ?> >06</option>
98
+                        <option value="7" <?php if ((!$formSent && $thisDay == 7) || ($formSent && $day_start == 7)) echo 'selected="selected"'; ?> >07</option>
99
+                        <option value="8" <?php if ((!$formSent && $thisDay == 8) || ($formSent && $day_start == 8)) echo 'selected="selected"'; ?> >08</option>
100
+                        <option value="9" <?php if ((!$formSent && $thisDay == 9) || ($formSent && $day_start == 9)) echo 'selected="selected"'; ?> >09</option>
101
+                        <option value="10" <?php if ((!$formSent && $thisDay == 10) || ($formSent && $day_start == 10)) echo 'selected="selected"'; ?> >10</option>
102
+                        <option value="11" <?php if ((!$formSent && $thisDay == 11) || ($formSent && $day_start == 11)) echo 'selected="selected"'; ?> >11</option>
103
+                        <option value="12" <?php if ((!$formSent && $thisDay == 12) || ($formSent && $day_start == 12)) echo 'selected="selected"'; ?> >12</option>
104
+                        <option value="13" <?php if ((!$formSent && $thisDay == 13) || ($formSent && $day_start == 13)) echo 'selected="selected"'; ?> >13</option>
105
+                        <option value="14" <?php if ((!$formSent && $thisDay == 14) || ($formSent && $day_start == 14)) echo 'selected="selected"'; ?> >14</option>
106
+                        <option value="15" <?php if ((!$formSent && $thisDay == 15) || ($formSent && $day_start == 15)) echo 'selected="selected"'; ?> >15</option>
107
+                        <option value="16" <?php if ((!$formSent && $thisDay == 16) || ($formSent && $day_start == 16)) echo 'selected="selected"'; ?> >16</option>
108
+                        <option value="17" <?php if ((!$formSent && $thisDay == 17) || ($formSent && $day_start == 17)) echo 'selected="selected"'; ?> >17</option>
109
+                        <option value="18" <?php if ((!$formSent && $thisDay == 18) || ($formSent && $day_start == 18)) echo 'selected="selected"'; ?> >18</option>
110
+                        <option value="19" <?php if ((!$formSent && $thisDay == 19) || ($formSent && $day_start == 19)) echo 'selected="selected"'; ?> >19</option>
111
+                        <option value="20" <?php if ((!$formSent && $thisDay == 20) || ($formSent && $day_start == 20)) echo 'selected="selected"'; ?> >20</option>
112
+                        <option value="21" <?php if ((!$formSent && $thisDay == 21) || ($formSent && $day_start == 21)) echo 'selected="selected"'; ?> >21</option>
113
+                        <option value="22" <?php if ((!$formSent && $thisDay == 22) || ($formSent && $day_start == 22)) echo 'selected="selected"'; ?> >22</option>
114
+                        <option value="23" <?php if ((!$formSent && $thisDay == 23) || ($formSent && $day_start == 23)) echo 'selected="selected"'; ?> >23</option>
115
+                        <option value="24" <?php if ((!$formSent && $thisDay == 24) || ($formSent && $day_start == 24)) echo 'selected="selected"'; ?> >24</option>
116
+                        <option value="25" <?php if ((!$formSent && $thisDay == 25) || ($formSent && $day_start == 25)) echo 'selected="selected"'; ?> >25</option>
117
+                        <option value="26" <?php if ((!$formSent && $thisDay == 26) || ($formSent && $day_start == 26)) echo 'selected="selected"'; ?> >26</option>
118
+                        <option value="27" <?php if ((!$formSent && $thisDay == 27) || ($formSent && $day_start == 27)) echo 'selected="selected"'; ?> >27</option>
119
+                        <option value="28" <?php if ((!$formSent && $thisDay == 28) || ($formSent && $day_start == 28)) echo 'selected="selected"'; ?> >28</option>
120
+                        <option value="29" <?php if ((!$formSent && $thisDay == 29) || ($formSent && $day_start == 29)) echo 'selected="selected"'; ?> >29</option>
121
+                        <option value="30" <?php if ((!$formSent && $thisDay == 30) || ($formSent && $day_start == 30)) echo 'selected="selected"'; ?> >30</option>
122
+                        <option value="31" <?php if ((!$formSent && $thisDay == 31) || ($formSent && $day_start == 31)) echo 'selected="selected"'; ?> >31</option>
123 123
                     </select>
124 124
                     /
125 125
                     <select name="month_start">
126 126
                           <option value="1">01</option>
127
-                          <option value="2" <?php if((!$formSent && $thisMonth == 2) || ($formSent && $month_start == 2)) echo 'selected="selected"'; ?> >02</option>
128
-                          <option value="3" <?php if((!$formSent && $thisMonth == 3) || ($formSent && $month_start == 3)) echo 'selected="selected"'; ?> >03</option>
129
-                          <option value="4" <?php if((!$formSent && $thisMonth == 4) || ($formSent && $month_start == 4)) echo 'selected="selected"'; ?> >04</option>
130
-                          <option value="5" <?php if((!$formSent && $thisMonth == 5) || ($formSent && $month_start == 5)) echo 'selected="selected"'; ?> >05</option>
131
-                          <option value="6" <?php if((!$formSent && $thisMonth == 6) || ($formSent && $month_start == 6)) echo 'selected="selected"'; ?> >06</option>
132
-                          <option value="7" <?php if((!$formSent && $thisMonth == 7) || ($formSent && $month_start == 7)) echo 'selected="selected"'; ?> >07</option>
133
-                          <option value="8" <?php if((!$formSent && $thisMonth == 8) || ($formSent && $month_start == 8)) echo 'selected="selected"'; ?> >08</option>
134
-                          <option value="9" <?php if((!$formSent && $thisMonth == 9) || ($formSent && $month_start == 9)) echo 'selected="selected"'; ?> >09</option>
135
-                          <option value="10" <?php if((!$formSent && $thisMonth == 10) || ($formSent && $month_start == 10)) echo 'selected="selected"'; ?> >10</option>
136
-                          <option value="11" <?php if((!$formSent && $thisMonth == 11) || ($formSent && $month_start == 11)) echo 'selected="selected"'; ?> >11</option>
137
-                          <option value="12" <?php if((!$formSent && $thisMonth == 12) || ($formSent && $month_start == 12)) echo 'selected="selected"'; ?> >12</option>
127
+                          <option value="2" <?php if ((!$formSent && $thisMonth == 2) || ($formSent && $month_start == 2)) echo 'selected="selected"'; ?> >02</option>
128
+                          <option value="3" <?php if ((!$formSent && $thisMonth == 3) || ($formSent && $month_start == 3)) echo 'selected="selected"'; ?> >03</option>
129
+                          <option value="4" <?php if ((!$formSent && $thisMonth == 4) || ($formSent && $month_start == 4)) echo 'selected="selected"'; ?> >04</option>
130
+                          <option value="5" <?php if ((!$formSent && $thisMonth == 5) || ($formSent && $month_start == 5)) echo 'selected="selected"'; ?> >05</option>
131
+                          <option value="6" <?php if ((!$formSent && $thisMonth == 6) || ($formSent && $month_start == 6)) echo 'selected="selected"'; ?> >06</option>
132
+                          <option value="7" <?php if ((!$formSent && $thisMonth == 7) || ($formSent && $month_start == 7)) echo 'selected="selected"'; ?> >07</option>
133
+                          <option value="8" <?php if ((!$formSent && $thisMonth == 8) || ($formSent && $month_start == 8)) echo 'selected="selected"'; ?> >08</option>
134
+                          <option value="9" <?php if ((!$formSent && $thisMonth == 9) || ($formSent && $month_start == 9)) echo 'selected="selected"'; ?> >09</option>
135
+                          <option value="10" <?php if ((!$formSent && $thisMonth == 10) || ($formSent && $month_start == 10)) echo 'selected="selected"'; ?> >10</option>
136
+                          <option value="11" <?php if ((!$formSent && $thisMonth == 11) || ($formSent && $month_start == 11)) echo 'selected="selected"'; ?> >11</option>
137
+                          <option value="12" <?php if ((!$formSent && $thisMonth == 12) || ($formSent && $month_start == 12)) echo 'selected="selected"'; ?> >12</option>
138 138
                     </select>
139 139
                     /
140 140
                       <select name="year_start">
141 141
                       <?php
142
-                      for ($i=$thisYear-5;$i <= ($thisYear+5);$i++) {
142
+                      for ($i = $thisYear - 5; $i <= ($thisYear + 5); $i++) {
143 143
                       ?>
144
-                              <option value="<?php echo $i; ?>" <?php if((!$formSent && $thisYear == $i) || ($formSent && $year_start == $i)) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
144
+                              <option value="<?php echo $i; ?>" <?php if ((!$formSent && $thisYear == $i) || ($formSent && $year_start == $i)) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
145 145
                       <?php
146 146
                       }
147 147
                       ?>
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
                 <select name="year_end">
207 207
                   <option value="0">----</option>
208 208
                     <?php
209
-                        for ($i=$thisYear-5;$i <= ($thisYear+5);$i++) {
209
+                        for ($i = $thisYear - 5; $i <= ($thisYear + 5); $i++) {
210 210
                         ?>
211 211
                                 <option value="<?php echo $i; ?>"><?php echo $i; ?></option>
212 212
                     <?php
Please login to merge, or discard this patch.
Braces   +172 added lines, -43 removed lines patch added patch discarded remove patch
@@ -72,7 +72,10 @@  discard block
 block discarded – undo
72 72
             <div class="form-group">
73 73
                 <label class="col-sm-3 control-label"><?php echo get_lang('SessionCategoryName') ?></label>
74 74
                 <div class="col-sm-6">
75
-                    <input type="text" class="form-control" name="name" placeholder="<?php echo get_lang('Category') ?>" size="50" maxlength="50" value="<?php if($formSent) echo api_htmlentities($name,ENT_QUOTES,$charset); ?>">
75
+                    <input type="text" class="form-control" name="name" placeholder="<?php echo get_lang('Category') ?>" size="50" maxlength="50" value="<?php if($formSent) {
76
+    echo api_htmlentities($name,ENT_QUOTES,$charset);
77
+}
78
+?>">
76 79
                 </div>
77 80
                 <div class="col-md-3"></div>
78 81
             </div>
@@ -90,58 +93,184 @@  discard block
 block discarded – undo
90 93
                 <div class="col-sm-6">
91 94
                     <select name="day_start">
92 95
                         <option value="1">01</option>
93
-                        <option value="2" <?php if((!$formSent && $thisDay == 2) || ($formSent && $day_start == 2)) echo 'selected="selected"'; ?> >02</option>
94
-                        <option value="3" <?php if((!$formSent && $thisDay == 3) || ($formSent && $day_start == 3)) echo 'selected="selected"'; ?> >03</option>
95
-                        <option value="4" <?php if((!$formSent && $thisDay == 4) || ($formSent && $day_start == 4)) echo 'selected="selected"'; ?> >04</option>
96
-                        <option value="5" <?php if((!$formSent && $thisDay == 5) || ($formSent && $day_start == 5)) echo 'selected="selected"'; ?> >05</option>
97
-                        <option value="6" <?php if((!$formSent && $thisDay == 6) || ($formSent && $day_start == 6)) echo 'selected="selected"'; ?> >06</option>
98
-                        <option value="7" <?php if((!$formSent && $thisDay == 7) || ($formSent && $day_start == 7)) echo 'selected="selected"'; ?> >07</option>
99
-                        <option value="8" <?php if((!$formSent && $thisDay == 8) || ($formSent && $day_start == 8)) echo 'selected="selected"'; ?> >08</option>
100
-                        <option value="9" <?php if((!$formSent && $thisDay == 9) || ($formSent && $day_start == 9)) echo 'selected="selected"'; ?> >09</option>
101
-                        <option value="10" <?php if((!$formSent && $thisDay == 10) || ($formSent && $day_start == 10)) echo 'selected="selected"'; ?> >10</option>
102
-                        <option value="11" <?php if((!$formSent && $thisDay == 11) || ($formSent && $day_start == 11)) echo 'selected="selected"'; ?> >11</option>
103
-                        <option value="12" <?php if((!$formSent && $thisDay == 12) || ($formSent && $day_start == 12)) echo 'selected="selected"'; ?> >12</option>
104
-                        <option value="13" <?php if((!$formSent && $thisDay == 13) || ($formSent && $day_start == 13)) echo 'selected="selected"'; ?> >13</option>
105
-                        <option value="14" <?php if((!$formSent && $thisDay == 14) || ($formSent && $day_start == 14)) echo 'selected="selected"'; ?> >14</option>
106
-                        <option value="15" <?php if((!$formSent && $thisDay == 15) || ($formSent && $day_start == 15)) echo 'selected="selected"'; ?> >15</option>
107
-                        <option value="16" <?php if((!$formSent && $thisDay == 16) || ($formSent && $day_start == 16)) echo 'selected="selected"'; ?> >16</option>
108
-                        <option value="17" <?php if((!$formSent && $thisDay == 17) || ($formSent && $day_start == 17)) echo 'selected="selected"'; ?> >17</option>
109
-                        <option value="18" <?php if((!$formSent && $thisDay == 18) || ($formSent && $day_start == 18)) echo 'selected="selected"'; ?> >18</option>
110
-                        <option value="19" <?php if((!$formSent && $thisDay == 19) || ($formSent && $day_start == 19)) echo 'selected="selected"'; ?> >19</option>
111
-                        <option value="20" <?php if((!$formSent && $thisDay == 20) || ($formSent && $day_start == 20)) echo 'selected="selected"'; ?> >20</option>
112
-                        <option value="21" <?php if((!$formSent && $thisDay == 21) || ($formSent && $day_start == 21)) echo 'selected="selected"'; ?> >21</option>
113
-                        <option value="22" <?php if((!$formSent && $thisDay == 22) || ($formSent && $day_start == 22)) echo 'selected="selected"'; ?> >22</option>
114
-                        <option value="23" <?php if((!$formSent && $thisDay == 23) || ($formSent && $day_start == 23)) echo 'selected="selected"'; ?> >23</option>
115
-                        <option value="24" <?php if((!$formSent && $thisDay == 24) || ($formSent && $day_start == 24)) echo 'selected="selected"'; ?> >24</option>
116
-                        <option value="25" <?php if((!$formSent && $thisDay == 25) || ($formSent && $day_start == 25)) echo 'selected="selected"'; ?> >25</option>
117
-                        <option value="26" <?php if((!$formSent && $thisDay == 26) || ($formSent && $day_start == 26)) echo 'selected="selected"'; ?> >26</option>
118
-                        <option value="27" <?php if((!$formSent && $thisDay == 27) || ($formSent && $day_start == 27)) echo 'selected="selected"'; ?> >27</option>
119
-                        <option value="28" <?php if((!$formSent && $thisDay == 28) || ($formSent && $day_start == 28)) echo 'selected="selected"'; ?> >28</option>
120
-                        <option value="29" <?php if((!$formSent && $thisDay == 29) || ($formSent && $day_start == 29)) echo 'selected="selected"'; ?> >29</option>
121
-                        <option value="30" <?php if((!$formSent && $thisDay == 30) || ($formSent && $day_start == 30)) echo 'selected="selected"'; ?> >30</option>
122
-                        <option value="31" <?php if((!$formSent && $thisDay == 31) || ($formSent && $day_start == 31)) echo 'selected="selected"'; ?> >31</option>
96
+                        <option value="2" <?php if((!$formSent && $thisDay == 2) || ($formSent && $day_start == 2)) {
97
+    echo 'selected="selected"';
98
+}
99
+?> >02</option>
100
+                        <option value="3" <?php if((!$formSent && $thisDay == 3) || ($formSent && $day_start == 3)) {
101
+    echo 'selected="selected"';
102
+}
103
+?> >03</option>
104
+                        <option value="4" <?php if((!$formSent && $thisDay == 4) || ($formSent && $day_start == 4)) {
105
+    echo 'selected="selected"';
106
+}
107
+?> >04</option>
108
+                        <option value="5" <?php if((!$formSent && $thisDay == 5) || ($formSent && $day_start == 5)) {
109
+    echo 'selected="selected"';
110
+}
111
+?> >05</option>
112
+                        <option value="6" <?php if((!$formSent && $thisDay == 6) || ($formSent && $day_start == 6)) {
113
+    echo 'selected="selected"';
114
+}
115
+?> >06</option>
116
+                        <option value="7" <?php if((!$formSent && $thisDay == 7) || ($formSent && $day_start == 7)) {
117
+    echo 'selected="selected"';
118
+}
119
+?> >07</option>
120
+                        <option value="8" <?php if((!$formSent && $thisDay == 8) || ($formSent && $day_start == 8)) {
121
+    echo 'selected="selected"';
122
+}
123
+?> >08</option>
124
+                        <option value="9" <?php if((!$formSent && $thisDay == 9) || ($formSent && $day_start == 9)) {
125
+    echo 'selected="selected"';
126
+}
127
+?> >09</option>
128
+                        <option value="10" <?php if((!$formSent && $thisDay == 10) || ($formSent && $day_start == 10)) {
129
+    echo 'selected="selected"';
130
+}
131
+?> >10</option>
132
+                        <option value="11" <?php if((!$formSent && $thisDay == 11) || ($formSent && $day_start == 11)) {
133
+    echo 'selected="selected"';
134
+}
135
+?> >11</option>
136
+                        <option value="12" <?php if((!$formSent && $thisDay == 12) || ($formSent && $day_start == 12)) {
137
+    echo 'selected="selected"';
138
+}
139
+?> >12</option>
140
+                        <option value="13" <?php if((!$formSent && $thisDay == 13) || ($formSent && $day_start == 13)) {
141
+    echo 'selected="selected"';
142
+}
143
+?> >13</option>
144
+                        <option value="14" <?php if((!$formSent && $thisDay == 14) || ($formSent && $day_start == 14)) {
145
+    echo 'selected="selected"';
146
+}
147
+?> >14</option>
148
+                        <option value="15" <?php if((!$formSent && $thisDay == 15) || ($formSent && $day_start == 15)) {
149
+    echo 'selected="selected"';
150
+}
151
+?> >15</option>
152
+                        <option value="16" <?php if((!$formSent && $thisDay == 16) || ($formSent && $day_start == 16)) {
153
+    echo 'selected="selected"';
154
+}
155
+?> >16</option>
156
+                        <option value="17" <?php if((!$formSent && $thisDay == 17) || ($formSent && $day_start == 17)) {
157
+    echo 'selected="selected"';
158
+}
159
+?> >17</option>
160
+                        <option value="18" <?php if((!$formSent && $thisDay == 18) || ($formSent && $day_start == 18)) {
161
+    echo 'selected="selected"';
162
+}
163
+?> >18</option>
164
+                        <option value="19" <?php if((!$formSent && $thisDay == 19) || ($formSent && $day_start == 19)) {
165
+    echo 'selected="selected"';
166
+}
167
+?> >19</option>
168
+                        <option value="20" <?php if((!$formSent && $thisDay == 20) || ($formSent && $day_start == 20)) {
169
+    echo 'selected="selected"';
170
+}
171
+?> >20</option>
172
+                        <option value="21" <?php if((!$formSent && $thisDay == 21) || ($formSent && $day_start == 21)) {
173
+    echo 'selected="selected"';
174
+}
175
+?> >21</option>
176
+                        <option value="22" <?php if((!$formSent && $thisDay == 22) || ($formSent && $day_start == 22)) {
177
+    echo 'selected="selected"';
178
+}
179
+?> >22</option>
180
+                        <option value="23" <?php if((!$formSent && $thisDay == 23) || ($formSent && $day_start == 23)) {
181
+    echo 'selected="selected"';
182
+}
183
+?> >23</option>
184
+                        <option value="24" <?php if((!$formSent && $thisDay == 24) || ($formSent && $day_start == 24)) {
185
+    echo 'selected="selected"';
186
+}
187
+?> >24</option>
188
+                        <option value="25" <?php if((!$formSent && $thisDay == 25) || ($formSent && $day_start == 25)) {
189
+    echo 'selected="selected"';
190
+}
191
+?> >25</option>
192
+                        <option value="26" <?php if((!$formSent && $thisDay == 26) || ($formSent && $day_start == 26)) {
193
+    echo 'selected="selected"';
194
+}
195
+?> >26</option>
196
+                        <option value="27" <?php if((!$formSent && $thisDay == 27) || ($formSent && $day_start == 27)) {
197
+    echo 'selected="selected"';
198
+}
199
+?> >27</option>
200
+                        <option value="28" <?php if((!$formSent && $thisDay == 28) || ($formSent && $day_start == 28)) {
201
+    echo 'selected="selected"';
202
+}
203
+?> >28</option>
204
+                        <option value="29" <?php if((!$formSent && $thisDay == 29) || ($formSent && $day_start == 29)) {
205
+    echo 'selected="selected"';
206
+}
207
+?> >29</option>
208
+                        <option value="30" <?php if((!$formSent && $thisDay == 30) || ($formSent && $day_start == 30)) {
209
+    echo 'selected="selected"';
210
+}
211
+?> >30</option>
212
+                        <option value="31" <?php if((!$formSent && $thisDay == 31) || ($formSent && $day_start == 31)) {
213
+    echo 'selected="selected"';
214
+}
215
+?> >31</option>
123 216
                     </select>
124 217
                     /
125 218
                     <select name="month_start">
126 219
                           <option value="1">01</option>
127
-                          <option value="2" <?php if((!$formSent && $thisMonth == 2) || ($formSent && $month_start == 2)) echo 'selected="selected"'; ?> >02</option>
128
-                          <option value="3" <?php if((!$formSent && $thisMonth == 3) || ($formSent && $month_start == 3)) echo 'selected="selected"'; ?> >03</option>
129
-                          <option value="4" <?php if((!$formSent && $thisMonth == 4) || ($formSent && $month_start == 4)) echo 'selected="selected"'; ?> >04</option>
130
-                          <option value="5" <?php if((!$formSent && $thisMonth == 5) || ($formSent && $month_start == 5)) echo 'selected="selected"'; ?> >05</option>
131
-                          <option value="6" <?php if((!$formSent && $thisMonth == 6) || ($formSent && $month_start == 6)) echo 'selected="selected"'; ?> >06</option>
132
-                          <option value="7" <?php if((!$formSent && $thisMonth == 7) || ($formSent && $month_start == 7)) echo 'selected="selected"'; ?> >07</option>
133
-                          <option value="8" <?php if((!$formSent && $thisMonth == 8) || ($formSent && $month_start == 8)) echo 'selected="selected"'; ?> >08</option>
134
-                          <option value="9" <?php if((!$formSent && $thisMonth == 9) || ($formSent && $month_start == 9)) echo 'selected="selected"'; ?> >09</option>
135
-                          <option value="10" <?php if((!$formSent && $thisMonth == 10) || ($formSent && $month_start == 10)) echo 'selected="selected"'; ?> >10</option>
136
-                          <option value="11" <?php if((!$formSent && $thisMonth == 11) || ($formSent && $month_start == 11)) echo 'selected="selected"'; ?> >11</option>
137
-                          <option value="12" <?php if((!$formSent && $thisMonth == 12) || ($formSent && $month_start == 12)) echo 'selected="selected"'; ?> >12</option>
220
+                          <option value="2" <?php if((!$formSent && $thisMonth == 2) || ($formSent && $month_start == 2)) {
221
+    echo 'selected="selected"';
222
+}
223
+?> >02</option>
224
+                          <option value="3" <?php if((!$formSent && $thisMonth == 3) || ($formSent && $month_start == 3)) {
225
+    echo 'selected="selected"';
226
+}
227
+?> >03</option>
228
+                          <option value="4" <?php if((!$formSent && $thisMonth == 4) || ($formSent && $month_start == 4)) {
229
+    echo 'selected="selected"';
230
+}
231
+?> >04</option>
232
+                          <option value="5" <?php if((!$formSent && $thisMonth == 5) || ($formSent && $month_start == 5)) {
233
+    echo 'selected="selected"';
234
+}
235
+?> >05</option>
236
+                          <option value="6" <?php if((!$formSent && $thisMonth == 6) || ($formSent && $month_start == 6)) {
237
+    echo 'selected="selected"';
238
+}
239
+?> >06</option>
240
+                          <option value="7" <?php if((!$formSent && $thisMonth == 7) || ($formSent && $month_start == 7)) {
241
+    echo 'selected="selected"';
242
+}
243
+?> >07</option>
244
+                          <option value="8" <?php if((!$formSent && $thisMonth == 8) || ($formSent && $month_start == 8)) {
245
+    echo 'selected="selected"';
246
+}
247
+?> >08</option>
248
+                          <option value="9" <?php if((!$formSent && $thisMonth == 9) || ($formSent && $month_start == 9)) {
249
+    echo 'selected="selected"';
250
+}
251
+?> >09</option>
252
+                          <option value="10" <?php if((!$formSent && $thisMonth == 10) || ($formSent && $month_start == 10)) {
253
+    echo 'selected="selected"';
254
+}
255
+?> >10</option>
256
+                          <option value="11" <?php if((!$formSent && $thisMonth == 11) || ($formSent && $month_start == 11)) {
257
+    echo 'selected="selected"';
258
+}
259
+?> >11</option>
260
+                          <option value="12" <?php if((!$formSent && $thisMonth == 12) || ($formSent && $month_start == 12)) {
261
+    echo 'selected="selected"';
262
+}
263
+?> >12</option>
138 264
                     </select>
139 265
                     /
140 266
                       <select name="year_start">
141 267
                       <?php
142 268
                       for ($i=$thisYear-5;$i <= ($thisYear+5);$i++) {
143 269
                       ?>
144
-                              <option value="<?php echo $i; ?>" <?php if((!$formSent && $thisYear == $i) || ($formSent && $year_start == $i)) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
270
+                              <option value="<?php echo $i; ?>" <?php if((!$formSent && $thisYear == $i) || ($formSent && $year_start == $i)) {
271
+    echo 'selected="selected"';
272
+}
273
+?> ><?php echo $i; ?></option>
145 274
                       <?php
146 275
                       }
147 276
                       ?>
Please login to merge, or discard this patch.
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -29,29 +29,29 @@  discard block
 block discarded – undo
29 29
 $tbl_session = Database::get_main_table(TABLE_MAIN_SESSION);
30 30
 
31 31
 if (isset($_POST['formSent']) && $_POST['formSent']) {
32
-	$formSent = 1;
33
-	$name = $_POST['name'];
34
-	$year_start = $_POST['year_start'];
35
-	$month_start = $_POST['month_start'];
36
-	$day_start = $_POST['day_start'];
37
-	$year_end = $_POST['year_end'];
38
-	$month_end = $_POST['month_end'];
39
-	$day_end = $_POST['day_end'];
40
-	$return = SessionManager::create_category_session(
41
-		$name,
42
-		$year_start,
43
-		$month_start,
44
-		$day_start,
45
-		$year_end,
46
-		$month_end,
47
-		$day_end
48
-	);
49
-
50
-	if ($return == strval(intval($return))) {
51
-		Display::addFlash(Display::return_message(get_lang('SessionCategoryAdded')));
52
-		header('Location: session_category_list.php');
53
-		exit();
54
-	}
32
+    $formSent = 1;
33
+    $name = $_POST['name'];
34
+    $year_start = $_POST['year_start'];
35
+    $month_start = $_POST['month_start'];
36
+    $day_start = $_POST['day_start'];
37
+    $year_end = $_POST['year_end'];
38
+    $month_end = $_POST['month_end'];
39
+    $day_end = $_POST['day_end'];
40
+    $return = SessionManager::create_category_session(
41
+        $name,
42
+        $year_start,
43
+        $month_start,
44
+        $day_start,
45
+        $year_end,
46
+        $month_end,
47
+        $day_end
48
+    );
49
+
50
+    if ($return == strval(intval($return))) {
51
+        Display::addFlash(Display::return_message(get_lang('SessionCategoryAdded')));
52
+        header('Location: session_category_list.php');
53
+        exit();
54
+    }
55 55
 }
56 56
 $thisYear = date('Y');
57 57
 $thisMonth = date('m');
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 //display the header
62 62
 Display::display_header($tool_name);
63 63
 if (!empty($return)) {
64
-	Display::display_error_message($return,false);
64
+    Display::display_error_message($return,false);
65 65
 }
66 66
 ?>
67 67
 <div class="row">
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
                     /
140 140
                       <select name="year_start">
141 141
                       <?php
142
-                      for ($i=$thisYear-5;$i <= ($thisYear+5);$i++) {
143
-                      ?>
142
+                        for ($i=$thisYear-5;$i <= ($thisYear+5);$i++) {
143
+                        ?>
144 144
                               <option value="<?php echo $i; ?>" <?php if((!$formSent && $thisYear == $i) || ($formSent && $year_start == $i)) echo 'selected="selected"'; ?> ><?php echo $i; ?></option>
145 145
                       <?php
146
-                      }
147
-                      ?>
146
+                        }
147
+                        ?>
148 148
                         </select>
149 149
                 </div>
150 150
                 <div class="col-md-3"></div>
Please login to merge, or discard this patch.
main/attendance/attendance_controller.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -636,11 +636,11 @@
 block discarded – undo
636 636
             }
637 637
             $formToDisplay = $form->returnForm();
638 638
         } else {
639
-           if (!empty($sessionId)) {
640
-               $sessionInfo = api_get_session_info($sessionId);
641
-               $startDate = $sessionInfo['access_start_date'];
642
-               $endDate = $sessionInfo['access_end_date'];
643
-           }
639
+            if (!empty($sessionId)) {
640
+                $sessionInfo = api_get_session_info($sessionId);
641
+                $startDate = $sessionInfo['access_start_date'];
642
+                $endDate = $sessionInfo['access_end_date'];
643
+            }
644 644
         }
645 645
 
646 646
         $attendance = new Attendance();
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -550,17 +550,17 @@  discard block
 block discarded – undo
550 550
             }
551 551
         }
552 552
         $max_cols_per_page = 12; //10 dates + 2 name and number
553
-        $max_dates_per_page = $max_dates_per_page_original = $max_cols_per_page - 2;//10
553
+        $max_dates_per_page = $max_dates_per_page_original = $max_cols_per_page - 2; //10
554 554
         $rows = count($data_table);
555 555
 
556 556
         if ($cols > $max_cols_per_page) {
557
-            $number_tables = round(($cols-2)/$max_dates_per_page);
557
+            $number_tables = round(($cols - 2) / $max_dates_per_page);
558 558
             $headers = $data_table[0];
559 559
             $all = array();
560 560
             $tables = array();
561 561
             $changed = 1;
562 562
 
563
-            for ($i= 0; $i <= $rows; $i++) {
563
+            for ($i = 0; $i <= $rows; $i++) {
564 564
                 $row = isset($data_table[$i]) ? $data_table[$i] : null;
565 565
                 $key = 1;
566 566
                 $max_dates_per_page = 10;
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
                     foreach ($item as $value) {
572 572
                         if ($count_j >= $max_dates_per_page) {
573 573
                             $key++;
574
-                            $max_dates_per_page = $max_dates_per_page_original*$key;
574
+                            $max_dates_per_page = $max_dates_per_page_original * $key;
575 575
                             //magic hack
576 576
                             $tables[$key][$i][] = $tables[1][$i][0];
577 577
                             $tables[$key][$i][] = $tables[1][$i][1];
@@ -628,8 +628,8 @@  discard block
 block discarded – undo
628 628
             $form = new FormValidator(
629 629
                 'search',
630 630
                 'post',
631
-                api_get_self() . '?' . api_get_cidreq(
632
-                ) . '&action=calendar_logins'
631
+                api_get_self().'?'.api_get_cidreq(
632
+                ).'&action=calendar_logins'
633 633
             );
634 634
             $form->addDateRangePicker('range', get_lang('DateRange'));
635 635
             $form->addButton('submit', get_lang('Submit'));
Please login to merge, or discard this patch.
main/course_home/vertical_activity.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
         $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('SessionData').'</span>
92 92
             <table width="100%">';
93 93
                 $content .= CourseHome::show_session_data($session_id);
94
-             $content .=  '</table></div>';
94
+                $content .=  '</table></div>';
95 95
     }
96 96
 
97 97
     $content .=  '<div class="Authoringview">';
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     // Show message to confirm that a tool it to be hidden from available tools
38 38
     // visibility 0,1->2
39 39
     if (!empty($_GET['askDelete'])) {
40
-        $content .='<div id="toolhide">'.get_lang('DelLk').'<br />&nbsp;&nbsp;&nbsp;
40
+        $content .= '<div id="toolhide">'.get_lang('DelLk').'<br />&nbsp;&nbsp;&nbsp;
41 41
             <a href="'.api_get_self().'">'.get_lang('No').'</a>&nbsp;|&nbsp;
42 42
             <a href="'.api_get_self().'?delete=yes&id='.$id.'">'.get_lang('Yes').'</a>
43 43
         </div>';
@@ -55,14 +55,14 @@  discard block
 block discarded – undo
55 55
 
56 56
 // Start of tools for CourseAdmins (teachers/tutors)
57 57
 if (api_is_allowed_to_edit(null, true) && !api_is_coach()) {
58
-    $content .=  '<div class="courseadminview" style="border:0px; margin-top: 0px;padding:5px;">
58
+    $content .= '<div class="courseadminview" style="border:0px; margin-top: 0px;padding:5px;">
59 59
     <div class="normal-message" id="id_normal_message" style="display:none">';
60
-        $content .=  '<img src="'.api_get_path(WEB_PATH).'main/inc/lib/javascript/indicator.gif"/>&nbsp;&nbsp;';
61
-        $content .=  get_lang('PleaseStandBy');
60
+        $content .= '<img src="'.api_get_path(WEB_PATH).'main/inc/lib/javascript/indicator.gif"/>&nbsp;&nbsp;';
61
+        $content .= get_lang('PleaseStandBy');
62 62
 
63
-    $content .=  '</div>
63
+    $content .= '</div>
64 64
         <div class="confirmation-message" id="id_confirmation_message" style="display:none"></div></div>';
65
-    $content .=  '<div id="activity-3col">';
65
+    $content .= '<div id="activity-3col">';
66 66
 
67 67
     if (api_get_setting('show_session_data') == 'true' && $session_id > 0) {
68 68
         $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('SessionData').'</span>
@@ -90,10 +90,10 @@  discard block
 block discarded – undo
90 90
         $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('SessionData').'</span>
91 91
             <table width="100%">';
92 92
                 $content .= CourseHome::show_session_data($session_id);
93
-             $content .=  '</table></div>';
93
+             $content .= '</table></div>';
94 94
     }
95 95
 
96
-    $content .=  '<div class="Authoringview">';
96
+    $content .= '<div class="Authoringview">';
97 97
                 $my_list = CourseHome::get_tools_category(TOOL_STUDENT_VIEW);
98 98
                 $content .= CourseHome::show_tools_category($my_list);
99 99
     $content .= '</div>';
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         $order_tool_list = array();
107 107
         foreach ($my_list as $key => $new_tool) {
108 108
             $tool_name = CourseHome::translate_tool_name($new_tool);
109
-            $order_tool_list [$key]= $tool_name;
109
+            $order_tool_list [$key] = $tool_name;
110 110
         }
111 111
         natsort($order_tool_list);
112 112
         $my_temp_tool_array = array();
Please login to merge, or discard this patch.