Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Application nettoyé, Ajout de la lib composer hybridauth/hybridauth TODO: integrer hybrid auth sur une page simple d'authentification

Emmanuel ROY authored on 09/09/2019 22:37:17
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,21 +0,0 @@
1
-<?php
2
-namespace MVC\Module\Setup;
3
-
4
-class Syf43 {
5
-
6
-    /**
7
-     * @param none
8
-     * @return modular_symfony_web
9
-     */
10
-
11
-    public function load($name) {
12
-        ob_start();
13
-        require( MODULES_PATH . DIRECTORY_SEPARATOR . $name . DIRECTORY_SEPARATOR . "public" . DIRECTORY_SEPARATOR . "index.php" );
14
-        $modularApp = ob_get_clean();
15
-        echo $modularApp;
16
-    }
17
-
18
-    public static function twigLoader($name){
19
-        require MODULES_PATH . DIRECTORY_SEPARATOR . "setup" . DIRECTORY_SEPARATOR . $name . ".twig.class.php";
20
-    }
21
-}
22 0
\ No newline at end of file
Browse code

Initialisation de l'application modulaire Symfony43 sans systeme de template maitre

Emmanuel ROY authored on 09/08/2019 09:25:45
Showing 1 changed files
... ...
@@ -14,4 +14,8 @@ class Syf43 {
14 14
         $modularApp = ob_get_clean();
15 15
         echo $modularApp;
16 16
     }
17
+
18
+    public static function twigLoader($name){
19
+        require MODULES_PATH . DIRECTORY_SEPARATOR . "setup" . DIRECTORY_SEPARATOR . $name . ".twig.class.php";
20
+    }
17 21
 }
18 22
\ No newline at end of file
Browse code

initial commit

Emmanuel ROY authored on 09/08/2019 08:39:02
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,17 @@
1
+<?php
2
+namespace MVC\Module\Setup;
3
+
4
+class Syf43 {
5
+
6
+    /**
7
+     * @param none
8
+     * @return modular_symfony_web
9
+     */
10
+
11
+    public function load($name) {
12
+        ob_start();
13
+        require( MODULES_PATH . DIRECTORY_SEPARATOR . $name . DIRECTORY_SEPARATOR . "public" . DIRECTORY_SEPARATOR . "index.php" );
14
+        $modularApp = ob_get_clean();
15
+        echo $modularApp;
16
+    }
17
+}
0 18
\ No newline at end of file