Completed
Push — 1.10.x ( c82817...6a93c3 )
by Yannick
202:42 queued 149:59
created
main/admin/subscribe_user2class.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@  discard block
 block discarded – undo
32 32
 $result = Database::query($sql);
33 33
 
34 34
 if (!list ($class_name) = Database::fetch_row($result)) {
35
-    header('Location: class_list.php?filtreCours=' . urlencode($course));
35
+    header('Location: class_list.php?filtreCours='.urlencode($course));
36 36
     exit();
37 37
 }
38 38
 
39 39
 $noPHP_SELF = true;
40 40
 
41
-$tool_name = get_lang('AddUsersToAClass') . ' (' . $class_name . ')';
41
+$tool_name = get_lang('AddUsersToAClass').' ('.$class_name.')';
42 42
 
43 43
 $interbreadcrumb[] = array("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
44
-$interbreadcrumb[] = array("url" => "class_list.php?filtreCours=" . urlencode($course), "name" => get_lang('AdminClasses'));
44
+$interbreadcrumb[] = array("url" => "class_list.php?filtreCours=".urlencode($course), "name" => get_lang('AdminClasses'));
45 45
 
46 46
 if ($_POST['formSent']) {
47 47
     $form_sent = $_POST['formSent'];
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                 foreach ($left_user_list as $user_id) {
60 60
                     ClassManager :: add_user($user_id, $class_id);
61 61
                 }
62
-                header('Location: class_list.php?filtreCours=' . urlencode($course));
62
+                header('Location: class_list.php?filtreCours='.urlencode($course));
63 63
                 exit();
64 64
             }
65 65
         } elseif ($remove_from_class) {
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                 foreach ($right_user_list as $index => $user_id) {
70 70
                     ClassManager :: unsubscribe_user($user_id, $class_id);
71 71
                 }
72
-                header('Location: class_list.php?filtreCours=' . urlencode($course));
72
+                header('Location: class_list.php?filtreCours='.urlencode($course));
73 73
                 exit();
74 74
             }
75 75
         }
@@ -78,10 +78,10 @@  discard block
 block discarded – undo
78 78
 Display :: display_header($tool_name);
79 79
 //api_display_tool_title($tool_name);
80 80
 $target_name = api_sort_by_first_name() ? 'firstname' : 'lastname';
81
-$sql = "SELECT u.user_id,lastname,firstname,username FROM $tbl_user u LEFT JOIN $tbl_class_user cu ON u.user_id=cu.user_id AND class_id='$class_id' WHERE " . $target_name . " LIKE '" . $first_letter_left . "%' AND class_id IS NULL ORDER BY " . (count($left_user_list) > 0 ? "(user_id IN(" . implode(',', $left_user_list) . ")) DESC," : "") . " " . $target_name;
81
+$sql = "SELECT u.user_id,lastname,firstname,username FROM $tbl_user u LEFT JOIN $tbl_class_user cu ON u.user_id=cu.user_id AND class_id='$class_id' WHERE ".$target_name." LIKE '".$first_letter_left."%' AND class_id IS NULL ORDER BY ".(count($left_user_list) > 0 ? "(user_id IN(".implode(',', $left_user_list).")) DESC," : "")." ".$target_name;
82 82
 $result = Database::query($sql);
83 83
 $left_users = Database::store_result($result);
84
-$sql = "SELECT u.user_id,lastname,firstname,username FROM $tbl_user u,$tbl_class_user cu WHERE cu.user_id=u.user_id AND class_id='$class_id' AND " . $target_name . " LIKE '" . $first_letter_right . "%' ORDER BY " . (count($right_user_list) > 0 ? "(user_id IN(" . implode(',', $right_user_list) . ")) DESC," : "") . " " . $target_name;
84
+$sql = "SELECT u.user_id,lastname,firstname,username FROM $tbl_user u,$tbl_class_user cu WHERE cu.user_id=u.user_id AND class_id='$class_id' AND ".$target_name." LIKE '".$first_letter_right."%' ORDER BY ".(count($right_user_list) > 0 ? "(user_id IN(".implode(',', $right_user_list).")) DESC," : "")." ".$target_name;
85 85
 $result = Database::query($sql);
86 86
 $right_users = Database::store_result($result);
