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

Application modulaire fonctionnelle !

Emmanuel ROY authored on 12/08/2019 15:10:25
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,64 +0,0 @@
1
-<?php
2
-
3
-/*
4
- * This file is part of the Symfony package.
5
- *
6
- * (c) Fabien Potencier <fabien@symfony.com>
7
- *
8
- * For the full copyright and license information, please view the LICENSE
9
- * file that was distributed with this source code.
10
- */
11
-
12
-namespace Symfony\Component\Translation\Loader;
13
-
14
-use Symfony\Component\Translation\Exception\InvalidResourceException;
15
-
16
-/**
17
- * JsonFileLoader loads translations from an json file.
18
- *
19
- * @author singles
20
- */
21
-class JsonFileLoader extends FileLoader
22
-{
23
-    /**
24
-     * {@inheritdoc}
25
-     */
26
-    protected function loadResource($resource)
27
-    {
28
-        $messages = [];
29
-        if ($data = file_get_contents($resource)) {
30
-            $messages = json_decode($data, true);
31
-
32
-            if (0 < $errorCode = json_last_error()) {
33
-                throw new InvalidResourceException(sprintf('Error parsing JSON - %s', $this->getJSONErrorMessage($errorCode)));
34
-            }
35
-        }
36
-
37
-        return $messages;
38
-    }
39
-
40
-    /**
41
-     * Translates JSON_ERROR_* constant into meaningful message.
42
-     *
43
-     * @param int $errorCode Error code returned by json_last_error() call
44
-     *
45
-     * @return string Message string
46
-     */
47
-    private function getJSONErrorMessage($errorCode)
48
-    {
49
-        switch ($errorCode) {
50
-            case JSON_ERROR_DEPTH:
51
-                return 'Maximum stack depth exceeded';
52
-            case JSON_ERROR_STATE_MISMATCH:
53
-                return 'Underflow or the modes mismatch';
54
-            case JSON_ERROR_CTRL_CHAR:
55
-                return 'Unexpected control character found';
56
-            case JSON_ERROR_SYNTAX:
57
-                return 'Syntax error, malformed JSON';
58
-            case JSON_ERROR_UTF8:
59
-                return 'Malformed UTF-8 characters, possibly incorrectly encoded';
60
-            default:
61
-                return 'Unknown error';
62
-        }
63
-    }
64
-}
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,64 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+namespace Symfony\Component\Translation\Loader;
13
+
14
+use Symfony\Component\Translation\Exception\InvalidResourceException;
15
+
16
+/**
17
+ * JsonFileLoader loads translations from an json file.
18
+ *
19
+ * @author singles
20
+ */
21
+class JsonFileLoader extends FileLoader
22
+{
23
+    /**
24
+     * {@inheritdoc}
25
+     */
26
+    protected function loadResource($resource)
27
+    {
28
+        $messages = [];
29
+        if ($data = file_get_contents($resource)) {
30
+            $messages = json_decode($data, true);
31
+
32
+            if (0 < $errorCode = json_last_error()) {
33
+                throw new InvalidResourceException(sprintf('Error parsing JSON - %s', $this->getJSONErrorMessage($errorCode)));
34
+            }
35
+        }
36
+
37
+        return $messages;
38
+    }
39
+
40
+    /**
41
+     * Translates JSON_ERROR_* constant into meaningful message.
42
+     *
43
+     * @param int $errorCode Error code returned by json_last_error() call
44
+     *
45
+     * @return string Message string
46
+     */
47
+    private function getJSONErrorMessage($errorCode)
48
+    {
49
+        switch ($errorCode) {
50
+            case JSON_ERROR_DEPTH:
51
+                return 'Maximum stack depth exceeded';
52
+            case JSON_ERROR_STATE_MISMATCH:
53
+                return 'Underflow or the modes mismatch';
54
+            case JSON_ERROR_CTRL_CHAR:
55
+                return 'Unexpected control character found';
56
+            case JSON_ERROR_SYNTAX:
57
+                return 'Syntax error, malformed JSON';
58
+            case JSON_ERROR_UTF8:
59
+                return 'Malformed UTF-8 characters, possibly incorrectly encoded';
60
+            default:
61
+                return 'Unknown error';
62
+        }
63
+    }
64
+}