@@ -32,6 +32,9 @@ |
||
| 32 | 32 | return $output; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | + /** |
|
| 36 | + * @param string $componentName |
|
| 37 | + */ |
|
| 35 | 38 | public function renderComponent(Twig_Environment $env, $context, $componentName, $data = [], $withContext = true, $ignoreMissing = false, $sandboxed = false) |
| 36 | 39 | { |
| 37 | 40 | $data = $data === false ? [] : $data; |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | acf_add_local_field_group($fieldGroup); |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - add_action('current_screen', function ($currentScreen) { |
|
| 90 | + add_action('current_screen', function($currentScreen) { |
|
| 91 | 91 | foreach (static::OPTION_TYPES as $optionType => $option) { |
| 92 | 92 | $isTranslatable = $option['translatable']; |
| 93 | 93 | $toplevelPageId = 'toplevel_page_' . $optionType; |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | add_filter('acf/settings/current_language', 'Flynt\Utils\Options::getDefaultAcfLanguage', 101); |
| 102 | 102 | |
| 103 | 103 | // hide language selector in admin bar |
| 104 | - add_action('wp_before_admin_bar_render', function () { |
|
| 104 | + add_action('wp_before_admin_bar_render', function() { |
|
| 105 | 105 | $adminBar = $GLOBALS['wp_admin_bar']; |
| 106 | 106 | $adminBar->remove_menu('WPML_ALS'); |
| 107 | 107 | }); |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | $optionNames = (((static::$registeredOptions[$optionType] ?? [])[lcfirst($optionCategory)] ?? [])[$subPageName] ?? []); |
| 152 | 152 | return array_combine( |
| 153 | 153 | $optionNames, |
| 154 | - array_map(function ($optionName) use ($prefix, $isTranslatable) { |
|
| 154 | + array_map(function($optionName) use ($prefix, $isTranslatable) { |
|
| 155 | 155 | $fieldKey = $prefix . $optionName; |
| 156 | 156 | return static::getOptionField($fieldKey, $isTranslatable); |
| 157 | 157 | }, $optionNames) |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | |
| 236 | 236 | protected static function prefixFields($fields, $prefix) |
| 237 | 237 | { |
| 238 | - return array_map(function ($field) use ($prefix) { |
|
| 238 | + return array_map(function($field) use ($prefix) { |
|
| 239 | 239 | $field['name'] = $prefix . '_' . $field['name']; |
| 240 | 240 | return $field; |
| 241 | 241 | }, $fields); |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | |
| 7 | 7 | define(__NAMESPACE__ . '\NS', __NAMESPACE__ . '\\'); |
| 8 | 8 | |
| 9 | -add_action('Flynt/afterRegisterComponents', function () { |
|
| 9 | +add_action('Flynt/afterRegisterComponents', function() { |
|
| 10 | 10 | if ((WP_ENV === 'development' || current_user_can('editor') || current_user_can('administrator')) && isset($_GET['log'])) { |
| 11 | 11 | if (isset($_GET['component']) && !empty($_GET['component'])) { |
| 12 | 12 | define(__NAMESPACE__ . '\COMPONENT_WHITELIST', explode(',', $_GET['component'])); |
@@ -32,21 +32,21 @@ discard block |
||
| 32 | 32 | { |
| 33 | 33 | $type = gettype($data); |
| 34 | 34 | $output = json_encode($data); |
| 35 | - $result = "<script>console.log({$output});</script>\n"; |
|
| 35 | + $result = "<script>console.log({$output});</script>\n"; |
|
| 36 | 36 | echoDebug($result, $postpone); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | function consoleTable($data, $postpone = true) |
| 40 | 40 | { |
| 41 | 41 | $output = json_encode($data); |
| 42 | - $result = "<script>console.table({$output});</script>\n"; |
|
| 42 | + $result = "<script>console.table({$output});</script>\n"; |
|
| 43 | 43 | echoDebug($result, $postpone); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | function echoDebug($data, $postpone) |
| 47 | 47 | { |
| 48 | 48 | if ($postpone) { |
| 49 | - add_action('wp_footer', function () use ($data) { |
|
| 49 | + add_action('wp_footer', function() use ($data) { |
|
| 50 | 50 | echo $data; |
| 51 | 51 | }, 30); |
| 52 | 52 | } else { |
@@ -6,7 +6,7 @@ |
||
| 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'); |