Completed
Branch master (468205)
by Sarah
01:51
created
assets/Assets.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     public $jsOptions = ['position' => View::POS_END];
22 22
 
23 23
     /**
24
-    * @var array change forceCopy to true when testing your js in order to rebuild this assets on every request (otherwise they will be cached)
25
-    */
24
+     * @var array change forceCopy to true when testing your js in order to rebuild this assets on every request (otherwise they will be cached)
25
+     */
26 26
     public $publishOptions = [
27 27
         'forceCopy' => false
28 28
     ];
Please login to merge, or discard this patch.
Module.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@
 block discarded – undo
32 32
     public $guestAccess = false;
33 33
 
34 34
     /**
35
-    * @inheritdoc
36
-    */
35
+     * @inheritdoc
36
+     */
37 37
     public function getConfigUrl()
38 38
     {
39 39
         return Url::to(['/geolocation/admin']);
40 40
     }
41 41
 
42 42
     /**
43
-    * @inheritdoc
44
-    */
43
+     * @inheritdoc
44
+     */
45 45
     public function disable()
46 46
     {
47 47
         $uninstall = new Uninstall();
Please login to merge, or discard this patch.
config.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,19 +5,19 @@
 block discarded – undo
5 5
 use humhub\widgets\TopMenu;
6 6
 
7 7
 return [
8
-	'id' => 'geolocation',
9
-	'class' => 'humhub\modules\geolocation\Module',
10
-	'namespace' => 'humhub\modules\geolocation',
11
-	'events' => [
8
+    'id' => 'geolocation',
9
+    'class' => 'humhub\modules\geolocation\Module',
10
+    'namespace' => 'humhub\modules\geolocation',
11
+    'events' => [
12 12
 
13
-		[
14
-			'class' => AdminMenu::class,
15
-			'event' => AdminMenu::EVENT_INIT,
16
-			'callback' => [Events::class, 'onAdminMenuInit']
17
-		],
13
+        [
14
+            'class' => AdminMenu::class,
15
+            'event' => AdminMenu::EVENT_INIT,
16
+            'callback' => [Events::class, 'onAdminMenuInit']
17
+        ],
18 18
 
19 19
         ['class' => TopMenu::class, 'event' => TopMenu::EVENT_BEFORE_RUN, 'callback' => [\humhub\modules\geolocation\Events::class, 'onTopMenuInit']],
20
-	],
20
+    ],
21 21
 
22 22
 
23 23
 ];
Please login to merge, or discard this patch.
messages/en-US/base.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-  'Geolocation' => '',
5
-  'Directory' => '',
6
-  '<strong>Geolocation</strong> configuration' => '',
7
-  'Welcome to the admin only area.' => '',
4
+    'Geolocation' => '',
5
+    'Directory' => '',
6
+    '<strong>Geolocation</strong> configuration' => '',
7
+    'Welcome to the admin only area.' => '',
8 8
 ];
Please login to merge, or discard this patch.