Completed
Push — 1.11.x ( 7ffd51...902ebd )
by José
50:21 queued 21:28
created
main/inc/lib/timeline.lib.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
     );
26 26
     public $is_course_model = true;
27 27
 
28
-	public function __construct()
28
+    public function __construct()
29 29
     {
30 30
         $this->table = Database::get_course_table(TABLE_TIMELINE);
31
-	}
31
+    }
32 32
 
33 33
     /**
34 34
      * Get the count of elements
@@ -68,16 +68,16 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * Displays the title + grid
70 70
      */
71
-	public function listing()
71
+    public function listing()
72 72
     {
73
-		// action links
74
-		$html = '<div class="actions">';
73
+        // action links
74
+        $html = '<div class="actions">';
75 75
         //$html .= '<a href="career_dashboard.php">'.Display::return_icon('back.png',get_lang('Back'),'','32').'</a>';
76
-		$html .= '<a href="'.api_get_self().'?action=add">'.Display::return_icon('add.png', get_lang('Add'), '', '32').'</a>';
77
-		$html .= '</div>';
76
+        $html .= '<a href="'.api_get_self().'?action=add">'.Display::return_icon('add.png', get_lang('Add'), '', '32').'</a>';
77
+        $html .= '</div>';
78 78
         $html .= Display::grid_html('timelines');
79 79
         return $html;
80
-	}
80
+    }
81 81
 
82 82
     public function get_status_list()
83 83
     {
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
         $item['asset'] = array('media'     => $item['media'],
261 261
                                 'credit'    => $item['media_credit'],
262 262
                                 'caption'   => $item['media_caption'],
263
-         );
263
+            );
264 264
 
265 265
         //Cleaning items
266 266
         unset($item['id']);
Please login to merge, or discard this patch.
main/exercise/export/qti2/qti2_export.php 1 patch
Indentation   +90 added lines, -90 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
     public $answer;
27 27
 
28 28
     /**
29
-    * Constructor.
30
-    *
31
-    * @param Ims2Question $question Ims2Question object we want to export.
32
-    */
29
+     * Constructor.
30
+     *
31
+     * @param Ims2Question $question Ims2Question object we want to export.
32
+     */
33 33
     public function __construct($question)
