Completed
Push — fieldLoader ( b788dd...dcfc56 )
by Dominik
02:40
created
Features/AdminComponentPreview/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
         if (is_admin()) {
39 39
             add_action('admin_enqueue_scripts', NS . 'enqueueComponentScripts');
40 40
             // add image to the flexible content component name
41
-            add_filter('acf/fields/flexible_content/layout_title', function ($title, $field, $layout, $i) {
41
+            add_filter('acf/fields/flexible_content/layout_title', function($title, $field, $layout, $i) {
42 42
                 $componentName = ucfirst($layout['name']);
43 43
                 $componentPath = "Components/{$componentName}";
44
-                $componentPreviewDesktopPath = Asset::requirePath("{$componentPath}/preview-desktop.jpg") ;
44
+                $componentPreviewDesktopPath = Asset::requirePath("{$componentPath}/preview-desktop.jpg");
45 45
                 $componentPreviewDesktopUrl = Asset::requireUrl("{$componentPath}/preview-desktop.jpg");
46 46
                 if (is_file($componentPreviewDesktopPath)) {
47 47
                     $newTitle = '<span class="flyntComponentPreview">';
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         } else {
56 56
             add_action('wp_enqueue_scripts', NS . 'enqueueComponentScripts');
57 57
             // adds Component Previews button to admin bar on front-end when logged in
58
-            add_action('admin_bar_menu', function ($wpAdminBar) {
58
+            add_action('admin_bar_menu', function($wpAdminBar) {
59 59
                 $title = __('Component Previews', 'flynt-starter-theme');
60 60
                 $wpAdminBar->add_menu([
61 61
                     'id' => 'toggleComponentPreviews',
Please login to merge, or discard this patch.
Features/Components/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
 // register all components
13 13
 $componentPath = trailingslashit(Feature::getOption('flynt-components', 0));
14 14
 
15
-add_action('Flynt/afterRegisterFeatures', function () use ($componentPath) {
15
+add_action('Flynt/afterRegisterFeatures', function() use ($componentPath) {
16 16
     if (is_dir($componentPath)) {
17 17
         $components = [];
18
-        FileLoader::iterateDir($componentPath, function ($dir) use (&$components) {
18
+        FileLoader::iterateDir($componentPath, function($dir) use (&$components) {
19 19
             if ($dir->isDir()) {
20 20
                 $components[] = $dir->getFilename();
21 21
             }
@@ -26,6 +26,6 @@  discard block
 block discarded – undo
26 26
 });
27 27
 
28 28
 // set Component Path
29
-add_filter('Flynt/componentPath', function ($defaultPath, $componentName) use ($componentPath) {
29
+add_filter('Flynt/componentPath', function($defaultPath, $componentName) use ($componentPath) {
30 30
     return $componentPath . $componentName;
31 31
 }, 10, 2);
Please login to merge, or discard this patch.
Features/Acf/GoogleMaps.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public static function init()
8 8
     {
9
-        add_filter('acf/fields/google_map/api', function ($api) {
9
+        add_filter('acf/fields/google_map/api', function($api) {
10 10
             $apiKey = OptionPages::get('globalOptions', 'feature', 'Acf', 'googleMapsApiKey');
11 11
             if ($apiKey) {
12 12
                 $api['key'] = $apiKey;
Please login to merge, or discard this patch.
Components/NavigationMain/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 use Flynt\Features\Components\Component;
6 6
 use Timber\Menu;
7 7
 
8
-add_action('wp_enqueue_scripts', function () {
8
+add_action('wp_enqueue_scripts', function() {
9 9
     Component::enqueueAssets('NavigationMain');
10 10
 });
11 11
 
12
-add_filter('Flynt/addComponentData?name=NavigationMain', function ($data) {
12
+add_filter('Flynt/addComponentData?name=NavigationMain', function($data) {
13 13
     // set max level of the menu
14 14
     $data['maxLevel'] = 0;
15 15
     $data['menuSlug'] = !empty($data['menuSlug']) ? $data['menuSlug'] : '';
Please login to merge, or discard this patch.
Components/ListPosts/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 use Flynt\Features\Components\Component;
6 6
 
7
-add_action('wp_enqueue_scripts', function () {
7
+add_action('wp_enqueue_scripts', function() {
8 8
     Component::enqueueAssets('ListPosts');
9 9
 });
10 10
 
11
-add_filter('Flynt/addComponentData?name=ListPosts', function ($data, $parentData) {
11
+add_filter('Flynt/addComponentData?name=ListPosts', function($data, $parentData) {
12 12
     $data['isArchive'] = is_home() || is_archive();
13 13
 
14 14
     $data['pagination'] = (isset($parentData['pagination'])) ? $parentData['pagination'] : null;
Please login to merge, or discard this patch.
Components/BlockMediaText/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 use Flynt\Features\Components\Component;
6 6
 use Flynt\Utils\Oembed;
7 7
 
8
-add_action('wp_enqueue_scripts', function () {
8
+add_action('wp_enqueue_scripts', function() {
9 9
     Component::enqueueAssets('BlockMediaText');
10 10
 });
11 11
 
12
-add_filter('Flynt/addComponentData?name=BlockMediaText', function ($data) {
12
+add_filter('Flynt/addComponentData?name=BlockMediaText', function($data) {
13 13
     if ($data['mediaType'] === 'oembedVideo') {
14 14
         $data['oembedLazyLoad'] = Oembed::setSrcAsDataAttribute(
15 15
             $data['oembed'],
Please login to merge, or discard this patch.
Components/SliderMedia/functions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@  discard block
 block discarded – undo
5 5
 use Flynt\Features\Components\Component;
6 6
 use Flynt\Utils\Oembed;
7 7
 
8
-add_filter('Flynt/addComponentData?name=SliderMedia', function ($data) {
9
-    $data['mediaSlides'] = array_map(function ($item) {
8
+add_filter('Flynt/addComponentData?name=SliderMedia', function($data) {
9
+    $data['mediaSlides'] = array_map(function($item) {
10 10
         if ($item['mediaType'] == 'oembed') {
11 11
             $item['oembedLazyLoad'] = Oembed::setSrcAsDataAttribute(
12 12
                 $item['oembed'],
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     return $data;
22 22
 });
23 23
 
24
-add_action('wp_enqueue_scripts', function () {
24
+add_action('wp_enqueue_scripts', function() {
25 25
     Component::enqueueAssets('SliderMedia', [
26 26
         [
27 27
             'name' => 'slick-carousel',
Please login to merge, or discard this patch.
Components/BlockVideoOembed/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,11 +5,11 @@
 block discarded – undo
5 5
 use Flynt\Features\Components\Component;
6 6
 use Flynt\Utils\Oembed;
7 7
 
8
-add_action('wp_enqueue_scripts', function () {
8
+add_action('wp_enqueue_scripts', function() {
9 9
     Component::enqueueAssets('BlockVideoOembed');
10 10
 });
11 11
 
12
-add_filter('Flynt/addComponentData?name=BlockVideoOembed', function ($data) {
12
+add_filter('Flynt/addComponentData?name=BlockVideoOembed', function($data) {
13 13
     $data['oembedLazyLoad'] = Oembed::setSrcAsDataAttribute(
14 14
         $data['oembed'],
15 15
         [
Please login to merge, or discard this patch.
Features/Jquery/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Flynt\Utils\Asset;
6 6
 use Flynt\Utils\Feature;
7 7
 
8
-add_action('wp_enqueue_scripts', function () {
8
+add_action('wp_enqueue_scripts', function() {
9 9
     $jqueryVersion = wp_scripts()->registered['jquery']->ver;
10 10
     wp_deregister_script('jquery');
11 11
 
Please login to merge, or discard this patch.