Passed
Branch master (26225b)
by Dominik
03:14
created
Components/ListSearchResults/functions.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
 use Flynt\Utils\Options;
7 7
 use Timber\Timber;
8 8
 
9
-add_filter('Flynt/addComponentData?name=ListSearchResults', function ($data) {
9
+add_filter('Flynt/addComponentData?name=ListSearchResults', function($data) {
10 10
     $data['prevIcon'] = Asset::getContents('Components/ListSearchResults/Assets/navigation-prev.svg');
11 11
     $data['nextIcon'] = Asset::getContents('Components/ListSearchResults/Assets/navigation-next.svg');
12 12
     $data['searchIcon'] = Asset::getContents('Components/ListSearchResults/Assets/search.svg');
Please login to merge, or discard this patch.
Components/FeaturePasswordForm/functions.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 add_filter('the_password_form', function ($output) {
9 9
     $context = Timber::get_context();
10 10
     $context['form'] = [
11
-      'url' => site_url('/wp-login.php?action=postpass', 'login_post')
11
+        'url' => site_url('/wp-login.php?action=postpass', 'login_post')
12 12
     ];
13 13
 
14 14
     return Timber::fetch('index.twig', $context);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Timber\Timber;
6 6
 use Timber\Post;
7 7
 
8
-add_filter('the_password_form', function ($output) {
8
+add_filter('the_password_form', function($output) {
9 9
     $context = Timber::get_context();
10 10
     $context['form'] = [
11 11
       'url' => site_url('/wp-login.php?action=postpass', 'login_post')
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')
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/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\Api;
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/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\Api;
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/ListComponents/functions.php 1 patch
Spacing   +4 added lines, -4 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'] . 'screenshot.png'))) {
16 16
                 $src = Asset::requireUrl($block['component'] . 'screenshot.png');
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 });
37 37
 
38 38
 
39
-add_filter('acf/load_field/name=component', function ($field) {
39
+add_filter('acf/load_field/name=component', function($field) {
40 40
     $componentManager = ComponentManager::getInstance();
41 41
     $field['choices'] = array_flip($componentManager->getAll());
42 42
     return $field;
Please login to merge, or discard this patch.
Components/FeatureAdminComponentScreenshots/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 
4 4
 use Flynt\Utils\Asset;
5 5
 
6
-add_action('admin_enqueue_scripts', function () {
6
+add_action('admin_enqueue_scripts', function() {
7 7
     $data = [
8 8
         'templateDirectoryUri' => get_template_directory_uri() . '/dist',
9 9
     ];
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 if (class_exists('acf')) {
14 14
     if (is_admin()) {
15 15
         // add image to the flexible content component name
16
-        add_filter('acf/fields/flexible_content/layout_title', function ($title, $field, $layout, $i) {
16
+        add_filter('acf/fields/flexible_content/layout_title', function($title, $field, $layout, $i) {
17 17
             $componentName = ucfirst($layout['name']);
18 18
             $componentPath = "Components/{$componentName}";
19 19
             $componentScreenshotPath = Asset::requirePath("{$componentPath}/screenshot.png");
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\Api;
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/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\Api;
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.