Completed
Push — componentlibrary_vendorAssets ( 8bf5e3 )
by Dominik
01:31
created
Components/BlockVideoOembed/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;
6 6
 use Flynt\Utils\Oembed;
7 7
 
8
-add_filter('Flynt/addComponentData?name=BlockVideoOembed', function ($data) {
8
+add_filter('Flynt/addComponentData?name=BlockVideoOembed', function($data) {
9 9
     $data['video'] = Oembed::setSrcAsDataAttribute(
10 10
         $data['oembed'],
11 11
         [
Please login to merge, or discard this patch.
Components/ListSocial/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 use Flynt;
6 6
 use Flynt\Utils\Asset;
7 7
 
8
-add_filter('Flynt/addComponentData?name=ListSocial', function ($data) {
8
+add_filter('Flynt/addComponentData?name=ListSocial', function($data) {
9 9
     if (!empty($data['social'])) {
10
-        $data['social'] = array_map(function ($item) {
10
+        $data['social'] = array_map(function($item) {
11 11
             $item['icon'] = Asset::getContents("Components/ListSocial/Assets/{$item['platform']}.svg");
12 12
             return $item;
13 13
         }, $data['social']);
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,13 +5,13 @@
 block discarded – undo
5 5
 use Timber\Menu;
6 6
 use Flynt\Utils\Asset;
7 7
 
8
-add_action('init', function () {
8
+add_action('init', function() {
9 9
     register_nav_menus([
10 10
         'navigation_main' => __('Navigation Main', 'flynt-starter-theme')
11 11
     ]);
12 12
 });
13 13
 
14
-add_filter('Flynt/addComponentData?name=NavigationMain', function ($data) {
14
+add_filter('Flynt/addComponentData?name=NavigationMain', function($data) {
15 15
     $data['maxLevel'] = 0;
16 16
     $data['menu'] = new Menu('navigation_main');
17 17
 
Please login to merge, or discard this patch.
Components/NavigationFooter/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@
 block discarded – undo
4 4
 
5 5
 use Timber\Menu;
6 6
 
7
-add_action('init', function () {
7
+add_action('init', function() {
8 8
     register_nav_menus([
9 9
         'navigation_footer' => __('Navigation Footer', 'flynt-starter-theme')
10 10
     ]);
11 11
 });
12 12
 
13
-add_filter('Flynt/addComponentData?name=NavigationFooter', function ($data) {
13
+add_filter('Flynt/addComponentData?name=NavigationFooter', function($data) {
14 14
     $data['maxLevel'] = 0;
15 15
     $data['menu'] = new Menu('navigation_footer');
16 16
 
Please login to merge, or discard this patch.
Components/ListPostCards/functions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Flynt;
5 5
 use Timber\Timber;
6 6
 
7
-add_filter('Flynt/addComponentData?name=ListPostCards', function ($data) {
7
+add_filter('Flynt/addComponentData?name=ListPostCards', function($data) {
8 8
     $posts = Timber::get_posts([
9 9
         'post_type'         => 'post',
10 10
         'posts_per_page'    => 4,
Please login to merge, or discard this patch.
Components/GridDownloadPortrait/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Flynt;
6 6
 
7
-add_filter('Flynt/addComponentData?name=GridDownloadPortrait', function ($data) {
7
+add_filter('Flynt/addComponentData?name=GridDownloadPortrait', function($data) {
8 8
     if (!empty($data['items'])) {
9
-        $data['items'] = array_map(function ($item) {
9
+        $data['items'] = array_map(function($item) {
10 10
             if ($item['itemType'] === 'itemFile') {
11 11
                 $fileSize = filesize(get_attached_file($item['file']['id']));
12 12
                 $item['file']['fileSize'] = size_format($fileSize);
Please login to merge, or discard this patch.
Components/ListComponents/functions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
 use Flynt\ComponentManager;
7 7
 use Flynt\Utils\Asset;
8 8
 
9
-add_filter('Flynt/addComponentData?name=ListComponents', function ($data) {
9
+add_filter('Flynt/addComponentData?name=ListComponents', function($data) {
10 10
     if (!empty($data['componentBlocks'])) {
11
-        $data['componentBlocks'] = array_map(function ($block) {
11
+        $data['componentBlocks'] = array_map(function($block) {
12 12
             $componentPaths = explode('/', $block['component']);
13
-            $block['component'] = implode('/', array_slice($componentPaths, count($componentPaths)-3, 3));
13
+            $block['component'] = implode('/', array_slice($componentPaths, count($componentPaths) - 3, 3));
14 14
 
15 15
             if (file_exists(Asset::requirePath($block['component'] . 'preview-desktop.jpg'))) {
16 16
                 $src = Asset::requireUrl($block['component'] . 'preview-desktop.jpg');
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
                 ];
23 23
             }
24 24
 
25
-            if (file_exists(Asset::requirePath($block['component']."preview-mobile.jpg"))) {
25
+            if (file_exists(Asset::requirePath($block['component'] . "preview-mobile.jpg"))) {
26 26
                 $src = Asset::requireUrl($block['component'] . 'preview-mobile.jpg');
27 27
                 list($width, $height) = getimagesize(Asset::requirePath($block['component'] . 'preview-mobile.jpg'));
28 28
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 });
46 46
 
47 47
 
48
-add_filter('acf/load_field/name=component', function ($field) {
48
+add_filter('acf/load_field/name=component', function($field) {
49 49
     $componentManager = ComponentManager::getInstance();
50 50
     $field['choices'] = array_flip($componentManager->getAll());
51 51
     return $field;
Please login to merge, or discard this patch.
lib/Utils/Options.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             acf_add_local_field_group($fieldGroup);
86 86
         }
87 87
 
88
-        add_action('current_screen', function ($currentScreen) {
88
+        add_action('current_screen', function($currentScreen) {
89 89
             foreach (static::OPTION_TYPES as $optionType => $option) {
90 90
                 $isTranslatable = $option['translatable'];
91 91
                 $toplevelPageId = 'toplevel_page_' . $optionType;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
                     add_filter('acf/settings/current_language', 'Flynt\Utils\Options::getDefaultAcfLanguage', 101);
100 100
 
101 101
                     // hide language selector in admin bar
102
-                    add_action('wp_before_admin_bar_render', function () {
102
+                    add_action('wp_before_admin_bar_render', function() {
103 103
                         $adminBar = $GLOBALS['wp_admin_bar'];
104 104
                         $adminBar->remove_menu('WPML_ALS');
105 105
                     });
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 
219 219
     protected static function prefixFields($fields, $prefix)
220 220
     {
221
-        return array_map(function ($field) use ($prefix) {
221
+        return array_map(function($field) use ($prefix) {
222 222
             $field['name'] = $prefix . '_' . $field['name'];
223 223
             return $field;
224 224
         }, $fields);
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
     protected static function collectOptionsWithPrefix($options, $prefix)
283 283
     {
284 284
         $optionKeys = is_array($options) ? array_keys($options) : [];
285
-        return array_reduce($optionKeys, function ($carry, $key) use ($options, $prefix) {
285
+        return array_reduce($optionKeys, function($carry, $key) use ($options, $prefix) {
286 286
             $count = 0;
287 287
             $option = $options[$key];
288 288
             $key = str_replace($prefix, '', $key, $count);
Please login to merge, or discard this patch.
Features/AdminComponentPreview/functions.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 
6 6
 define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\');
7 7
 
8
-add_action('wp_enqueue_scripts', function () {
8
+add_action('wp_enqueue_scripts', function() {
9 9
     if (is_user_logged_in()) {
10 10
         Asset::register([
11 11
             'type' => 'script',
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     wp_localize_script('Flynt/assets/auth', 'wpData', $data);
21 21
 });
22 22
 
23
-add_action('admin_enqueue_scripts', function () {
23
+add_action('admin_enqueue_scripts', function() {
24 24
     $data = [
25 25
         'templateDirectoryUri' => get_template_directory_uri() . '/dist',
26 26
     ];
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     if (is_user_logged_in() || is_admin()) {
32 32
         if (is_admin()) {
33 33
             // add image to the flexible content component name
34
-            add_filter('acf/fields/flexible_content/layout_title', function ($title, $field, $layout, $i) {
34
+            add_filter('acf/fields/flexible_content/layout_title', function($title, $field, $layout, $i) {
35 35
                 $componentName = ucfirst($layout['name']);
36 36
                 $componentPath = "Components/{$componentName}";
37 37
                 $componentPreviewDesktopPath = Asset::requirePath("{$componentPath}/preview-desktop.jpg");
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             }, 11, 4);
48 48
         } else {
49 49
             // adds Component Previews button to admin bar on front-end when logged in
50
-            add_action('admin_bar_menu', function ($wpAdminBar) {
50
+            add_action('admin_bar_menu', function($wpAdminBar) {
51 51
                 $title = __('Component Previews', 'flynt-starter-theme');
52 52
                 $wpAdminBar->add_node([
53 53
                     'id' => 'toggleComponentPreviews',
Please login to merge, or discard this patch.