34 34
     {
35 35
         $this->question = $question;
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-    * Start the XML flow.
42
-    *
43
-    * This opens the <item> block, with correct attributes.
44
-    *
45
-    */
41
+     * Start the XML flow.
42
+     *
43
+     * This opens the <item> block, with correct attributes.
44
+     *
45
+     */
46 46
     public function start_item()
47 47
     {
48 48
         $categoryTitle = '';
@@ -66,49 +66,49 @@  discard block
 block discarded – undo
66 66
     }
67 67
 
68 68
     /**
69
-    * End the XML flow, closing the </item> tag.
70
-    *
71
-    */
69
+     * End the XML flow, closing the </item> tag.
70
+     *
71
+     */
72 72
     public function end_item()
73 73
     {
74 74
         return "</assessmentItem>\n";
75 75
     }
76 76
 
77 77
     /**
78
-    * Start the itemBody
79
-    *
80
-    */
78
+     * Start the itemBody
79
+     *
80
+     */
81 81
     public function start_item_body()
82 82
     {
83 83
         return '  <itemBody>'."\n";
84 84
     }
85 85
 
86 86
     /**
87
-    * End the itemBody part.
88
-    *
89
-    */
87
+     * End the itemBody part.
88
+     *
89
+     */
90 90
     public function end_item_body()
91 91
     {
92 92
         return "  </itemBody>\n";
93 93
     }
94 94
 
95 95
     /**
96
-    * add the response processing template used.
97
-    *
98
-    */
96
+     * add the response processing template used.
97
+     *
98
+     */
99 99
     public function add_response_processing()
100 100
     {
101 101
         return '  <responseProcessing template="http://www.imsglobal.org/question/qti_v2p1/rptemplates/map_correct"/>'."\n";
102 102
     }
103 103
 
104 104
     /**
105
-    * Export the question as an IMS/QTI Item.
106
-    *
107
-    * This is a default behaviour, some classes may want to override this.
108
-    *
109
-    * @param $standalone: Boolean stating if it should be exported as a stand-alone question
110
-    * @return string string, the XML flow for an Item.
111
-    */
105
+     * Export the question as an IMS/QTI Item.
106
+     *
107
+     * This is a default behaviour, some classes may want to override this.
108
+     *
109
+     * @param $standalone: Boolean stating if it should be exported as a stand-alone question
110
+     * @return string string, the XML flow for an Item.
111
+     */
112 112
     public function export($standalone = false)
113 113
     {
114 114
         $head = $foot = '';
@@ -201,8 +201,8 @@  discard block
 block discarded – undo
201 201
     public function export_presentation()
202 202
     {
203 203
         $out = "<presentation_material><flow_mat><material>\n"
204
-             . "  <mattext><![CDATA[".formatExerciseQtiDescription($this->exercise->selectDescription())."]]></mattext>\n"
205
-             . "</material></flow_mat></presentation_material>\n";
204
+                . "  <mattext><![CDATA[".formatExerciseQtiDescription($this->exercise->selectDescription())."]]></mattext>\n"
205
+                . "</material></flow_mat></presentation_material>\n";
206 206
         return $out;
207 207
     }
208 208
 
@@ -216,15 +216,15 @@  discard block
 block discarded – undo
216 216
         $out = '';
217 217
         if ($n = $this->exercise->getShuffle()) {
218 218
             $out .= "<selection_ordering>"
219
-                 . "  <selection>\n"
220
-                 . "    <selection_number>".$n."</selection_number>\n"
221
-                 . "  </selection>\n"
222
-                 . '  <order order_type="Random" />'
223
-                 . "\n</selection_ordering>\n";
219
+                    . "  <selection>\n"
220
+                    . "    <selection_number>".$n."</selection_number>\n"
221
+                    . "  </selection>\n"
222
+                    . '  <order order_type="Random" />'
223
+                    . "\n</selection_ordering>\n";
224 224
         } else {
225 225
             $out .= '<selection_ordering sequence_type="Normal">'."\n"
226
-                 . "  <selection />\n"
227
-                 . "</selection_ordering>\n";
226
+                    . "  <selection />\n"
227
+                    . "</selection_ordering>\n";
228 228
         }
229 229
 
230 230
         return $out;
@@ -255,18 +255,18 @@  discard block
 block discarded – undo
255 255
         $head = $foot = '';
256 256
         if ($standalone) {
257 257
             $head = '<?xml version = "1.0" encoding = "UTF-8" standalone = "no"?>'."\n"
258
-                  . '<!DOCTYPE questestinterop SYSTEM "ims_qtiasiv2p1.dtd">'."\n"
259
-                  . "<questestinterop>\n";
258
+                    . '<!DOCTYPE questestinterop SYSTEM "ims_qtiasiv2p1.dtd">'."\n"
259
+                    . "<questestinterop>\n";
260 260
             $foot = "</questestinterop>\n";
261 261
         }
262 262
         $out = $head
263
-             . $this->start_section()
264
-             . $this->export_duration()
265
-             . $this->export_presentation()
266
-             . $this->export_ordering()
267
-             . $this->export_questions()
268
-             . $this->end_section()
269
-             . $foot;
263
+                . $this->start_section()
264
+                . $this->export_duration()
265
+                . $this->export_presentation()
266
+                . $this->export_ordering()
267
+                . $this->export_questions()
268
+                . $this->end_section()
269
+                . $foot;
270 270
 
271 271
         return $out;
272 272
     }
@@ -307,11 +307,11 @@  discard block
 block discarded – undo
307 307
     public $answer;
308 308
 
309 309
     /**
310
-    * Constructor.
311
-    *
312
-    * @param Question $question The Question object we want to export.
313
-    * @author Anamd Tihon
314
-    */
310
+     * Constructor.
311
+     *
312
+     * @param Question $question The Question object we want to export.
313
+     * @author Anamd Tihon
314
+     */
315 315
     public function __construct($question)
316 316
     {
317 317
         $this->question = $question;
@@ -320,35 +320,35 @@  discard block
 block discarded – undo
320 320
     }
321 321
 
322 322
     /**
323
-    * Start the XML flow.
324
-    *
325
-    * This opens the <item> block, with correct attributes.
326
-    *
327
-    * @author Amand Tihon <[email protected]>
328
-    */
323
+     * Start the XML flow.
324
+     *
325
+     * This opens the <item> block, with correct attributes.
326
+     *
327
+     * @author Amand Tihon <[email protected]>
328
+     */
329 329
     public function start_item()
330 330
     {
331 331
         return '<item title="'.cleanAttribute(formatExerciseQtiDescription($this->question->selectTitle())).'" ident="'.$this->questionIdent.'">'."\n";
332 332
     }
333 333
 
334 334
     /**
335
-    * End the XML flow, closing the </item> tag.
336
-    *
337
-    * @author Amand Tihon <[email protected]>
338
-    */
335
+     * End the XML flow, closing the </item> tag.
336
+     *
337
+     * @author Amand Tihon <[email protected]>
338
+     */
339 339
     public function end_item()
340 340
     {
341 341
         return "</item>\n";
342 342
     }
343 343
 
344 344
     /**
345
-    * Create the opening, with the question itself.
346
-    *
347
-    * This means it opens the <presentation> but doesn't close it, as this is the role of end_presentation().
348
-    * In between, the export_responses from the subclass should have been called.
349
-    *
350
-    * @author Amand Tihon <[email protected]>
351
-    */
345
+     * Create the opening, with the question itself.
346
+     *
347
+     * This means it opens the <presentation> but doesn't close it, as this is the role of end_presentation().
348
+     * In between, the export_responses from the subclass should have been called.
349
+     *
350
+     * @author Amand Tihon <[email protected]>
351
+     */
352 352
     public function start_presentation()
353 353
     {
354 354
         return '<presentation label="'.$this->questionIdent.'"><flow>'."\n"
@@ -356,44 +356,44 @@  discard block
 block discarded – undo
356 356
     }
357 357
 
358 358
     /**
359
-    * End the </presentation> part, opened by export_header.
360
-    *
361
-    * @author Amand Tihon <[email protected]>
362
-    */
359
+     * End the </presentation> part, opened by export_header.
360
+     *
361
+     * @author Amand Tihon <[email protected]>
362
+     */
363 363
     public function end_presentation()
364 364
     {
365 365
         return "</flow></presentation>\n";
366 366
     }
367 367
 
368 368
     /**
369
-    * Start the response processing, and declare the default variable, SCORE, at 0 in the outcomes.
370
-    *
371
-    * @author Amand Tihon <[email protected]>
372
-    */
369
+     * Start the response processing, and declare the default variable, SCORE, at 0 in the outcomes.
370
+     *
371
+     * @author Amand Tihon <[email protected]>
372
+     */
373 373
     public function start_processing()
374 374
     {
375 375
         return '<resprocessing><outcomes><decvar vartype="Integer" defaultval="0" /></outcomes>'."\n";
376 376
     }
377 377
 
378 378
     /**
379
-    * End the response processing part.
380
-    *
381
-    * @author Amand Tihon <[email protected]>
382
-    */
379
+     * End the response processing part.
380
+     *
381
+     * @author Amand Tihon <[email protected]>
382
+     */
383 383
     public function end_processing()
384 384
     {
385 385
         return "</resprocessing>\n";
386 386
     }
387 387
 
388 388
     /**
389
-    * Export the question as an IMS/QTI Item.
390
-    *
391
-    * This is a default behaviour, some classes may want to override this.
392
-    *
393
-    * @param $standalone: Boolean stating if it should be exported as a stand-alone question
394
-    * @return string string, the XML flow for an Item.
395
-    * @author Amand Tihon <[email protected]>
396
-    */
389
+     * Export the question as an IMS/QTI Item.
390
+     *
391
+     * This is a default behaviour, some classes may want to override this.
392
+     *
393
+     * @param $standalone: Boolean stating if it should be exported as a stand-alone question
394
+     * @return string string, the XML flow for an Item.
395
+     * @author Amand Tihon <[email protected]>
396
+     */
397 397
     public function export($standalone = False)
398 398
     {
399 399
         global $charset;
@@ -401,8 +401,8 @@  discard block
 block discarded – undo
401 401
 
402 402
         if ($standalone) {
403 403
             $head = '<?xml version = "1.0" encoding = "'.$charset.'" standalone = "no"?>'."\n"
404
-                  . '<!DOCTYPE questestinterop SYSTEM "ims_qtiasiv2p1.dtd">'."\n"
405
-                  . "<questestinterop>\n";
404
+                    . '<!DOCTYPE questestinterop SYSTEM "ims_qtiasiv2p1.dtd">'."\n"
405
+                    . "<questestinterop>\n";
406 406
             $foot = "</questestinterop>\n";
407 407
         }
408 408
 
Please login to merge, or discard this patch.
main/gradebook/lib/be/forumthreadlink.class.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,9 +121,9 @@
 block discarded – undo
121 121
     }
122 122
 
123 123
     /**
124
-    * Has anyone done this exercise yet ?
125
-    * @return boolean
126
-    */
124
+     * Has anyone done this exercise yet ?
125
+     * @return boolean
126
+     */
127 127
     public function has_results()
128 128
     {
129 129
         $table = Database::get_course_table(TABLE_FORUM_POST);
Please login to merge, or discard this patch.
main/gradebook/lib/be/category.class.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -1690,7 +1690,6 @@  discard block
 block discarded – undo
1690 1690
      * @param string $course_code Course code (optional)
1691 1691
      * @param int    $session_id Session ID (optional)
1692 1692
      * @param bool   $order
1693
-
1694 1693
      * @return array Array of subcategories
1695 1694
      */
1696 1695
     public function get_subcategories(
@@ -1971,7 +1970,6 @@  discard block
 block discarded – undo
1971 1970
      * This function, locks a category , only one who can unlock it is
1972 1971
      * the platform administrator.
1973 1972
      * @param int locked 1 or unlocked 0
1974
-
1975 1973
      * @return boolean|null
1976 1974
      * */
1977 1975
     public function lock($locked)
Please login to merge, or discard this patch.
main/inc/lib/fileManage.lib.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
         $file_name = basename($source);
186 186
         // move onto self illegal: mv a/b/c a/b/c or mv a/b/c a/b
187 187
         if (strcasecmp($target, dirname($source)) === 0) {
188
-               return false;
188
+                return false;
189 189
         }
190 190
         $isWindowsOS = api_is_windows_os();
191 191
         $canExec = function_exists('exec');
Please login to merge, or discard this patch.
plugin/sepe/src/sepe_plugin.class.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,9 +121,9 @@
 block discarded – undo
121 121
         $oldTableTutorsCompany = 'plugin_sepe_tutors_empresa';
122 122
         $oldTableCompetence = 'plugin_sepe_competencia_docente';
123 123
         $sql = "RENAME TABLE "
124
-                   . $oldTableCenters." TO ".self::TABLE_SEPE_CENTERS.", "
125
-                   . $oldTableTutorsCompany." TO ".self::TABLE_SEPE_TUTORS_COMPANY.", "
126
-                   . $oldTableCompetence." TO ".self::TABLE_SEPE_TEACHING_COMPETENCE.";";
124
+                    . $oldTableCenters." TO ".self::TABLE_SEPE_CENTERS.", "
125
+                    . $oldTableTutorsCompany." TO ".self::TABLE_SEPE_TUTORS_COMPANY.", "
126
+                    . $oldTableCompetence." TO ".self::TABLE_SEPE_TEACHING_COMPETENCE.";";
127 127
         Database::query($sql);
128 128
         
129 129
         $sepeCourseActionsTable = self::TABLE_SEPE_COURSE_ACTIONS;
Please login to merge, or discard this patch.
plugin/sepe/ws/Sepe.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -781,7 +781,7 @@
 block discarded – undo
781 781
                             $sql = "SELECT * FROM $tutorTable
782 782
                                     WHERE id='".$tmp_aux['tutor_id']."'
783 783
                                     LIMIT 1";
784
-                              $rs_tutor = Database::query($sql);
784
+                                $rs_tutor = Database::query($sql);
785 785
                             if (Database::num_rows($rs_tutor)) {
786 786
                                 $tmp = Database::fetch_assoc($rs_tutor);
787 787
 
Please login to merge, or discard this patch.
main/inc/lib/image.lib.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
      */
186 186
     public function __construct($path)
187 187
     {
188
-          parent::__construct($path);
188
+            parent::__construct($path);
189 189
     }
190 190
 
191 191
     /**
Please login to merge, or discard this patch.
main/inc/lib/usermanager.lib.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -730,7 +730,7 @@  discard block
 block discarded – undo
730 730
         $connection = Database::getManager()->getConnection();
731 731
         $tableExists = $connection->getSchemaManager()->tablesExist(['plugin_bbb_room']);
732 732
         if ($tableExists) {
733
-             // Delete user from database
733
+                // Delete user from database
734 734
             $sql = "DELETE FROM plugin_bbb_room WHERE participant_id = $user_id";
735 735
             Database::query($sql);
736 736
         }
@@ -1375,13 +1375,13 @@  discard block
 block discarded – undo
1375 1375
     }
1376 1376
 
1377 1377
     /**
1378
-    * Get the users by ID
1379
-    * @param array $ids student ids
1380
-    * @param string $active
1381
-    * @param string $order
1382
-    * @param string $limit
1383
-    * @return array $result student information
1384
-    */
1378
+     * Get the users by ID
1379
+     * @param array $ids student ids
1380
+     * @param string $active
1381
+     * @param string $order
1382
+     * @param string $limit
1383
+     * @return array $result student information
1384
+     */
1385 1385
     public static function get_user_list_by_ids($ids = array(), $active = null, $order = null, $limit = null)
1386 1386
     {
1387 1387
         if (empty($ids)) {
@@ -2546,7 +2546,7 @@  discard block
 block discarded – undo
2546 2546
      *
2547 2547
      * @return array with extra data info of a user i.e array('field_variable'=>'value');
2548 2548
      */
2549
-     public static function get_extra_user_data_by_value($variable, $value, $all_visibility = true)
2549
+        public static function get_extra_user_data_by_value($variable, $value, $all_visibility = true)
2550 2550
     {
2551 2551
         $extraFieldValue = new ExtraFieldValue('user');
2552 2552
         $extraField = new ExtraField('user');
@@ -3706,12 +3706,12 @@  discard block
 block discarded – undo
3706 3706
         if ($tag_id == 0) {
3707 3707
             //the tag doesn't exist
3708 3708
             $sql = "INSERT INTO $table_user_tag (tag, field_id,count) VALUES ('$tag','$field_id', count + 1)";
3709
-             Database::query($sql);
3709
+                Database::query($sql);
3710 3710
             $last_insert_id = Database::insert_id();
3711 3711
         } else {
3712 3712
             //the tag exists we update it
3713 3713
             $sql = "UPDATE $table_user_tag SET count = count + 1 WHERE id  = $tag_id";
3714
-             Database::query($sql);
3714
+                Database::query($sql);
3715 3715
             $last_insert_id = $tag_id;
3716 3716
         }
3717 3717
 
@@ -3906,9 +3906,9 @@  discard block
 block discarded – undo
3906 3906
     }
3907 3907
 
3908 3908
     /**
3909
-      * Get extra filtrable user fields (only type select)
3910
-      * @return array
3911
-      */
3909
+     * Get extra filtrable user fields (only type select)
3910
+     * @return array
3911
+     */
3912 3912
     public static function get_extra_filtrable_fields()
3913 3913
     {
3914 3914
         $extraFieldList = self::get_extra_fields();
@@ -3933,9 +3933,9 @@  discard block
 block discarded – undo
3933 3933
     }
3934 3934
 
3935 3935
     /**
3936
-      * Get extra where clauses for finding users based on extra filtrable user fields (type select)
3937
-      * @return string With AND clauses based on user's ID which have the values to search in extra user fields
3938
-      */
3936
+     * Get extra where clauses for finding users based on extra filtrable user fields (type select)
3937
+     * @return string With AND clauses based on user's ID which have the values to search in extra user fields
3938
+     */
3939 3939
     public static function get_search_form_where_extra_fields()
3940 3940
     {
3941 3941
         $useExtraFields = false;
@@ -4256,23 +4256,23 @@  discard block
 block discarded – undo
4256 4256
     }
4257 4257
 
4258 4258
     /**
4259
-    * Get users followed by human resource manager
4260
-    * @param int $userId
4261
-    * @param int  $userStatus Filter users by status (STUDENT, COURSEMANAGER, etc)
4262
-    * @param bool $getOnlyUserId
4263
-    * @param bool $getSql
4264
-    * @param bool $getCount
4265
-    * @param int $from
4266
-    * @param int $numberItems
4267
-    * @param int $column
4268
-    * @param string $direction
4269
-    * @param int $active
4270
-    * @param string $lastConnectionDate
4271
-    * @param int $status the function is called by who? COURSEMANAGER, DRH?
4272
-    * @param string $keyword
4259
+     * Get users followed by human resource manager
4260
+     * @param int $userId
4261
+     * @param int  $userStatus Filter users by status (STUDENT, COURSEMANAGER, etc)
4262
+     * @param bool $getOnlyUserId
4263
+     * @param bool $getSql
4264
+     * @param bool $getCount
4265
+     * @param int $from
4266
+     * @param int $numberItems
4267
+     * @param int $column
4268
+     * @param string $direction
4269
+     * @param int $active
4270
+     * @param string $lastConnectionDate
4271
+     * @param int $status the function is called by who? COURSEMANAGER, DRH?
4272
+     * @param string $keyword
4273 4273
      *
4274
-    * @return array user list
4275
-    */
4274
+     * @return array user list
4275
+     */
4276 4276
     public static function getUsersFollowedByUser(
4277 4277
         $userId,
4278 4278
         $userStatus = null,
@@ -5309,7 +5309,7 @@  discard block
 block discarded – undo
5309 5309
      * @return array
5310 5310
      * @author Evie Embrechts
5311 5311
      * @author Yannick Warnier <[email protected]>
5312
-    */
5312
+     */
5313 5313
     public static function loginAsUser($userId, $checkIfUserCanLoginAs = true)
5314 5314
     {
5315 5315
         $userId = intval($userId);
Please login to merge, or discard this patch.