| @@ -8,7 +8,7 @@ | ||
| 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); | 
| @@ -5,7 +5,7 @@ | ||
| 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') | 
| @@ -4,13 +4,13 @@ | ||
| 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 | |
| @@ -4,9 +4,9 @@ | ||
| 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); | 
| @@ -3,7 +3,7 @@ discard block | ||
| 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 | ||
| 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"); | 
| @@ -5,9 +5,9 @@ | ||
| 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']); | 
| @@ -5,7 +5,7 @@ | ||
| 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 | [ | 
| @@ -3,7 +3,7 @@ | ||
| 3 | 3 | use ACFComposer\ACFComposer; | 
| 4 | 4 | use Flynt\Api; | 
| 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\Api; | 
| 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', | 
| @@ -26,7 +26,7 @@ discard block | ||
| 26 | 26 | |
| 27 | 27 | // Convert ACF Field of type relationship to a Timber\Post and add all ACF Fields of that Post | 
| 28 | 28 |  add_filter('acf/format_value/type=relationship', NS . 'formatPostObject', 100); | 
| 29 | -add_filter('get_twig', function ($twig) { | |
| 29 | +add_filter('get_twig', function($twig) { | |
| 30 | 30 | $twig->addExtension(new TwigExtensionFlynt()); | 
| 31 | 31 | return $twig; | 
| 32 | 32 | }); | 
| @@ -42,7 +42,7 @@ discard block | ||
| 42 | 42 | function formatGallery($value) | 
| 43 | 43 |  { | 
| 44 | 44 |      if (!empty($value)) { | 
| 45 | -        $value = array_map(function ($image) { | |
| 45 | +        $value = array_map(function($image) { | |
| 46 | 46 | return new Image($image); | 
| 47 | 47 | }, $value); | 
| 48 | 48 | } | 
| @@ -67,8 +67,8 @@ discard block | ||
| 67 | 67 | return $value; | 
| 68 | 68 | } | 
| 69 | 69 | |
| 70 | -add_action('timber/twig/filters', function ($twig) { | |
| 71 | -    $twig->addFunction(new \Twig_SimpleFunction('placeholderImage', function ($width, $height, $color = null) { | |
| 70 | +add_action('timber/twig/filters', function($twig) { | |
| 71 | +    $twig->addFunction(new \Twig_SimpleFunction('placeholderImage', function($width, $height, $color = null) { | |
| 72 | 72 | $width = round($width); | 
| 73 | 73 | $height = round($height); | 
| 74 | 74 |          $colorRect = $color ? "<rect width='{$width}' height='{$height}' style='fill:$color' />" : ''; |