Completed
Push — 1.10.x ( 763475...2a11d8 )
by Yannick
132:46 queued 86:37
created
src/Chamilo/CoreBundle/Component/Editor/Driver/PersonalDriver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
                 mkdir($dir);
26 26
             }
27 27
 
28
-            if (!is_dir($dir . 'my_files')) {
29
-                mkdir($dir . 'my_files');
28
+            if (!is_dir($dir.'my_files')) {
29
+                mkdir($dir.'my_files');
30 30
             }
31 31
         }
32 32
     }
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/Driver/CourseDriver.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
         if (!empty($courseInfo)) {
28 28
 
29 29
             $coursePath = api_get_path(SYS_COURSE_PATH);
30
-            $courseDir = $courseInfo['directory'] . '/document';
31
-            $baseDir = $coursePath . $courseDir;
30
+            $courseDir = $courseInfo['directory'].'/document';
31
+            $baseDir = $coursePath.$courseDir;
32 32
 
33 33
             // Creates shared folder
34 34
 
35
-            if (!file_exists($baseDir . '/shared_folder')) {
35
+            if (!file_exists($baseDir.'/shared_folder')) {
36 36
                 $title = get_lang('UserFolders');
37 37
                 $folderName = '/shared_folder';
38 38
                 //$groupId = 0;
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
             }
52 52
 
53 53
             // Creates user-course folder
54
-            if (!file_exists($baseDir . '/shared_folder/sf_user_' . $userId)) {
54
+            if (!file_exists($baseDir.'/shared_folder/sf_user_'.$userId)) {
55 55
                 $title = $userInfo['complete_name'];
56
-                $folderName = '/shared_folder/sf_user_' . $userId;
56
+                $folderName = '/shared_folder/sf_user_'.$userId;
57 57
                 $visibility = 1;
58 58
                 create_unexisting_directory(
59 59
                     $courseInfo,
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/Finder.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $this->time  = $this->utime();
32 32
         $this->debug = (isset($opts['debug']) && $opts['debug'] ? true : false);
33 33
         $this->timeout = (isset($opts['timeout']) ? $opts['timeout'] : 0);
34
-        $this->netVolumesSessionKey = !empty($opts['netVolumesSessionKey'])? $opts['netVolumesSessionKey'] : 'elFinderNetVolumes';
34
+        $this->netVolumesSessionKey = !empty($opts['netVolumesSessionKey']) ? $opts['netVolumesSessionKey'] : 'elFinderNetVolumes';
35 35
         $this->callbackWindowURL = (isset($opts['callbackWindowURL']) ? $opts['callbackWindowURL'] : '');
36 36
 
37 37
         // setlocale and global locale regists to elFinder::locale
@@ -46,20 +46,20 @@  discard block
 block discarded – undo
46 46
             $_reqCmd = isset($_req['cmd']) ? $_req['cmd'] : '';
47 47
             foreach ($opts['bind'] as $cmd => $handlers) {
48 48
                 $doRegist = (strpos($cmd, '*') !== false);
49
-                if (! $doRegist) {
49
+                if (!$doRegist) {
50 50
                     $_getcmd = create_function('$cmd', 'list($ret) = explode(\'.\', $cmd);return trim($ret);');
51 51
                     $doRegist = ($_reqCmd && in_array($_reqCmd, array_map($_getcmd, explode(' ', $cmd))));
52 52
                 }
53 53
                 if ($doRegist) {
54
-                    if (! is_array($handlers) || is_object($handlers[0])) {
54
+                    if (!is_array($handlers) || is_object($handlers[0])) {
55 55
                         $handlers = array($handlers);
56 56
                     }
57
-                    foreach($handlers as $handler) {
57
+                    foreach ($handlers as $handler) {
58 58
                         if ($handler) {
59 59
                             if (is_string($handler) && strpos($handler, '.')) {
60 60
                                 list($_domain, $_name, $_method) = array_pad(explode('.', $handler), 3, '');
61 61
                                 if (strcasecmp($_domain, 'plugin') === 0) {
62
-                                    if ($plugin = $this->getPluginInstance($_name, isset($opts['plugin'][$_name])? $opts['plugin'][$_name] : array())
62
+                                    if ($plugin = $this->getPluginInstance($_name, isset($opts['plugin'][$_name]) ? $opts['plugin'][$_name] : array())
63 63
                                         and method_exists($plugin, $_method)) {
64 64
                                         $this->bind($cmd, array($plugin, $_method));
65 65
                                     }
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Basic.php 2 patches
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      * @var array
18 18
      */
19 19
     public $defaultPlugins = array(
20
-       'adobeair',
20
+        'adobeair',
21 21
         'ajax',
22 22
         'audio',
23 23
         'bidi',
@@ -35,30 +35,30 @@  discard block
 block discarded – undo
35 35
         'iframe',
36 36
         'iframedialog',
37 37
         'indentblock',
38
-       'justify',
39
-       'language',
40
-       'lineutils',
41
-       'liststyle',
42
-       'newpage',
43
-       'oembed',
44
-       'pagebreak',
45
-       'preview',
46
-       'print',
47
-       'save',
48
-       'selectall',
49
-       'sharedspace',
50
-       'showblocks',
51
-       'smiley',
52
-       'sourcedialog',
53
-       'stylesheetparser',
54
-       'tableresize',
55
-       'templates',
56
-       'uicolor',
57
-       'video',
58
-       'widget',
59
-       'wikilink',
60
-       'wordcount',
61
-       'xml'
38
+        'justify',
39
+        'language',
40
+        'lineutils',
41
+        'liststyle',
42
+        'newpage',
43
+        'oembed',
44
+        'pagebreak',
45
+        'preview',
46
+        'print',
47
+        'save',
48
+        'selectall',
49
+        'sharedspace',
50
+        'showblocks',
51
+        'smiley',
52
+        'sourcedialog',
53
+        'stylesheetparser',
54
+        'tableresize',
55
+        'templates',
56
+        'uicolor',
57
+        'video',
58
+        'widget',
59
+        'wikilink',
60
+        'wordcount',
61
+        'xml'
62 62
     );
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -70,6 +70,8 @@
 block discarded – undo
70 70
 
71 71
     /**
72 72
      * @inheritdoc
73
+     * @param string $toolbar
74
+     * @param string $prefix
73 75
      */
74 76
     public function __construct(
75 77
         $toolbar = null,
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/TestFreeAnswer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
             ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord'],
55 55
             ['Undo', 'Redo', '-', 'SelectAll', 'Find', '-', 'RemoveFormat'],
56 56
             ['Link', 'Unlink', 'Anchor', 'Glossary'],
57
-            ['Image', 'Mapping', 'Video', 'Oembed', 'Youtube', 'Flash', 'Audio', 'leaflet', 'Smiley', 'SpecialChar', 'Asciimath',],
57
+            ['Image', 'Mapping', 'Video', 'Oembed', 'Youtube', 'Flash', 'Audio', 'leaflet', 'Smiley', 'SpecialChar', 'Asciimath', ],
58 58
             '/',
59 59
             ['Table', '-', 'CreateDiv'],
60 60
             ['BulletedList', 'NumberedList', 'HorizontalRule', '-', 'Outdent', 'Indent', 'Blockquote'],
Please login to merge, or discard this patch.
Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/UniqueAnswerImage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
     {
19 19
         $config['toolbarGroups'] = array(
20 20
             '/',
21
-            array('name' => 'basicstyles',    'groups' =>array('basicstyles', 'cleanup', )),
22
-            array('name' => 'paragraph',    'groups' =>array('list', 'indent', 'blocks', 'align' )),
21
+            array('name' => 'basicstyles', 'groups' =>array('basicstyles', 'cleanup',)),
22
+            array('name' => 'paragraph', 'groups' =>array('list', 'indent', 'blocks', 'align')),
23 23
             array('name' => 'links'),
24 24
             array('name' => 'insert'),
25 25
             '/',
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Minimal.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             ],
35 35
             [
36 36
                 'name' => 'links',
37
-                'items' => [ 'Link', 'Unlink', 'Anchor']
37
+                'items' => ['Link', 'Unlink', 'Anchor']
38 38
             ]
39 39
         ];
40 40
 
Please login to merge, or discard this patch.
CoreBundle/Component/Editor/CkEditor/Toolbar/ProjectCommentStudent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         return [
90 90
             ['Save', 'NewPage', 'Templates', '-', 'PasteFromWord'],
91 91
             ['Undo', 'Redo'],
92
-            ['Link', 'Image', 'Video', 'Flash', 'Audio', 'Table',  'Asciimath'],
92
+            ['Link', 'Image', 'Video', 'Flash', 'Audio', 'Table', 'Asciimath'],
93 93
             ['BulletedList', 'NumberedList', 'HorizontalRule'],
94 94
             ['JustifyLeft', 'JustifyCenter', 'JustifyBlock'],
95 95
             ['Format', 'Font', 'FontSize', 'Bold', 'Italic', 'TextColor'],
Please login to merge, or discard this patch.
CoreBundle/Component/Editor/CkEditor/Toolbar/TestQuestionDescription.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
     public function getConfig()
17 17
     {
18 18
         $config['toolbarGroups'] = array(
19
-            array('name' => 'document',  'groups' =>array('document', 'doctools')),
20
-            array('name' => 'clipboard',    'groups' =>array('clipboard', 'undo')),
21
-            array('name' => 'editing',    'groups' =>array('clipboard', 'undo')),
19
+            array('name' => 'document', 'groups' =>array('document', 'doctools')),
20
+            array('name' => 'clipboard', 'groups' =>array('clipboard', 'undo')),
21
+            array('name' => 'editing', 'groups' =>array('clipboard', 'undo')),
22 22
             //array('name' => 'forms',    'groups' =>array('clipboard', 'undo', )),
23 23
             '/',
24
-            array('name' => 'basicstyles',    'groups' =>array('basicstyles', 'cleanup')),
25
-            array('name' => 'paragraph',    'groups' =>array('list', 'indent', 'blocks', 'align')),
24
+            array('name' => 'basicstyles', 'groups' =>array('basicstyles', 'cleanup')),
25
+            array('name' => 'paragraph', 'groups' =>array('list', 'indent', 'blocks', 'align')),
26 26
             array('name' => 'links'),
27 27
             array('name' => 'insert'),
28 28
             '/',
Please login to merge, or discard this patch.