@@ -70,9 +70,9 @@ |
||
70 | 70 | $pluginUrl = esc_url(admin_url('plugins.php')); |
71 | 71 | $message = ["${pluginName} Plugin not activated. Make sure you activate the plugin on the <a href=\"${pluginUrl}\">plugin page</a>."]; |
72 | 72 | $options = [ |
73 | - 'type' => 'error', |
|
74 | - 'title' => 'Flynt is missing a required plugin', |
|
75 | - 'dismissible' => false, |
|
73 | + 'type' => 'error', |
|
74 | + 'title' => 'Flynt is missing a required plugin', |
|
75 | + 'dismissible' => false, |
|
76 | 76 | ]; |
77 | 77 | |
78 | 78 | $manager->addNotice($message, $options); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | |
37 | 37 | if (!$acfActive) { |
38 | 38 | self::notifyRequiredPluginIsMissing('ACF'); |
39 | - add_filter('template_include', function () { |
|
39 | + add_filter('template_include', function() { |
|
40 | 40 | die( |
41 | 41 | 'One or more required plugins are not activated! Please <a href="' |
42 | 42 | . esc_url(admin_url('plugins.php')) |
@@ -6,13 +6,13 @@ |
||
6 | 6 | use Flynt\Utils\Asset; |
7 | 7 | use Flynt\Utils\Options; |
8 | 8 | |
9 | -add_action('init', function () { |
|
9 | +add_action('init', function() { |
|
10 | 10 | register_nav_menus([ |
11 | 11 | 'navigation_burger' => __('Navigation Burger', 'flynt') |
12 | 12 | ]); |
13 | 13 | }); |
14 | 14 | |
15 | -add_filter('Flynt/addComponentData?name=NavigationBurger', function ($data) { |
|
15 | +add_filter('Flynt/addComponentData?name=NavigationBurger', function($data) { |
|
16 | 16 | $data['menu'] = new Timber\Menu('navigation_burger'); |
17 | 17 | $data['logo'] = [ |
18 | 18 | 'src' => Asset::requireUrl( |
@@ -5,13 +5,13 @@ |
||
5 | 5 | use Timber; |
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') |
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['menu'] = new Timber\Menu('navigation_main'); |
16 | 16 | $data['logo'] = [ |
17 | 17 | 'src' => Asset::requireUrl('Components/NavigationMain/Assets/logo.svg'), |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | namespace Flynt\TinyMce; |
10 | 10 | |
11 | 11 | // First Toolbar |
12 | -add_filter('mce_buttons', function ($buttons) { |
|
12 | +add_filter('mce_buttons', function($buttons) { |
|
13 | 13 | $config = getConfig(); |
14 | 14 | if ($config && isset($config['toolbars'])) { |
15 | 15 | $toolbars = $config['toolbars']; |
@@ -21,11 +21,11 @@ discard block |
||
21 | 21 | }); |
22 | 22 | |
23 | 23 | // Second Toolbar |
24 | -add_filter('mce_buttons_2', function ($buttons) { |
|
24 | +add_filter('mce_buttons_2', function($buttons) { |
|
25 | 25 | return []; |
26 | 26 | }); |
27 | 27 | |
28 | -add_filter('tiny_mce_before_init', function ($init) { |
|
28 | +add_filter('tiny_mce_before_init', function($init) { |
|
29 | 29 | $config = getConfig(); |
30 | 30 | if ($config) { |
31 | 31 | if (isset($config['blockformats'])) { |
@@ -40,11 +40,11 @@ discard block |
||
40 | 40 | return $init; |
41 | 41 | }); |
42 | 42 | |
43 | -add_filter('acf/fields/wysiwyg/toolbars', function ($toolbars) { |
|
43 | +add_filter('acf/fields/wysiwyg/toolbars', function($toolbars) { |
|
44 | 44 | // Load Toolbars and parse them into TinyMCE |
45 | 45 | $config = getConfig(); |
46 | 46 | if ($config && !empty($config['toolbars'])) { |
47 | - $toolbars = array_map(function ($toolbar) { |
|
47 | + $toolbars = array_map(function($toolbar) { |
|
48 | 48 | array_unshift($toolbar, []); |
49 | 49 | return $toolbar; |
50 | 50 | }, $config['toolbars']); |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | { |
57 | 57 | if (!empty($blockFormats)) { |
58 | 58 | $blockFormatStrings = array_map( |
59 | - function ($tag, $label) { |
|
59 | + function($tag, $label) { |
|
60 | 60 | return "${label}=${tag}"; |
61 | 61 | }, |
62 | 62 | $blockFormats, |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | - use Timber\Timber; |
|
4 | - use Timber\Post; |
|
3 | + use Timber\Timber; |
|
4 | + use Timber\Post; |
|
5 | 5 | |
6 | 6 | add_filter('wp_insert_post_data', function ($data, $postArr) { |
7 | 7 | if ($postArr['post_type'] === 'revision') { |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | use Timber\Timber; |
4 | 4 | use Timber\Post; |
5 | 5 | |
6 | -add_filter('wp_insert_post_data', function ($data, $postArr) { |
|
6 | +add_filter('wp_insert_post_data', function($data, $postArr) { |
|
7 | 7 | if ($postArr['post_type'] === 'revision') { |
8 | 8 | return $data; |
9 | 9 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | return $data; |
14 | 14 | }, 99, 2); |
15 | 15 | |
16 | -add_shortcode('flyntTheContent', function ($attrs) { |
|
16 | +add_shortcode('flyntTheContent', function($attrs) { |
|
17 | 17 | $postId = $attrs['id']; |
18 | 18 | $context = Timber::get_context(); |
19 | 19 | $context['post'] = $post = new Post($postId); |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Flynt\Utils\TwigReadingTimeExtension; |
6 | 6 | |
7 | -add_filter('get_twig', function ($twig) { |
|
7 | +add_filter('get_twig', function($twig) { |
|
8 | 8 | $twig->addExtension(new TwigReadingTimeExtension()); |
9 | 9 | return $twig; |
10 | 10 | }); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | const POST_TYPE = 'post'; |
10 | 10 | const FILTER_BY_TAXONOMY = 'category'; |
11 | 11 | |
12 | -add_filter('Flynt/addComponentData?name=GridPostsArchive', function ($data) { |
|
12 | +add_filter('Flynt/addComponentData?name=GridPostsArchive', function($data) { |
|
13 | 13 | $postType = POST_TYPE; |
14 | 14 | $taxonomy = FILTER_BY_TAXONOMY; |
15 | 15 | $terms = get_terms([ |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | ]); |
19 | 19 | $queriedObject = get_queried_object(); |
20 | 20 | if (count($terms) > 1) { |
21 | - $data['terms'] = array_map(function ($term) use ($queriedObject) { |
|
21 | + $data['terms'] = array_map(function($term) use ($queriedObject) { |
|
22 | 22 | $timberTerm = new Term($term); |
23 | 23 | if ($queriedObject) { |
24 | 24 | $timberTerm->isActive = $queriedObject->taxonomy === $term->taxonomy && $queriedObject->term_id === $term->term_id; |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $data['isHome'] = true; |
38 | 38 | $data['title'] = $queriedObject->post_title ?? get_bloginfo('name'); |
39 | 39 | } else { |
40 | - $data['title'] = get_the_archive_title(); |
|
40 | + $data['title'] = get_the_archive_title(); |
|
41 | 41 | $data['description'] = get_the_archive_description(); |
42 | 42 | } |
43 | 43 |
@@ -8,14 +8,14 @@ |
||
8 | 8 | |
9 | 9 | const POST_TYPE = 'post'; |
10 | 10 | |
11 | -add_filter('Flynt/addComponentData?name=GridPostsLatest', function ($data) { |
|
11 | +add_filter('Flynt/addComponentData?name=GridPostsLatest', function($data) { |
|
12 | 12 | $postType = POST_TYPE; |
13 | 13 | $data['taxonomies'] = $data['taxonomies'] ?: []; |
14 | 14 | |
15 | 15 | $data['items'] = Timber::get_posts([ |
16 | 16 | 'post_status' => 'publish', |
17 | 17 | 'post_type' => $postType, |
18 | - 'category' => join(',', array_map(function ($taxonomy) { |
|
18 | + 'category' => join(',', array_map(function($taxonomy) { |
|
19 | 19 | return $taxonomy->term_id; |
20 | 20 | }, $data['taxonomies'])), |
21 | 21 | 'posts_per_page' => $data['options']['postCount'], |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Flynt\Utils\Options; |
6 | 6 | |
7 | -add_filter('Flynt/addComponentData?name=BlockPostHeader', function ($data) { |
|
7 | +add_filter('Flynt/addComponentData?name=BlockPostHeader', function($data) { |
|
8 | 8 | |
9 | 9 | return $data; |
10 | 10 | }); |