@@ -4,12 +4,12 @@ discard block |
||
4 | 4 | use Flynt\ComponentManager; |
5 | 5 | use Flynt\Utils\Asset; |
6 | 6 | |
7 | -add_action('admin_enqueue_scripts', function () { |
|
7 | +add_action('admin_enqueue_scripts', function() { |
|
8 | 8 | $componentManager = ComponentManager::getInstance(); |
9 | 9 | $templateDirectory = get_template_directory(); |
10 | 10 | $data = [ |
11 | 11 | 'templateDirectoryUri' => get_template_directory_uri(), |
12 | - 'components' => array_map(function ($componentPath) use ($templateDirectory) { |
|
12 | + 'components' => array_map(function($componentPath) use ($templateDirectory) { |
|
13 | 13 | return str_replace($templateDirectory, '', $componentPath); |
14 | 14 | }, $componentManager->getAll()), |
15 | 15 | ]; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | if (class_exists('acf')) { |
20 | 20 | if (is_admin()) { |
21 | 21 | // add image to the flexible content component name |
22 | - add_filter('acf/fields/flexible_content/layout_title', function ($title, $field, $layout, $i) { |
|
22 | + add_filter('acf/fields/flexible_content/layout_title', function($title, $field, $layout, $i) { |
|
23 | 23 | $componentManager = ComponentManager::getInstance(); |
24 | 24 | $componentName = ucfirst($layout['name']); |
25 | 25 | $componentPathFull = $componentManager->getComponentDirPath($componentName); |
@@ -5,13 +5,13 @@ |
||
5 | 5 | use Flynt\Utils\Options; |
6 | 6 | use Timber\Menu; |
7 | 7 | |
8 | -add_action('init', function () { |
|
8 | +add_action('init', function() { |
|
9 | 9 | register_nav_menus([ |
10 | 10 | 'navigation_footer' => __('Navigation Footer', 'flynt') |
11 | 11 | ]); |
12 | 12 | }); |
13 | 13 | |
14 | -add_filter('Flynt/addComponentData?name=NavigationFooter', function ($data) { |
|
14 | +add_filter('Flynt/addComponentData?name=NavigationFooter', function($data) { |
|
15 | 15 | $data['maxLevel'] = 0; |
16 | 16 | $data['menu'] = new Menu('navigation_footer'); |
17 | 17 |
@@ -5,7 +5,7 @@ |
||
5 | 5 | use Flynt\FieldVariables; |
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 | [ |
@@ -5,7 +5,7 @@ |
||
5 | 5 | use Flynt\FieldVariables; |
6 | 6 | use Flynt\Utils\Options; |
7 | 7 | |
8 | -add_filter('Flynt/addComponentData?name=SliderImages', function ($data) { |
|
8 | +add_filter('Flynt/addComponentData?name=SliderImages', function($data) { |
|
9 | 9 | $translatableOptions = Options::getTranslatable('SliderOptions'); |
10 | 10 | $data['jsonData'] = [ |
11 | 11 | 'options' => array_merge($translatableOptions, $data['options']), |
@@ -3,7 +3,7 @@ |
||
3 | 3 | use ACFComposer\ACFComposer; |
4 | 4 | use Flynt\Components; |
5 | 5 | |
6 | -add_action('Flynt/afterRegisterComponents', function () { |
|
6 | +add_action('Flynt/afterRegisterComponents', function() { |
|
7 | 7 | ACFComposer::registerFieldGroup([ |
8 | 8 | 'name' => 'pageComponents', |
9 | 9 | 'title' => 'Page Components', |
@@ -3,7 +3,7 @@ |
||
3 | 3 | use ACFComposer\ACFComposer; |
4 | 4 | use Flynt\Components; |
5 | 5 | |
6 | -add_action('Flynt/afterRegisterComponents', function () { |
|
6 | +add_action('Flynt/afterRegisterComponents', function() { |
|
7 | 7 | ACFComposer::registerFieldGroup([ |
8 | 8 | 'name' => 'postComponents', |
9 | 9 | 'title' => 'Post Components', |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | return false; |
16 | 16 | } |
17 | 17 | |
18 | -add_filter('Flynt/addComponentData?name=FeatureGoogleAnalytics', function ($data) { |
|
18 | +add_filter('Flynt/addComponentData?name=FeatureGoogleAnalytics', function($data) { |
|
19 | 19 | $googleAnalyticsOptions = Options::getGlobal('GoogleAnalytics'); |
20 | 20 | |
21 | 21 | if ($googleAnalyticsOptions) { |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | return $data; |
32 | 32 | }); |
33 | 33 | |
34 | -add_action('Flynt/thirdPartyCookies/initializeOptions', function () { |
|
34 | +add_action('Flynt/thirdPartyCookies/initializeOptions', function() { |
|
35 | 35 | Options::addTranslatable('GoogleAnalytics', [ |
36 | 36 | [ |
37 | 37 | 'label' => 'Accept Google Analytics label', |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | ]); |
44 | 44 | }); |
45 | 45 | |
46 | -add_action('wp_footer', function () { |
|
46 | +add_action('wp_footer', function() { |
|
47 | 47 | $context = Timber::get_context(); |
48 | 48 | Timber::render_string('{{ renderComponent("FeatureGoogleAnalytics") }}', $context); |
49 | 49 | }); |
50 | 50 | |
51 | -add_filter('Flynt/thirdPartyCookies', function ($features) { |
|
51 | +add_filter('Flynt/thirdPartyCookies', function($features) { |
|
52 | 52 | $googleAnalyticsTranslatableOptions = Options::getTranslatable('GoogleAnalytics'); |
53 | 53 | |
54 | 54 | $features = array_merge($features, [ |
@@ -6,7 +6,7 @@ |
||
6 | 6 | use Flynt\FieldVariables; |
7 | 7 | use Timber\Timber; |
8 | 8 | |
9 | -add_action('wp_footer', function () { |
|
9 | +add_action('wp_footer', function() { |
|
10 | 10 | $context = Timber::get_context(); |
11 | 11 | Timber::render_string('{{ renderComponent("BlockCookieNotice") }}', $context); |
12 | 12 | }); |
@@ -8,7 +8,7 @@ discard block |
||
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 | |
14 | 14 | $data['taxonomies'] = $data['taxonomies'] ?: []; |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | $data['items'] = Timber::get_posts([ |
17 | 17 | 'post_status' => 'publish', |
18 | 18 | 'post_type' => $postType, |
19 | - 'category' => join(',', array_map(function ($taxonomy) { |
|
19 | + 'category' => join(',', array_map(function($taxonomy) { |
|
20 | 20 | return $taxonomy->term_id; |
21 | 21 | }, $data['taxonomies'])), |
22 | 22 | 'posts_per_page' => $data['options']['columns'], |