87 87
 if (!empty($error_message)) {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                 <?php
123 123
                 foreach ($left_users as $user) {
124 124
                     ?>
125
-                        <option value="<?php echo $user['user_id']; ?>" <?php if (in_array($user['user_id'], $left_user_list)) echo 'selected="selected"'; ?>><?php echo api_get_person_name($user['firstname'], $user['lastname']) . ' (' . $user['username'] . ')'; ?></option>
125
+                        <option value="<?php echo $user['user_id']; ?>" <?php if (in_array($user['user_id'], $left_user_list)) echo 'selected="selected"'; ?>><?php echo api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')'; ?></option>
126 126
                         <?php
127 127
                     }
128 128
                     ?>
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                     <?php
139 139
                     foreach ($right_users as $user) {
140 140
                         ?>
141
-                        <option value="<?php echo $user['user_id']; ?>" <?php if (in_array($user['user_id'], $right_user_list)) echo 'selected="selected"'; ?>><?php echo api_get_person_name($user['firstname'], $user['lastname']) . ' (' . $user['username'] . ')'; ?></option>
141
+                        <option value="<?php echo $user['user_id']; ?>" <?php if (in_array($user['user_id'], $right_user_list)) echo 'selected="selected"'; ?>><?php echo api_get_person_name($user['firstname'], $user['lastname']).' ('.$user['username'].')'; ?></option>
142 142
     <?php
143 143
 }
144 144
 ?>
Please login to merge, or discard this patch.
main/admin/legal_list.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 require_once '../inc/global.inc.php';
12 12
 $this_section = SECTION_PLATFORM_ADMIN;
13 13
 api_protect_admin_script();
14
-$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
14
+$interbreadcrumb[] = array("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
15 15
 $tool_name = get_lang('TermsAndConditions');
16 16
 Display :: display_header($tool_name);
17 17
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
 // action menu
21 21
 echo '<div class="actions">';
22
-echo '<a href="'.api_get_path(WEB_CODE_PATH).'admin/legal_add.php">'.Display::return_icon('edit.gif',get_lang('EditTermsAndConditions'),'').get_lang('EditTermsAndConditions').'</a>&nbsp;&nbsp;';
22
+echo '<a href="'.api_get_path(WEB_CODE_PATH).'admin/legal_add.php">'.Display::return_icon('edit.gif', get_lang('EditTermsAndConditions'), '').get_lang('EditTermsAndConditions').'</a>&nbsp;&nbsp;';
23 23
 echo '</div>';
24 24
 
25 25
 // Actions
@@ -40,18 +40,18 @@  discard block
 block discarded – undo
40 40
 //if ($legal_count < )
41 41
 
42 42
 
43
-$table = new SortableTable('conditions', 'count_mask', 'get_legal_data_mask',2);
43
+$table = new SortableTable('conditions', 'count_mask', 'get_legal_data_mask', 2);
44 44
 $table->set_additional_parameters($parameters);
45 45
 $table->set_header(0, get_lang('Version'), false, 'width="15px"');
46 46
 $table->set_header(1, get_lang('Language'), false, 'width="30px"');
47
-$table->set_header(2, get_lang('Content'),false);
47
+$table->set_header(2, get_lang('Content'), false);
48 48
 $table->set_header(3, get_lang('Changes'), false, 'width="60px"');
49 49
 $table->set_header(4, get_lang('Type'), false, 'width="60px"');
50 50
 $table->set_header(5, get_lang('Date'), false, 'width="50px"');
51 51
 $table->display();
52 52
 
53 53
 // this 2 "mask" function are here just because the SortableTable
54
-function get_legal_data_mask($id, $params=null, $row=null) {
54
+function get_legal_data_mask($id, $params = null, $row = null) {
55 55
 	return LegalManager::get_legal_data($id, $params, $row);
56 56
 }
57 57
 function count_mask() {
Please login to merge, or discard this patch.
main/admin/teacher_time_report.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
 if (isset($_GET['export'])) {
296 296
     $dataToExport = $timeReport->prepareDataToExport($withFilter);
297 297
 
298
-    $fileName = get_lang('TeacherTimeReport') . ' ' . api_get_local_time();
298
+    $fileName = get_lang('TeacherTimeReport').' '.api_get_local_time();
299 299
 
300 300
     switch ($_GET['export']) {
301 301
         case 'pdf':
Please login to merge, or discard this patch.
main/admin/skills_gradebook.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
 // setting breadcrumbs
26 26
 
27 27
 $tool_name = get_lang('SkillsAndGradebooks');
28
-$interbreadcrumb[]=array('url' => 'index.php','name' => get_lang('PlatformAdmin'));
28
+$interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
29 29
 if ($action == 'add_skill') {
30
-    $interbreadcrumb[]=array('url' => 'skills_gradebook.php','name' => get_lang('SkillsAndGradebooks'));
30
+    $interbreadcrumb[] = array('url' => 'skills_gradebook.php', 'name' => get_lang('SkillsAndGradebooks'));
31 31
     $tool_name = get_lang('Add');
32 32
 }
33 33
 
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
 
47 47
 //Column config
48 48
 $column_model   = array(
49
-                        array('name'=>'name',           'index'=>'name',        'width'=>'150', 'align'=>'left'),
50
-                        array('name'=>'certificate',    'index'=>'certificate', 'width'=>'25', 'align'=>'left', 'sortable'=>'false'),
51
-                        array('name'=>'skills',         'index'=>'skills',      'width'=>'300', 'align'=>'left', 'sortable'=>'false'),
52
-                        array('name'=>'actions',        'index'=>'actions',     'width'=>'30', 'align'=>'left','formatter'=>'action_formatter','sortable'=>'false')
49
+                        array('name'=>'name', 'index'=>'name', 'width'=>'150', 'align'=>'left'),
50
+                        array('name'=>'certificate', 'index'=>'certificate', 'width'=>'25', 'align'=>'left', 'sortable'=>'false'),
51
+                        array('name'=>'skills', 'index'=>'skills', 'width'=>'300', 'align'=>'left', 'sortable'=>'false'),
52
+                        array('name'=>'actions', 'index'=>'actions', 'width'=>'30', 'align'=>'left', 'formatter'=>'action_formatter', 'sortable'=>'false')
53 53
                        );
54 54
 //Autowidth
55 55
 $extra_params['autowidth'] = 'true';
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 $action_links = 'function action_formatter(cellvalue, options, rowObject) {
61 61
                         //certificates
62 62
                         if (rowObject[4] == 1) {
63
-                            return \'<a href="?action=add_skill&id=\'+options.rowId+\'">'.Display::return_icon('add.png', get_lang('AddSkill'),'',ICON_SIZE_SMALL).'</a>'.'\';
63
+                            return \'<a href="?action=add_skill&id=\'+options.rowId+\'">'.Display::return_icon('add.png', get_lang('AddSkill'), '', ICON_SIZE_SMALL).'</a>'.'\';
64 64
                         } else {
65
-                            return \''.Display::return_icon('add_na.png', get_lang('YourGradebookFirstNeedsACertificateInOrderToBeLinkedToASkill'),'',ICON_SIZE_SMALL).''.'\';
65
+                            return \''.Display::return_icon('add_na.png', get_lang('YourGradebookFirstNeedsACertificateInOrderToBeLinkedToASkill'), '', ICON_SIZE_SMALL).''.'\';
66 66
                         }
67 67
                  }';
68 68
 ?>
@@ -70,14 +70,14 @@  discard block
 block discarded – undo
70 70
 $(function() {
71 71
 <?php
72 72
     // grid definition see the $career->display() function
73
-    echo Display::grid_js('gradebooks', $url, $columns, $column_model, $extra_params, array(), $action_links,true);
73
+    echo Display::grid_js('gradebooks', $url, $columns, $column_model, $extra_params, array(), $action_links, true);
74 74
 ?>
75 75
 });
76 76
 </script>
77 77
 <?php
78 78
 $gradebook = new Gradebook();
79 79
 
80
-switch($action) {
80
+switch ($action) {
81 81
     case 'display':
82 82
         $gradebook->display();
83 83
         break;
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         $id = isset($_REQUEST['id']) ? $_REQUEST['id'] : null;
86 86
         $gradebook_info = $gradebook->get($id);
87 87
         $url  = api_get_self().'?action='.$action.'&id='.$id;
88
-        $form =  $gradebook->show_skill_form($id, $url, $gradebook_info['name']);
88
+        $form = $gradebook->show_skill_form($id, $url, $gradebook_info['name']);
89 89
         if ($form->validate()) {
90 90
             $values = $form->exportValues();
91 91
             $res    = $gradebook->update_skills_to_gradebook($values['id'], $values['skill']);
Please login to merge, or discard this patch.
main/admin/access_url_edit_users_to_url.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 function send() {
63 63
 	if (document.formulaire.access_url_id.value!=0) {
64 64
 		document.formulaire.form_sent.value=0;
65
-		document.formulaire.add_type.value=\'' . $add_type . '\';
65
+		document.formulaire.add_type.value=\'' . $add_type.'\';
66 66
 		document.formulaire.submit();
67 67
 	}
68 68
 }
@@ -92,23 +92,23 @@  discard block
 block discarded – undo
92 92
     }
93 93
     if ($form_sent == 1) {
94 94
         if ($access_url_id == 0) {
95
-            header('Location: access_url_edit_users_to_url.php?action=show_message&message=' . get_lang('SelectURL'));
95
+            header('Location: access_url_edit_users_to_url.php?action=show_message&message='.get_lang('SelectURL'));
96 96
             exit;
97 97
         } elseif (is_array($UserList)) {
98 98
             $result = UrlManager::update_urls_rel_user($UserList, $access_url_id);
99 99
             $url_info = UrlManager::get_url_data_from_id($access_url_id);
100 100
             if (!empty($result)) {
101
-                $message .= 'URL: ' . $url_info['url'] . '<br />';
101
+                $message .= 'URL: '.$url_info['url'].'<br />';
102 102
             }
103 103
 
104 104
             if (!empty($result['users_added'])) {
105
-                $message .= '<h4>' . get_lang('UsersAdded') . ':</h4>';
105
+                $message .= '<h4>'.get_lang('UsersAdded').':</h4>';
106 106
                 $i = 1;
107 107
                 $user_added_list = array();
108 108
                 foreach ($result['users_added'] as $user) {
109 109
                     $user_info = api_get_user_info($user);
110 110
                     if (!empty($user_info)) {
111
-                        $user_added_list[] = $i . '. ' . api_get_person_name($user_info['firstname'], $user_info['lastname'], null, null, null, null, $user_info['username']);
111
+                        $user_added_list[] = $i.'. '.api_get_person_name($user_info['firstname'], $user_info['lastname'], null, null, null, null, $user_info['username']);
112 112
                         $i++;
113 113
                     }
114 114
                 }
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
             }
119 119
 
120 120
             if (!empty($result['users_deleted'])) {
121
-                $message .= '<br /><h4>' . get_lang('UsersDeleted') . ': </h4>';
121
+                $message .= '<br /><h4>'.get_lang('UsersDeleted').': </h4>';
122 122
                 $user_deleted_list = array();
123 123
                 $i = 1;
124 124
                 foreach ($result['users_deleted'] as $user) {
125 125
                     $user_info = api_get_user_info($user);
126 126
                     if (!empty($user_info)) {
127
-                        $user_deleted_list [] = $i . '. ' . api_get_person_name($user_info['firstname'], $user_info['lastname']);
127
+                        $user_deleted_list [] = $i.'. '.api_get_person_name($user_info['firstname'], $user_info['lastname']);
128 128
                         $i++;
129 129
                     }
130 130
                 }
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 }
144 144
 
145 145
 echo '<div class="actions">';
146
-echo Display::url(Display::return_icon('view_more_stats.gif', get_lang('AddUserToURL'), ''), api_get_path(WEB_CODE_PATH) . 'admin/access_url_add_users_to_url.php');
146
+echo Display::url(Display::return_icon('view_more_stats.gif', get_lang('AddUserToURL'), ''), api_get_path(WEB_CODE_PATH).'admin/access_url_add_users_to_url.php');
147 147
 echo '</div>';
148 148
 
149 149
 api_display_tool_title($tool_name);
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     }
172 172
 
173 173
     $sql = "SELECT u.user_id, lastname, firstname, username
174
-	  	  	FROM $tbl_user u WHERE status <> " . ANONYMOUS . " " .
174
+	  	  	FROM $tbl_user u WHERE status <> ".ANONYMOUS." ".
175 175
             $order_clause;
176 176
     $result = Database::query($sql);
177 177
     $Users = Database::store_result($result);
@@ -184,11 +184,11 @@  discard block
 block discarded – undo
184 184
 }
185 185
 
186 186
 if ($add_type == 'multiple') {
187
-    $link_add_type_unique = '<a href="' . api_get_self() . '?add_type=unique&access_url_id=' . $access_url_id . '">' . get_lang('SessionAddTypeUnique') . '</a>';
187
+    $link_add_type_unique = '<a href="'.api_get_self().'?add_type=unique&access_url_id='.$access_url_id.'">'.get_lang('SessionAddTypeUnique').'</a>';
188 188
     $link_add_type_multiple = get_lang('SessionAddTypeMultiple');
189 189
 } else {
190 190
     $link_add_type_unique = get_lang('SessionAddTypeUnique');
191
-    $link_add_type_multiple = '<a href="' . api_get_self() . '?add_type=multiple&access_url_id=' . $access_url_id . '">' . get_lang('SessionAddTypeMultiple') . '</a>';
191
+    $link_add_type_multiple = '<a href="'.api_get_self().'?add_type=multiple&access_url_id='.$access_url_id.'">'.get_lang('SessionAddTypeMultiple').'</a>';
192 192
 }
193 193
 $url_list = UrlManager::get_url_data();
194 194
 ?>
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 <form name="formulaire" method="post" action="<?php echo api_get_self(); ?>" style="margin:0px;" <?php if ($ajax_search) {
201 201
     echo ' onsubmit="valide();"';
202 202
 } ?> >
203
-    <?php echo get_lang('SelectUrl') . ' : '; ?>
203
+    <?php echo get_lang('SelectUrl').' : '; ?>
204 204
 <select name="access_url_id" onchange="javascript:send();">
205 205
 <option value="0"> <?php echo get_lang('SelectUrl') ?></option>
206 206
         <?php
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     <td>
237 237
     <h3>
238 238
     <?php
239
-        $total_users = count($nosessionUsersList) +  count($sessionUsersList);
239
+        $total_users = count($nosessionUsersList) + count($sessionUsersList);
240 240
         echo get_lang('TotalAvailableUsers').' '.$total_users;
241 241
     ?>
242 242
     </h3>
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
   <td align="center"><b><?php echo get_lang('UserListInPlatform') ?> : <?php echo count($nosessionUsersList); ?></b>
247 247
   </td>
248 248
   <td></td>
249
-  <td align="center"><b><?php echo get_lang('UserListIn') . ' ' . $url_selected; ?> : <?php echo count($sessionUsersList); ?></b></td>
249
+  <td align="center"><b><?php echo get_lang('UserListIn').' '.$url_selected; ?> : <?php echo count($sessionUsersList); ?></b></td>
250 250
 </tr>
251 251
 <tr>
252 252
   <td align="center">
@@ -306,9 +306,9 @@  discard block
 block discarded – undo
306 306
 		<br />
307 307
         <?php
308 308
         if (isset($_GET['add'])) {
309
-            echo '<button class="save" type="button" onclick="valide()" >' . get_lang('AddUsersToURL') . '</button>';
309
+            echo '<button class="save" type="button" onclick="valide()" >'.get_lang('AddUsersToURL').'</button>';
310 310
         } else {
311
-            echo '<button class="save" type="button" onclick="valide()" >' . get_lang('EditUsersToURL') . '</button>';
311
+            echo '<button class="save" type="button" onclick="valide()" >'.get_lang('EditUsersToURL').'</button>';
312 312
         }
313 313
         ?>
314 314
 	</td>
Please login to merge, or discard this patch.
main/admin/add_sessions_to_promotion.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 require_once '../inc/global.inc.php';
11 11
 
12 12
 $xajax = new xajax();
13
-$xajax->registerFunction ('search_sessions');
13
+$xajax->registerFunction('search_sessions');
14 14
 
15 15
 // setting the section (for the tabs)
16 16
 $this_section = SECTION_PLATFORM_ADMIN;
@@ -19,13 +19,13 @@  discard block
 block discarded – undo
19 19
 api_protect_admin_script(true);
20 20
 
21 21
 // setting breadcrumbs
22
-$interbreadcrumb[]=array('url' => 'index.php','name' => get_lang('PlatformAdmin'));
23
-$interbreadcrumb[]=array('url' => 'career_dashboard.php','name' => get_lang('CareersAndPromotions'));
22
+$interbreadcrumb[] = array('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
23
+$interbreadcrumb[] = array('url' => 'career_dashboard.php', 'name' => get_lang('CareersAndPromotions'));
24 24
 
25 25
 // Setting the name of the tool
26 26
 $tool_name = get_lang('SubscribeSessionsToPromotions');
27 27
 $add_type = 'multiple';
28
-if (isset($_REQUEST['add_type']) && $_REQUEST['add_type']!=''){
28
+if (isset($_REQUEST['add_type']) && $_REQUEST['add_type'] != '') {
29 29
     $add_type = Security::remove_XSS($_REQUEST['add_type']);
30 30
 }
31 31
 
@@ -67,14 +67,14 @@  discard block
 block discarded – undo
67 67
 
68 68
 $form_sent  = 0;
69 69
 $errorMsg   = '';
70
-$users      =$sessions=array();
70
+$users      = $sessions = array();
71 71
 $promotion = new Promotion();
72 72
 $id = intval($_GET['id']);
73 73
 if (isset($_POST['form_sent']) && $_POST['form_sent']) {
74 74
     $form_sent = $_POST['form_sent'];
75 75
     $session_in_promotion_posted = $_POST['session_in_promotion_name'];
76 76
     if (!is_array($session_in_promotion_posted)) {
77
-        $session_in_promotion_posted=array();
77
+        $session_in_promotion_posted = array();
78 78
     }
79 79
     if ($form_sent == 1) {
80 80
         // Added a parameter to send emails when registering a user
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 $promotion_data = $promotion->get($id);
88 88
 $session_list = SessionManager::get_sessions_list(array(), array('name'));
89
-$session_not_in_promotion = $session_in_promotion= array();
89
+$session_not_in_promotion = $session_in_promotion = array();
90 90
 
91 91
 if (!empty($session_list)) {
92 92
     foreach ($session_list as $session) {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
             }
123 123
         }
124 124
         $return .= '</select>';
125
-        $xajax_response -> addAssign('ajax_list_multiple','innerHTML',api_utf8_encode($return));
125
+        $xajax_response -> addAssign('ajax_list_multiple', 'innerHTML', api_utf8_encode($return));
126 126
     }
127 127
 
128 128
     return $xajax_response;
@@ -140,14 +140,14 @@  discard block
 block discarded – undo
140 140
 }
141 141
 
142 142
 echo '<div class="actions">';
143
-echo '<a href="promotions.php">'.Display::return_icon('back.png',get_lang('Back'),'',ICON_SIZE_MEDIUM).'</a>';
143
+echo '<a href="promotions.php">'.Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM).'</a>';
144 144
 echo '</div>';
145 145
 ?>
146 146
 
147
-<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?id=<?php echo $id; if(!empty($_GET['add'])) echo '&add=true' ; ?>" style="margin:0px;" <?php if($ajax_search){echo ' onsubmit="valide();"';}?>>
147
+<form name="formulaire" method="post" action="<?php echo api_get_self(); ?>?id=<?php echo $id; if (!empty($_GET['add'])) echo '&add=true'; ?>" style="margin:0px;" <?php if ($ajax_search) {echo ' onsubmit="valide();"'; }?>>
148 148
 <?php echo '<legend>'.$tool_name.' '.$promotion_data['name'].'</legend>';
149 149
 
150
-if ($add_type=='multiple') {
150
+if ($add_type == 'multiple') {
151 151
     if (is_array($extra_field_list)) {
152 152
         if (is_array($new_field_list) && count($new_field_list) > 0) {
153 153
             echo '<h3>'.get_lang('FilterUsers').'</h3>';
@@ -157,9 +157,9 @@  discard block
 block discarded – undo
157 157
                 echo '&nbsp;<select name="'.$varname.'">';
158 158
                 echo '<option value="0">--'.get_lang('Select').'--</option>';
159 159
                 foreach ($new_field['data'] as $option) {
160
-                    $checked='';
160
+                    $checked = '';
161 161
                     if (isset($_POST[$varname])) {
162
-                        if ($_POST[$varname]==$option[1]) {
162
+                        if ($_POST[$varname] == $option[1]) {
163 163
                             $checked = 'selected="true"';
164 164
                         }
165 165
                     }
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
   <td align="center"><b><?php echo get_lang('SessionsInPromotion') ?> :</b></td>
190 190
 </tr>
191 191
 
192
-<?php if ($add_type=='multiple') { ?>
192
+<?php if ($add_type == 'multiple') { ?>
193 193
 <tr>
194 194
 <td align="center">
195 195
 <?php echo get_lang('FirstLetterSessions'); ?> :
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
   <td align="center">
208 208
   <div id="content_source">
209 209
       <?php
210
-      if (!($add_type=='multiple')) {
210
+      if (!($add_type == 'multiple')) {
211 211
         ?>
212 212
         <input type="text" id="user_to_add" onkeyup="xajax_search_users(this.value,'single')" />
213 213
         <div id="ajax_list_users_single"></div>
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
       } else {
216 216
       ?>
217 217
       <div id="ajax_list_multiple">
218
-        <?php echo Display::select('session_not_in_promotion_name',$session_not_in_promotion, '',array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'session_not_in_promotion','size'=>'15px'),false); ?>
218
+        <?php echo Display::select('session_not_in_promotion_name', $session_not_in_promotion, '', array('style'=>'width:360px', 'multiple'=>'multiple', 'id'=>'session_not_in_promotion', 'size'=>'15px'), false); ?>
219 219
       </div>
220 220
     <?php
221 221
       }
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
         'session_in_promotion_name[]',
251 251
         $session_in_promotion,
252 252
         '',
253
-        array('style'=>'width:360px', 'multiple'=>'multiple','id'=>'session_in_promotion','size'=>'15px'),
253
+        array('style'=>'width:360px', 'multiple'=>'multiple', 'id'=>'session_in_promotion', 'size'=>'15px'),
254 254
         false
255 255
     );
256 256
     unset($sessionUsersList);
Please login to merge, or discard this patch.
main/admin/user_move_stats.php 1 patch
Spacing   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -8,11 +8,11 @@  discard block
 block discarded – undo
8 8
 
9 9
 $cidReset = true;
10 10
 require_once '../inc/global.inc.php';
11
-$this_section=SECTION_PLATFORM_ADMIN;
11
+$this_section = SECTION_PLATFORM_ADMIN;
12 12
 
13 13
 api_protect_admin_script();
14 14
 
15
-$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
15
+$interbreadcrumb[] = array("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
16 16
 $debug = 0;
17 17
 
18 18
 function compare_data($result_message) {
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         if (is_array($data)) {
32 32
             foreach ($data as $id => $item) {
33 33
 
34
-                if ($table == 'TRACK_E_EXERCISES' || $table == 'TRACK_E_EXERCISES_IN_LP' ) {
34
+                if ($table == 'TRACK_E_EXERCISES' || $table == 'TRACK_E_EXERCISES_IN_LP') {
35 35
                     echo "<br /><h3>".get_lang('Attempt')." #$id</h3>";
36 36
                     echo '<h3>';
37 37
                     echo get_lang('Exercise').' #'.$item['exe_exo_id'];
@@ -42,17 +42,17 @@  discard block
 block discarded – undo
42 42
                         echo '</h3>';
43 43
                     }
44 44
                     //Process data
45
-                    $array = array('exe_date' =>get_lang('Date'), 'exe_result' =>get_lang('Score'),'exe_weighting'=>get_lang('Weighting'));
46
-                    foreach($item as $key=> $value) {
47
-                        if (in_array($key,array_keys($array))) {
45
+                    $array = array('exe_date' =>get_lang('Date'), 'exe_result' =>get_lang('Score'), 'exe_weighting'=>get_lang('Weighting'));
46
+                    foreach ($item as $key=> $value) {
47
+                        if (in_array($key, array_keys($array))) {
48 48
                             $key = $array[$key];
49 49
                             echo "$key =  $value <br />";
50 50
                         }
51 51
                     }
52
-                } else  {
52
+                } else {
53 53
                     echo "<br /><h3>".get_lang('Id')." #$id</h3>";
54 54
                     //process data
55
-                    foreach($item as $key=> $value) {
55
+                    foreach ($item as $key=> $value) {
56 56
                         echo "$key =  $value <br />";
57 57
                     }
58 58
                 }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             $new_session_id         = intval($_REQUEST['session_id']);
77 77
 
78 78
             //if (!isset($_REQUEST['view_stat'])) {
79
-            if ($origin_session_id == $new_session_id ) {
79
+            if ($origin_session_id == $new_session_id) {
80 80
                 echo get_lang('CantMoveToTheSameSession');
81 81
                 exit;
82 82
             }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             $result_message_compare = array();
97 97
 
98 98
             $update_database = true;
99
-            if (isset($_REQUEST['view_stat']) && $_REQUEST['view_stat'] == 1 ) {
99
+            if (isset($_REQUEST['view_stat']) && $_REQUEST['view_stat'] == 1) {
100 100
                 $update_database = false;
101 101
             }
102 102
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                 if (empty($result) || !in_array($user_id, array_keys($result))) {
109 109
                     if ($debug) echo 'User added to the session';
110 110
                     //Registering user to the new session
111
-                    SessionManager::suscribe_users_to_session($new_session_id,array($user_id),false);
111
+                    SessionManager::suscribe_users_to_session($new_session_id, array($user_id), false);
112 112
                 }
113 113
 
114 114
                 //Begin with the import process
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                 $TBL_LP_VIEW                = Database::get_course_table(TABLE_LP_VIEW);
124 124
                 $TBL_NOTEBOOK               = Database::get_course_table(TABLE_NOTEBOOK);
125 125
                 $TBL_STUDENT_PUBLICATION    = Database::get_course_table(TABLE_STUDENT_PUBLICATION);
126
-                $TBL_STUDENT_PUBLICATION_ASSIGNMENT    = Database::get_course_table(TABLE_STUDENT_PUBLICATION_ASSIGNMENT);
126
+                $TBL_STUDENT_PUBLICATION_ASSIGNMENT = Database::get_course_table(TABLE_STUDENT_PUBLICATION_ASSIGNMENT);
127 127
                 $TBL_ITEM_PROPERTY          = Database::get_course_table(TABLE_ITEM_PROPERTY);
128 128
 
129 129
                 $TBL_DROPBOX_FILE = Database::get_course_table(TABLE_DROPBOX_FILE);
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
                         WHERE c_id = $course_id AND  session_id = $origin_session_id AND exe_user_id = $user_id ";
138 138
                 $res = Database::query($sql);
139 139
                 $list = array();
140
-                while($row = Database::fetch_array($res,'ASSOC')) {
141
-                    $list[$row['exe_id']]= $row;
140
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
141
+                    $list[$row['exe_id']] = $row;
142 142
                 }
143 143
 
144 144
                 if (!empty($list))
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
                             $res = Database::query($sql);
149 149
                             $result_message[$TABLETRACK_EXERCICES]++;
150 150
                         } else {
151
-                            if(!empty($data['orig_lp_id']) &&  !empty($data['orig_lp_item_id'])) {
151
+                            if (!empty($data['orig_lp_id']) && !empty($data['orig_lp_item_id'])) {
152 152
                                 $result_message['TRACK_E_EXERCISES'][$exe_id] = $data;
153 153
                             } else {
154 154
                                 $result_message['TRACK_E_EXERCISES_IN_LP'][$exe_id] = $data;
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
                             WHERE c_id = $course_id AND  session_id = $new_session_id AND exe_user_id = $user_id ";
165 165
                     $res = Database::query($sql);
166 166
                     $list = array();
167
-                    while($row = Database::fetch_array($res,'ASSOC')) {
168
-                        $list[$row['exe_id']]= $row;
167
+                    while ($row = Database::fetch_array($res, 'ASSOC')) {
168
+                        $list[$row['exe_id']] = $row;
169 169
                     }
170 170
 
171 171
                     if (!empty($list))
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
                                 $res = Database::query($sql);
176 176
                                 $result_message[$TABLETRACK_EXERCICES]++;
177 177
                             } else {
178
-                                if(!empty($data['orig_lp_id']) &&  !empty($data['orig_lp_item_id'])) {
178
+                                if (!empty($data['orig_lp_id']) && !empty($data['orig_lp_item_id'])) {
179 179
                                     $result_message_compare['TRACK_E_EXERCISES'][$exe_id] = $data;
180 180
                                 } else {
181 181
                                     $result_message_compare['TRACK_E_EXERCISES_IN_LP'][$exe_id] = $data;
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
                         WHERE c_id  = $course_id AND session_id = $origin_session_id  AND user_id = $user_id ";
193 193
                 $res = Database::query($sql);
194 194
                 $list = array();
195
-                while($row = Database::fetch_array($res,'ASSOC')) {
195
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
196 196
                     $list[$row['course_access_id']] = $row;
197 197
                 }
198 198
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                         AND access_user_id = $user_id ";
215 215
                 $res = Database::query($sql);
216 216
                 $list = array();
217
-                while($row = Database::fetch_array($res,'ASSOC')) {
217
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
218 218
                     $list[] = $row['access_id'];
219 219
                 }
220 220
                 if (!empty($list))
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
                 $flat_list = $lp_list->get_flat_list();
241 241
 
242 242
                 $list = array();
243
-                while($row = Database::fetch_array($res,'ASSOC')) {
243
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
244 244
                     //Checking if the LP exist in the new session
245 245
                     if (in_array($row['lp_id'], array_keys($flat_list))) {
246 246
                         $list[$row['id']] = $row;
@@ -257,8 +257,8 @@  discard block
 block discarded – undo
257 257
                             $result_message[$TBL_LP_VIEW]++;
258 258
                         } else {
259 259
                             //Getting all information of that lp_item_id
260
-                            $score    = Tracking::get_avg_student_score($user_id, $origin_course_code, array($data['lp_id']),$origin_session_id);
261
-                            $progress = Tracking::get_avg_student_progress($user_id, $origin_course_code, array($data['lp_id']),$origin_session_id);
260
+                            $score    = Tracking::get_avg_student_score($user_id, $origin_course_code, array($data['lp_id']), $origin_session_id);
261
+                            $progress = Tracking::get_avg_student_progress($user_id, $origin_course_code, array($data['lp_id']), $origin_session_id);
262 262
                             $result_message['LP_VIEW'][$data['lp_id']] = array('score' => $score, 'progress' =>$progress);
263 263
                         }
264 264
                     }
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
                     $flat_list = $lp_list->get_flat_list();
275 275
 
276 276
                     $list = array();
277
-                    while($row = Database::fetch_array($res,'ASSOC')) {
277
+                    while ($row = Database::fetch_array($res, 'ASSOC')) {
278 278
                         //Checking if the LP exist in the new session
279 279
                         if (in_array($row['lp_id'], array_keys($flat_list))) {
280 280
                             $list[$row['id']] = $row;
@@ -283,8 +283,8 @@  discard block
 block discarded – undo
283 283
                     if (!empty($list))
284 284
                         foreach ($list as $id=>$data) {
285 285
                             //Getting all information of that lp_item_id
286
-                            $score    = Tracking::get_avg_student_score($user_id, $origin_course_code,        array($data['lp_id']), $new_session_id);
287
-                            $progress = Tracking::get_avg_student_progress($user_id, $origin_course_code,     array($data['lp_id']), $new_session_id);
286
+                            $score    = Tracking::get_avg_student_score($user_id, $origin_course_code, array($data['lp_id']), $new_session_id);
287
+                            $progress = Tracking::get_avg_student_progress($user_id, $origin_course_code, array($data['lp_id']), $new_session_id);
288 288
                             $result_message_compare['LP_VIEW'][$data['lp_id']] = array('score' => $score, 'progress' =>$progress);
289 289
                         }
290 290
                 }
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
                 //calendar_event_attachment no problems no session_id
296 296
                 $sql = "SELECT ref FROM $TBL_ITEM_PROPERTY WHERE tool = 'calendar_event' AND insert_user_id = $user_id AND c_id = $course_id ";
297 297
                 $res = Database::query($sql);
298
-                while($row = Database::fetch_array($res,'ASSOC')) {
298
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
299 299
                     $id = $row['ref'];
300 300
                     if ($update_database) {
301 301
                         $sql = "UPDATE $TBL_AGENDA SET session_id = $new_session_id WHERE c_id = $course_id AND id = $id ";
@@ -315,24 +315,24 @@  discard block
 block discarded – undo
315 315
                 $sql = "SELECT ref FROM $TBL_ITEM_PROPERTY WHERE tool = 'work' AND insert_user_id = $user_id AND c_id = $course_id";
316 316
                 if ($debug) echo $sql;
317 317
                 $res = Database::query($sql);
318
-                while($row = Database::fetch_array($res,'ASSOC')) {
318
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
319 319
                     $id = $row['ref'];
320 320
                     $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION WHERE id = $id AND session_id = $origin_session_id AND c_id = $course_id";
321 321
                     if ($debug) var_dump($sql);
322 322
                     $sub_res = Database::query($sql);
323
-                    if (Database::num_rows($sub_res) > 0 ) {
324
-                        $data = Database::fetch_array($sub_res,'ASSOC');
323
+                    if (Database::num_rows($sub_res) > 0) {
324
+                        $data = Database::fetch_array($sub_res, 'ASSOC');
325 325
                         if ($debug) var_dump($data);
326 326
                         $parent_id = $data['parent_id'];
327 327
                         if (isset($data['parent_id']) && !empty($data['parent_id'])) {
328 328
                             $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION WHERE id = $parent_id AND c_id = $course_id";
329 329
                             $select_res     = Database::query($sql);
330
-                            $parent_data    = Database::fetch_array($select_res,'ASSOC');
330
+                            $parent_data    = Database::fetch_array($select_res, 'ASSOC');
331 331
                             if ($debug)     var_dump($parent_data);
332 332
 
333 333
                             $sys_course_path = api_get_path(SYS_COURSE_PATH);
334
-                            $course_dir = $sys_course_path . $course_info['path'];
335
-                            $base_work_dir = $course_dir . '/work';
334
+                            $course_dir = $sys_course_path.$course_info['path'];
335
+                            $base_work_dir = $course_dir.'/work';
336 336
                             require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
337 337
 
338 338
                             //Creating the parent folder in the session if does not exists already
@@ -347,8 +347,8 @@  discard block
 block discarded – undo
347 347
                             $sub_res = Database::query($sql);
348 348
                             $num_rows = Database::num_rows($sub_res);
349 349
 
350
-                            if ($num_rows > 0 ) {
351
-                                $new_result = Database::fetch_array($sub_res,'ASSOC');
350
+                            if ($num_rows > 0) {
351
+                                $new_result = Database::fetch_array($sub_res, 'ASSOC');
352 352
                                 $created_dir    = $new_result['url'];
353 353
                                 $new_parent_id  = $new_result['id'];
354 354
                             } else {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
                                     $created_dir = '/'.$created_dir;
361 361
                                     $now = api_get_utc_datetime();
362 362
                                     //Creating directory
363
-                                    $sql_add_publication = "INSERT INTO " . $TBL_STUDENT_PUBLICATION . " SET
363
+                                    $sql_add_publication = "INSERT INTO ".$TBL_STUDENT_PUBLICATION." SET
364 364
                                            url         = '".$created_dir."',
365 365
 	                                       c_id        = $course_id,
366 366
 	                                       title        = '".$parent_data['title']."',
@@ -370,12 +370,12 @@  discard block
 block discarded – undo
370 370
 	                                       accepted     = '1',
371 371
 	                                       filetype     = 'folder',
372 372
 	                                       sent_date    = '".$now."',
373
-	                                       qualification    = '".$parent_data['qualification'] ."',
373
+	                                       qualification    = '".$parent_data['qualification']."',
374 374
 	                                       parent_id    = '',
375 375
 	                                       qualificator_id  = '',
376 376
 	                                       date_of_qualification    = '0000-00-00 00:00:00',
377 377
 	                                       session_id   = ".$new_session_id;
378
-                                    $rest_insert     = Database::query($sql_add_publication);
378
+                                    $rest_insert = Database::query($sql_add_publication);
379 379
                                     if ($debug) echo ($sql_add_publication);
380 380
                                     // add the directory
381 381
                                     $id = Database::insert_id();
@@ -390,11 +390,11 @@  discard block
 block discarded – undo
390 390
                             //Creating student_publication_assignment if exists
391 391
                             $sql = "SELECT * FROM $TBL_STUDENT_PUBLICATION_ASSIGNMENT WHERE publication_id = $parent_id AND c_id = $course_id";
392 392
                             if ($debug) var_dump($sql);
393
-                            $rest_select     = Database::query($sql);
394
-                            if (Database::num_rows($rest_select) > 0 ) {
393
+                            $rest_select = Database::query($sql);
394
+                            if (Database::num_rows($rest_select) > 0) {
395 395
                                 if ($update_database) {
396
-                                    $assignment_data = Database::fetch_array($rest_select,'ASSOC');
397
-                                    $sql_add_publication = "INSERT INTO " . $TBL_STUDENT_PUBLICATION_ASSIGNMENT . " SET
396
+                                    $assignment_data = Database::fetch_array($rest_select, 'ASSOC');
397
+                                    $sql_add_publication = "INSERT INTO ".$TBL_STUDENT_PUBLICATION_ASSIGNMENT." SET
398 398
                                     	c_id = '$course_id',
399 399
                                        expires_on          = '".$assignment_data['expires_on']."',
400 400
                                        ends_on              = '".$assignment_data['ends_on']."',
@@ -402,15 +402,15 @@  discard block
 block discarded – undo
402 402
                                        enable_qualification = '".$assignment_data['enable_qualification']."',
403 403
                                        publication_id       = '".$new_parent_id."'";
404 404
                                     if ($debug) echo $sql_add_publication;
405
-                                    $rest_select     = Database::query($sql_add_publication);
405
+                                    $rest_select = Database::query($sql_add_publication);
406 406
                                     $id = Database::insert_id();
407 407
 
408
-                                    $sql_update = "UPDATE " . $TBL_STUDENT_PUBLICATION . " SET " .
408
+                                    $sql_update = "UPDATE ".$TBL_STUDENT_PUBLICATION." SET ".
409 409
                                         "has_properties         = '".$id."',
410 410
                                        view_properties    = '1'
411 411
                                        WHERE id   = ".$new_parent_id;
412 412
                                     if ($debug) echo $sql_update;
413
-                                    $rest_update     = Database::query($sql_update);
413
+                                    $rest_update = Database::query($sql_update);
414 414
 
415 415
 
416 416
                                     if ($debug) var_dump($sql_update);
@@ -423,21 +423,21 @@  discard block
 block discarded – undo
423 423
 
424 424
                             if ($update_database) {
425 425
                                 //Creating a new work
426
-                                $sql_add_publication = "INSERT INTO " . $TBL_STUDENT_PUBLICATION . " SET " .
427
-                                    "url         = '" . $new_url . "',
426
+                                $sql_add_publication = "INSERT INTO ".$TBL_STUDENT_PUBLICATION." SET ".
427
+                                    "url         = '".$new_url."',
428 428
                                                c_id        = $course_id,
429
-                                               title       = '" . $data['title']. "',
430
-                                               description = '" . $data['description'] . " file moved',
431
-                                               author      = '" . $data['author'] . "',
432
-                                               active       = '" . $data['active']. "',
433
-                                               accepted     = '" . $data['accepted']. "',
434
-                                               post_group_id = " . $data['post_group_id'] . ",
435
-                                               sent_date    =  '".$data['sent_date'] ."',
436
-                                               parent_id    =  ".$new_parent_id ." ,
429
+                                               title       = '".$data['title']."',
430
+                                               description = '" . $data['description']." file moved',
431
+                                               author      = '" . $data['author']."',
432
+                                               active       = '" . $data['active']."',
433
+                                               accepted     = '" . $data['accepted']."',
434
+                                               post_group_id = " . $data['post_group_id'].",
435
+                                               sent_date    =  '".$data['sent_date']."',
436
+                                               parent_id    =  ".$new_parent_id." ,
437 437
                                                session_id = ".$new_session_id;
438 438
 
439 439
                                 if ($debug) echo $sql_add_publication;
440
-                                $rest_insert     = Database::query($sql_add_publication);
440
+                                $rest_insert = Database::query($sql_add_publication);
441 441
                                 if ($debug) var_dump($rest_insert);
442 442
                                 $id = Database::insert_id();
443 443
                                 api_item_property_update($course_info, 'work', $id, 'DocumentAdded', $user_id);
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
                                         unlink($full_file_name);
454 454
                                         $sql = "DELETE FROM $TBL_STUDENT_PUBLICATION WHERE id= ".$data['id'];
455 455
                                         if ($debug) var_dump($sql);
456
-                                        $result_delete     = Database::query($sql);
456
+                                        $result_delete = Database::query($sql);
457 457
                                         api_item_property_update($course_info, 'work', $data['id'], 'DocumentDeleted', api_get_user_id());
458 458
                                     }
459 459
                                 }
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                 $sql = "SELECT id FROM $TBL_DROPBOX_FILE WHERE uploader_id = $user_id AND session_id = $origin_session_id AND c_id = $course_id";
471 471
                 if ($debug) var_dump($sql);
472 472
                 $res = Database::query($sql);
473
-                while($row = Database::fetch_array($res,'ASSOC')) {
473
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
474 474
                     $id = $row['id'];
475 475
                     if ($update_database) {
476 476
                         $sql = "UPDATE $TBL_DROPBOX_FILE SET session_id = $new_session_id WHERE c_id = $course_id AND id = $id";
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
                         WHERE user_id = $user_id AND session_id = $origin_session_id AND course = '$origin_course_code' AND c_id = $course_id";
495 495
                 if ($debug) var_dump($sql);
496 496
                 $res = Database::query($sql);
497
-                while($row = Database::fetch_array($res,'ASSOC')) {
497
+                while ($row = Database::fetch_array($res, 'ASSOC')) {
498 498
                     $id = $row['notebook_id'];
499 499
                     if ($update_database) {
500 500
                         $sql = "UPDATE $TBL_NOTEBOOK SET session_id = $new_session_id WHERE c_id = $course_id AND notebook_id = $id";
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
                     echo '<tr>';
519 519
                     echo '<td width="50%" valign="top">';
520 520
 
521
-                    if ($origin_session_id == 0 ) {
521
+                    if ($origin_session_id == 0) {
522 522
                         echo '<h4>'.get_lang('OriginCourse').'</h4>';
523 523
                     } else {
524 524
                         echo '<h4>'.get_lang('OriginSession').' #'.$origin_session_id.'</h4>';
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
                     compare_data($result_message);
527 527
                     echo '</td>';
528 528
                     echo '<td width="50%" valign="top">';
529
-                    if ($new_session_id == 0 ) {
529
+                    if ($new_session_id == 0) {
530 530
                         echo '<h4>'.get_lang('DestinyCourse').'</h4>';
531 531
                     } else {
532 532
                         echo '<h4>'.get_lang('DestinySession').' #'.$new_session_id.'</h4>';
@@ -591,8 +591,8 @@  discard block
 block discarded – undo
591 591
 
592 592
     $res = Database::query($sql);
593 593
     $course_list = array();
594
-    while ($row = Database::fetch_array($res,'ASSOC')) {
595
-        $course_list []= $row;
594
+    while ($row = Database::fetch_array($res, 'ASSOC')) {
595
+        $course_list [] = $row;
596 596
     }
597 597
     return $course_list;
598 598
 }
@@ -600,9 +600,9 @@  discard block
 block discarded – undo
600 600
 
601 601
 Display::display_header(get_lang('MoveUserStats'));
602 602
 echo  '<div class="actions">';
603
-echo '<a href="../admin/index.php">'.Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'),'',ICON_SIZE_MEDIUM).'</a>';
603
+echo '<a href="../admin/index.php">'.Display::return_icon('back.png', get_lang('BackTo').' '.get_lang('PlatformAdmin'), '', ICON_SIZE_MEDIUM).'</a>';
604 604
 echo '</div>';
605
-echo Display::display_normal_message(get_lang('CompareUserResultsBetweenCoursesAndCoursesInASession'),false);
605
+echo Display::display_normal_message(get_lang('CompareUserResultsBetweenCoursesAndCoursesInASession'), false);
606 606
 
607 607
 
608 608
 // Some pagination
@@ -612,19 +612,19 @@  discard block
 block discarded – undo
612 612
 }
613 613
 $default = 20;
614 614
 $count          = UserManager::get_number_of_users();
615
-$nro_pages      = round($count/$default) + 1;
616
-$begin          = $default* ($page - 1);
617
-$end            = $default*$page;
615
+$nro_pages      = round($count / $default) + 1;
616
+$begin          = $default * ($page - 1);
617
+$end            = $default * $page;
618 618
 
619 619
 $navigation     = "$begin - $end  / $count<br />";
620 620
 
621 621
 if ($page > 1) {
622
-    $navigation .='<a href="'.api_get_self().'?page='.($page - 1).'">'.get_lang('Previous').'</a>';
622
+    $navigation .= '<a href="'.api_get_self().'?page='.($page - 1).'">'.get_lang('Previous').'</a>';
623 623
 } else {
624 624
     $navigation .= get_lang('Previous');
625 625
 }
626 626
 $navigation .= '&nbsp;';
627
-$page ++;
627
+$page++;
628 628
 if ($page < $nro_pages)
629 629
     $navigation .= '<a href="'.api_get_self().'?page='.$page.'">'.get_lang('Next').'</a>';
630 630
 else
@@ -632,11 +632,11 @@  discard block
 block discarded – undo
632 632
 
633 633
 echo $navigation;
634 634
 $user_list      = UserManager::get_user_list(array(), array(), $begin, $default);
635
-$session_list   = SessionManager::get_sessions_list(array(),array('name'));
635
+$session_list   = SessionManager::get_sessions_list(array(), array('name'));
636 636
 $options = '';
637 637
 $options .= '<option value="0">--'.get_lang('SelectASession').'--</option>';
638 638
 foreach ($session_list as $session_data) {
639
-    $my_session_list[$session_data['id']] =$session_data['name'];
639
+    $my_session_list[$session_data['id']] = $session_data['name'];
640 640
     $options .= '<option value="'.$session_data['id'].'">'.$session_data['name'].'</option>';
641 641
 }
642 642
 
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
             $course['name'] = $courseInfo['name'];
686 686
         }
687 687
 
688
-        $course_list  = $course_list_registered;
688
+        $course_list = $course_list_registered;
689 689
 
690 690
         echo '<div>';
691 691
         echo '<table class="data_table">';
@@ -720,7 +720,7 @@  discard block
 block discarded – undo
720 720
                     $session_id = $course['id_session'];
721 721
                 }
722 722
                 echo '<td>';
723
-                echo get_lang('MoveTo');    echo '<br />';
723
+                echo get_lang('MoveTo'); echo '<br />';
724 724
                 $unique_id = uniqid();
725 725
                 $combinations[$unique_id] = array('course_code' =>$course_code, 'session_id'=>$session_id);
726 726
 
Please login to merge, or discard this patch.
main/admin/skill_badge_list.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,18 +29,18 @@
 block discarded – undo
29 29
 
30 30
 $interbreadcrumb = array(
31 31
     array(
32
-        'url' => api_get_path(WEB_CODE_PATH) . 'admin/index.php',
32
+        'url' => api_get_path(WEB_CODE_PATH).'admin/index.php',
33 33
         'name' => get_lang('Administration')
34 34
     ),
35 35
     array(
36
-        'url' => api_get_path(WEB_CODE_PATH) . 'admin/skill_badge.php',
36
+        'url' => api_get_path(WEB_CODE_PATH).'admin/skill_badge.php',
37 37
         'name' => get_lang('Badges')
38 38
     )
39 39
 );
40 40
 
41 41
 $toolbar = Display::toolbarButton(
42 42
     get_lang('ManageSkills'),
43
-    api_get_path(WEB_CODE_PATH) . 'admin/skill_list.php',
43
+    api_get_path(WEB_CODE_PATH).'admin/skill_list.php',
44 44
     'list',
45 45
     'primary',
46 46
     ['title' => get_lang('ManageSkills')]
Please login to merge, or discard this patch.
main/admin/course_edit.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         WHERE
43 43
             course_user.status='1' AND
44 44
             course_user.user_id=user.user_id AND
45
-            course_user.c_id ='" . $courseId . "'" .
45
+            course_user.c_id ='".$courseId."'".
46 46
         $order_clause;
47 47
 $res = Database::query($sql);
48 48
 $course_teachers = array();
@@ -58,18 +58,18 @@  discard block
 block discarded – undo
58 58
             INNER JOIN $access_url_rel_user_table url_rel_user
59 59
             ON (u.user_id=url_rel_user.user_id)
60 60
             WHERE
61
-                url_rel_user.access_url_id=" . api_get_current_access_url_id() . " AND
61
+                url_rel_user.access_url_id=".api_get_current_access_url_id()." AND
62 62
                 status=1" . $order_clause;
63 63
 } else {
64 64
     $sql = "SELECT user_id, lastname, firstname
65
-            FROM $table_user WHERE status='1'" . $order_clause;
65
+            FROM $table_user WHERE status='1'".$order_clause;
66 66
 }
67 67
 $courseInfo['tutor_name'] = null;
68 68
 
69 69
 $res = Database::query($sql);
70 70
 $teachers = array();
71 71
 $allTeachers = array();
72
-$platform_teachers[0] = '-- ' . get_lang('NoManager') . ' --';
72
+$platform_teachers[0] = '-- '.get_lang('NoManager').' --';
73 73
 while ($obj = Database::fetch_object($res)) {
74 74
     $allTeachers[$obj->user_id] = api_get_person_name($obj->firstname, $obj->lastname);
75 75
     if (!array_key_exists($obj->user_id, $course_teachers)) {
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
 // Case where there is no teacher in the course
89 89
 if (count($course_teachers) == 0) {
90
-    $sql = 'SELECT tutor_name FROM ' . $course_table . ' WHERE code="' . $course_code . '"';
90
+    $sql = 'SELECT tutor_name FROM '.$course_table.' WHERE code="'.$course_code.'"';
91 91
     $res = Database::query($sql);
92 92
     $tutor_name = Database::result($res, 0, 0);
93 93
     $courseInfo['tutor_name'] = array_search($tutor_name, $platform_teachers);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
 // Build the form
97 97
 $form = new FormValidator('update_course', 'post', api_get_self().'?id='.$courseId);
98
-$form->addElement('header', get_lang('Course') . '  #' . $courseInfo['real_id'] . ' ' . $course_code);
98
+$form->addElement('header', get_lang('Course').'  #'.$courseInfo['real_id'].' '.$course_code);
99 99
 $form->addElement('hidden', 'code', $course_code);
100 100
 
101 101
 //title
@@ -151,20 +151,20 @@  discard block
 block discarded – undo
151 151
             }
152 152
         }
153 153
 
154
-        $groupName = 'session_coaches[' . $sessionId . ']';
155
-        $platformTeacherId = 'platform_teachers_by_session_' . $sessionId;
156
-        $coachId = 'coaches_by_session_' . $sessionId;
154
+        $groupName = 'session_coaches['.$sessionId.']';
155
+        $platformTeacherId = 'platform_teachers_by_session_'.$sessionId;
156
+        $coachId = 'coaches_by_session_'.$sessionId;
157 157
 
158 158
         $platformTeacherName = 'platform_teachers_by_session';
159 159
         $coachName = 'coaches_by_session';
160 160
 
161
-        $sessionUrl = api_get_path(WEB_CODE_PATH) . 'session/resume_session.php?id_session=' . $sessionId;
161
+        $sessionUrl = api_get_path(WEB_CODE_PATH).'session/resume_session.php?id_session='.$sessionId;
162 162
         $form->addElement(
163 163
             'advmultiselect',
164 164
             $groupName,
165 165
             Display::url(
166 166
                 $session['name'], $sessionUrl, array('target' => '_blank')
167
-            ) . ' - ' . get_lang('Coaches'),
167
+            ).' - '.get_lang('Coaches'),
168 168
             $allTeachers
169 169
         );
170 170
         $courseInfo[$groupName] = $sessionTeachers;
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 }
173 173
 
174 174
 // Category code
175
-$url = api_get_path(WEB_AJAX_PATH) . 'course.ajax.php?a=search_category';
175
+$url = api_get_path(WEB_AJAX_PATH).'course.ajax.php?a=search_category';
176 176
 
177 177
 $categorySelect = $form->addElement(
178 178
     'select_ajax',
@@ -200,11 +200,11 @@  discard block
 block discarded – undo
200 200
 $form->applyFilter('select_language', 'html_filter');
201 201
 
202 202
 $group = array();
203
-$group[]= $form->createElement('radio', 'visibility', get_lang("CourseAccess"), get_lang('OpenToTheWorld'), COURSE_VISIBILITY_OPEN_WORLD);
204
-$group[]= $form->createElement('radio', 'visibility', null, get_lang('OpenToThePlatform'), COURSE_VISIBILITY_OPEN_PLATFORM);
205
-$group[]= $form->createElement('radio', 'visibility', null, get_lang('Private'), COURSE_VISIBILITY_REGISTERED);
206
-$group[]= $form->createElement('radio', 'visibility', null, get_lang('CourseVisibilityClosed'), COURSE_VISIBILITY_CLOSED);
207
-$group[]= $form->createElement('radio', 'visibility', null, get_lang('CourseVisibilityHidden'), COURSE_VISIBILITY_HIDDEN);
203
+$group[] = $form->createElement('radio', 'visibility', get_lang("CourseAccess"), get_lang('OpenToTheWorld'), COURSE_VISIBILITY_OPEN_WORLD);
204
+$group[] = $form->createElement('radio', 'visibility', null, get_lang('OpenToThePlatform'), COURSE_VISIBILITY_OPEN_PLATFORM);
205
+$group[] = $form->createElement('radio', 'visibility', null, get_lang('Private'), COURSE_VISIBILITY_REGISTERED);
206
+$group[] = $form->createElement('radio', 'visibility', null, get_lang('CourseVisibilityClosed'), COURSE_VISIBILITY_CLOSED);
207
+$group[] = $form->createElement('radio', 'visibility', null, get_lang('CourseVisibilityHidden'), COURSE_VISIBILITY_HIDDEN);
208 208
 $form->addGroup($group, '', get_lang('CourseAccess'), '<br />');
209 209
 
210 210
 $group = array();
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
 $htmlHeadXtra[] = '
257 257
 <script>
258 258
 $(function() {
259
-    ' . $extra['jquery_ready_content'] . '
259
+    ' . $extra['jquery_ready_content'].'
260 260
 });
261 261
 </script>';
262 262
 
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
 
292 292
                 api_set_failure(get_lang('PortalActiveCoursesLimitReached'));
293 293
 
294
-                header('Location: course_list.php?action=show_msg&warn=' . urlencode(get_lang('PortalActiveCoursesLimitReached')));
294
+                header('Location: course_list.php?action=show_msg&warn='.urlencode(get_lang('PortalActiveCoursesLimitReached')));
295 295
                 exit;
296 296
             }
297 297
         }
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
         foreach ($list as $course_temp) {
310 310
             if ($course_temp['code'] != $course_code) {
311 311
                 $visual_code_is_used = true;
312
-                $warn .= ' ' . $course_temp['title'] . ' (' . $course_temp['code'] . '),';
312
+                $warn .= ' '.$course_temp['title'].' ('.$course_temp['code'].'),';
313 313
             }
314 314
         }
315 315
         $warn = substr($warn, 0, -1);
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
     $course['course_code'] = $course_code;
330 330
 
331 331
     if (!stristr($department_url, 'http://')) {
332
-        $department_url = 'http://' . $department_url;
332
+        $department_url = 'http://'.$department_url;
333 333
     }
334 334
 
335 335
     Database::query($sql);
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
     if (array_key_exists('add_teachers_to_sessions_courses', $courseInfo)) {
395 395
         $sql = "UPDATE $course_table SET
396 396
                 add_teachers_to_sessions_courses = '$addTeacherToSessionCourses'
397
-                WHERE id = " . $courseInfo['real_id'];
397
+                WHERE id = ".$courseInfo['real_id'];
398 398
         Database::query($sql);
399 399
     }
400 400
 
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
     Display::addFlash(Display::return_message(get_lang('ItemUpdated')));
404 404
 
405 405
     if ($visual_code_is_used) {
406
-        header('Location: course_list.php?action=show_msg&warn=' . urlencode($warn));
406
+        header('Location: course_list.php?action=show_msg&warn='.urlencode($warn));
407 407
     } else {
408 408
         header('Location: course_list.php');
409 409
     }
Please login to merge, or discard this patch.