Completed
Push — master ( 0e672f...e42772 )
by Doğa
01:56
created
Features/TimberLoader/functions.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
12 12
 
13 13
 // Render Component with Timber (Twig)
14
-add_filter('Flynt/renderComponent', function ($output, $componentName, $componentData, $areaHtml) {
14
+add_filter('Flynt/renderComponent', function($output, $componentName, $componentData, $areaHtml) {
15 15
     // get index file
16 16
     $componentManager = Flynt\ComponentManager::getInstance();
17 17
     $filePath = $componentManager->getComponentFilePath($componentName, 'index.twig');
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
         return $output;
22 22
     }
23 23
 
24
-    $addArea = function ($twig) use ($areaHtml) {
24
+    $addArea = function($twig) use ($areaHtml) {
25 25
 
26
-        $twig->addFunction(new Twig_SimpleFunction('area', function ($areaName) use ($areaHtml) {
26
+        $twig->addFunction(new Twig_SimpleFunction('area', function($areaName) use ($areaHtml) {
27 27
             if (array_key_exists($areaName, $areaHtml)) {
28 28
                 return $areaHtml[$areaName];
29 29
             }
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     add_filter('get_twig', $addArea);
36 36
 
37
-    $returnTimberPaths = function ($paths) use ($filePath) {
37
+    $returnTimberPaths = function($paths) use ($filePath) {
38 38
         array_unshift($paths, dirname($filePath));
39 39
         return $paths;
40 40
     };
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 }, 10, 4);
52 52
 
53 53
 // Convert ACF Images to Timber Images
54
-add_filter('acf/format_value/type=image', function ($value) {
54
+add_filter('acf/format_value/type=image', function($value) {
55 55
     if (!empty($value)) {
56 56
         $value = new Image($value);
57 57
     }
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 }, 100);
60 60
 
61 61
 // Convert ACF Gallery Images to Timber Images
62
-add_filter('acf/format_value/type=gallery', function ($value) {
62
+add_filter('acf/format_value/type=gallery', function($value) {
63 63
     if (!empty($value)) {
64
-        $value = array_map(function ($image) {
64
+        $value = array_map(function($image) {
65 65
             return new Image($image);
66 66
         }, $value);
67 67
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 }, 100);
70 70
 
71 71
 // Convert ACF Field of type post_object to a Timber\Post and add all ACF Fields of that Post
72
-add_filter('acf/format_value/type=post_object', function ($value) {
72
+add_filter('acf/format_value/type=post_object', function($value) {
73 73
     if (is_array($value)) {
74 74
         $value = array_map(NS . 'convertToTimberPost', $value);
75 75
     } else {
Please login to merge, or discard this patch.