Browse code

Update comments

Sebastian Zoglowek authored on14/08/2022 16:18:52
Showing1 changed files
... ...
@@ -7,10 +7,10 @@ declare(strict_types=1);
7 7
  *
8 8
  * @package     contao-member-extension-bundle
9 9
  * @license     MIT
10
- * @author      Daniele Sciannimanica   <https://github.com/doishub>
11
- * @author      Fabian Ekert            <https://github.com/eki89>
12
- * @author      Sebastian Zoglowek      <https://github.com/zoglo>
13
- * @copyright   Oveleon                 <https://www.oveleon.de/>
10
+ * @author      Sebastian Zoglowek     <https://github.com/zoglo>
11
+ * @author      Daniele Sciannimanica  <https://github.com/doishub>
12
+ * @author      Fabian Ekert           <https://github.com/eki89>
13
+ * @copyright   Oveleon                <https://www.oveleon.de/>
14 14
  */
15 15
 
16 16
 namespace Oveleon\ContaoMemberExtensionBundle;
Browse code

Change bundle structure

Sebastian Zoglowek authored on14/08/2022 15:51:15
Showing1 changed files
... ...
@@ -19,4 +19,8 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
19 19
 
20 20
 class ContaoMemberExtensionBundle extends Bundle
21 21
 {
22
-}
23 22
\ No newline at end of file
23
+    public function getPath(): string
24
+    {
25
+        return \dirname(__DIR__);
26
+    }
27
+}
Browse code

[Update] Added createNewUser Hook

Sebastian Zoglowek authored on26/02/2022 03:03:40
Showing1 changed files
... ...
@@ -5,7 +5,12 @@ declare(strict_types=1);
5 5
 /*
6 6
  * This file is part of Oveleon ContaoMemberExtension Bundle.
7 7
  *
8
- * (c) https://www.oveleon.de/
8
+ * @package     contao-member-extension-bundle
9
+ * @license     MIT
10
+ * @author      Daniele Sciannimanica   <https://github.com/doishub>
11
+ * @author      Fabian Ekert            <https://github.com/eki89>
12
+ * @author      Sebastian Zoglowek      <https://github.com/zoglo>
13
+ * @copyright   Oveleon                 <https://www.oveleon.de/>
9 14
  */
10 15
 
11 16
 namespace Oveleon\ContaoMemberExtensionBundle;
Browse code

Initial commit: Frontend module member avatar added

oveleon authored on08/03/2019 16:40:16
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+<?php
2
+
3
+declare(strict_types=1);
4
+
5
+/*
6
+ * This file is part of Oveleon ContaoMemberExtension Bundle.
7
+ *
8
+ * (c) https://www.oveleon.de/
9
+ */
10
+
11
+namespace Oveleon\ContaoMemberExtensionBundle;
12
+
13
+use Symfony\Component\HttpKernel\Bundle\Bundle;
14
+
15
+class ContaoMemberExtensionBundle extends Bundle
16
+{
17
+}
0 18
\ No newline at end of file