Completed
Pull Request — master (#229)
by Doğa
06:39 queued 03:17
created
Features/Acf/OptionPages.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         self::createOptionPages();
72 72
 
73 73
         // Register Categories
74
-        add_action('acf/init', function () {
74
+        add_action('acf/init', function() {
75 75
             self::addComponentSubPages();
76 76
             self::addFeatureSubPages();
77 77
             self::addCustomPostTypeSubPages();
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     public static function addComponentData($data, $parentData, $config)
150 150
     {
151 151
         // get fields for this component
152
-        $options = array_reduce(array_keys(self::$optionTypes), function ($carry, $optionType) use ($config) {
152
+        $options = array_reduce(array_keys(self::$optionTypes), function($carry, $optionType) use ($config) {
153 153
             return array_merge($carry, self::get($optionType, 'Component', $config['name']));
154 154
         }, []);
155 155
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
             ];
218 218
         }
219 219
 
220
-        add_action('current_screen', function ($currentScreen) {
220
+        add_action('current_screen', function($currentScreen) {
221 221
             foreach (self::$optionTypes as $optionType => $option) {
222 222
                 $isTranslatable = $option['translatable'];
223 223
                 $toplevelPageId = 'toplevel_page_' . $optionType;
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
                     add_filter('acf/settings/current_language', 'Flynt\Features\Acf\OptionPages::getDefaultAcfLanguage', 101);
232 232
 
233 233
                     // hide language selector in admin bar
234
-                    add_action('wp_before_admin_bar_render', function () {
234
+                    add_action('wp_before_admin_bar_render', function() {
235 235
                         $adminBar = $GLOBALS['wp_admin_bar'];
236 236
                         $adminBar->remove_menu('WPML_ALS');
237 237
                     });
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
 
329 329
     protected static function prefixFields($fields, $prefix)
330 330
     {
331
-        return array_map(function ($field) use ($prefix) {
331
+        return array_map(function($field) use ($prefix) {
332 332
             $field['name'] = $prefix . '_' . $field['name'];
333 333
             return $field;
334 334
         }, $fields);
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     protected static function collectOptionsWithPrefix($options, $prefix)
393 393
     {
394 394
         $optionKeys = is_array($options) ? array_keys($options) : [];
395
-        return array_reduce($optionKeys, function ($carry, $key) use ($options, $prefix) {
395
+        return array_reduce($optionKeys, function($carry, $key) use ($options, $prefix) {
396 396
             $count = 0;
397 397
             $option = $options[$key];
398 398
             $key = str_replace($prefix, '', $key, $count);
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 
406 406
     protected static function combineArrayDefaults(array $array, array $defaults)
407 407
     {
408
-        return array_map(function ($value) use ($defaults) {
408
+        return array_map(function($value) use ($defaults) {
409 409
             return is_array($value) ? array_merge($defaults, $value) : [];
410 410
         }, $array);
411 411
     }
Please login to merge, or discard this patch.