@@ -5,7 +5,7 @@ |
||
| 5 | 5 | use Flynt\Api; |
| 6 | 6 | use Flynt\Utils\Options; |
| 7 | 7 | |
| 8 | -add_filter('Flynt/addComponentData?name=SliderImageGallery', function ($data) { |
|
| 8 | +add_filter('Flynt/addComponentData?name=SliderImageGallery', function($data) { |
|
| 9 | 9 | $data['jsonData'] = [ |
| 10 | 10 | 'options' => Options::get('translatableOptions', 'feature', 'SliderOptions') |
| 11 | 11 | ]; |
@@ -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 | }); |
@@ -8,7 +8,7 @@ |
||
| 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['items'] = Timber::get_posts([ |
@@ -4,10 +4,10 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Flynt\Api; |
| 6 | 6 | |
| 7 | -add_filter('Flynt/addComponentData?name=ListLogos', function ($data) { |
|
| 7 | +add_filter('Flynt/addComponentData?name=ListLogos', function($data) { |
|
| 8 | 8 | |
| 9 | 9 | if (!empty($data['items'])) { |
| 10 | - $data['items'] = array_map(function ($item) { |
|
| 10 | + $data['items'] = array_map(function($item) { |
|
| 11 | 11 | if (isset($item['image']->post_mime_type) && $item['image']->post_mime_type === 'image/svg+xml') { |
| 12 | 12 | $path = get_attached_file($item['image']->ID); |
| 13 | 13 | $item['image']->svg = file_get_contents($path); |
@@ -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 | |