Browse code

Modernize and adjust code to Contao 5

Benjamin Roth authored on26/10/2023 15:21:49
Showing1 changed files
... ...
@@ -14,4 +14,8 @@ use Symfony\Component\HttpKernel\Bundle\Bundle;
14 14
 
15 15
 class EsalesMediaContentHelperBundle extends Bundle
16 16
 {
17
+    public function getPath(): string
18
+    {
19
+        return \dirname(__DIR__);
20
+    }
17 21
 }
Browse code

Initial commit

Benjamin Roth authored on25/11/2018 15:53:19
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of eSales Media ContentHelperBundle
5
+ *
6
+ * (c) John Doe
7
+ *
8
+ * @license LGPL-3.0-or-later
9
+ */
10
+
11
+namespace EsalesMedia\ContentHelperBundle;
12
+
13
+use Symfony\Component\HttpKernel\Bundle\Bundle;
14
+
15
+class EsalesMediaContentHelperBundle extends Bundle
16
+{
17
+}