@@ -270,6 +270,9 @@ discard block |
||
| 270 | 270 | }); |
| 271 | 271 | } |
| 272 | 272 | |
| 273 | + /** |
|
| 274 | + * @param string $optionCategoryName |
|
| 275 | + */ |
|
| 273 | 276 | protected static function createSubPageFromConfig($filePath, $optionCategoryName, $subPageName) |
| 274 | 277 | { |
| 275 | 278 | $fields = json_decode(file_get_contents($filePath), true); |
@@ -286,6 +289,9 @@ discard block |
||
| 286 | 289 | } |
| 287 | 290 | } |
| 288 | 291 | |
| 292 | + /** |
|
| 293 | + * @param string $subPageName |
|
| 294 | + */ |
|
| 289 | 295 | protected static function addOptionSubPage($optionCategoryName, $subPageName, $optionType, $fields) |
| 290 | 296 | { |
| 291 | 297 | $prettySubPageName = StringHelpers::splitCamelCase($subPageName); |
@@ -314,6 +320,9 @@ discard block |
||
| 314 | 320 | ); |
| 315 | 321 | } |
| 316 | 322 | |
| 323 | + /** |
|
| 324 | + * @param string $menuSlug |
|
| 325 | + */ |
|
| 317 | 326 | protected static function addFieldGroupToSubPage($parentMenuSlug, $menuSlug, $prettySubPageName, $fields) |
| 318 | 327 | { |
| 319 | 328 | $fieldGroup = ACFComposer\ResolveConfig::forFieldGroup( |
@@ -337,6 +346,10 @@ discard block |
||
| 337 | 346 | acf_add_local_field_group($fieldGroup); |
| 338 | 347 | } |
| 339 | 348 | |
| 349 | + /** |
|
| 350 | + * @param string $optionCategory |
|
| 351 | + * @param string $feature |
|
| 352 | + */ |
|
| 340 | 353 | protected static function checkFeature($optionCategory, $feature) |
| 341 | 354 | { |
| 342 | 355 | if (array_key_exists($optionCategory, self::$optionCategories) && !Feature::isRegistered($feature)) { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | |
| 116 | 116 | // find and replace relevant keys, then return an array of all options for this Sub-Page |
| 117 | 117 | $optionKeys = is_array($options) ? array_keys($options) : []; |
| 118 | - $options = array_reduce($optionKeys, function ($carry, $key) use ($options, $prefix) { |
|
| 118 | + $options = array_reduce($optionKeys, function($carry, $key) use ($options, $prefix) { |
|
| 119 | 119 | $count = 0; |
| 120 | 120 | $option = $options[$key]; |
| 121 | 121 | $key = str_replace($prefix, '', $key, $count); |
@@ -144,10 +144,10 @@ discard block |
||
| 144 | 144 | 12 |
| 145 | 145 | ); |
| 146 | 146 | |
| 147 | - add_filter('Flynt/addComponentData', function ($data, $parentData, $config) { |
|
| 147 | + add_filter('Flynt/addComponentData', function($data, $parentData, $config) { |
|
| 148 | 148 | |
| 149 | 149 | // get fields for this component |
| 150 | - $options = array_reduce(array_keys(self::$optionTypes), function ($carry, $optionType) use ($config) { |
|
| 150 | + $options = array_reduce(array_keys(self::$optionTypes), function($carry, $optionType) use ($config) { |
|
| 151 | 151 | return array_merge($carry, self::getOptions($optionType, 'Component', $config['name'])); |
| 152 | 152 | }, []); |
| 153 | 153 | |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | ]; |
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - add_action('current_screen', function ($currentScreen) { |
|
| 250 | + add_action('current_screen', function($currentScreen) { |
|
| 251 | 251 | foreach (self::$optionTypes as $optionType => $option) { |
| 252 | 252 | $isTranslatable = $option['translatable']; |
| 253 | 253 | $toplevelPageId = 'toplevel_page_' . $optionType; |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | add_filter('acf/settings/current_language', 'Flynt\Features\Acf\OptionPages::getDefaultAcfLanguage', 101); |
| 262 | 262 | |
| 263 | 263 | // hide language selector in admin bar |
| 264 | - add_action('wp_before_admin_bar_render', function () { |
|
| 264 | + add_action('wp_before_admin_bar_render', function() { |
|
| 265 | 265 | $adminBar = $GLOBALS['wp_admin_bar']; |
| 266 | 266 | $adminBar->remove_menu('WPML_ALS'); |
| 267 | 267 | }); |
@@ -357,7 +357,7 @@ discard block |
||
| 357 | 357 | |
| 358 | 358 | protected static function prefixFields($fields, $prefix) |
| 359 | 359 | { |
| 360 | - return array_map(function ($field) use ($prefix) { |
|
| 360 | + return array_map(function($field) use ($prefix) { |
|
| 361 | 361 | $field['name'] = $prefix . '_' . $field['name']; |
| 362 | 362 | return $field; |
| 363 | 363 | }, $fields); |
@@ -408,7 +408,7 @@ discard block |
||
| 408 | 408 | |
| 409 | 409 | protected static function combineArrayDefaults(array $array, array $defaults) |
| 410 | 410 | { |
| 411 | - return array_map(function ($value) use ($defaults) { |
|
| 411 | + return array_map(function($value) use ($defaults) { |
|
| 412 | 412 | return is_array($value) ? array_merge($defaults, $value) : []; |
| 413 | 413 | }, $array); |
| 414 | 414 | } |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | { |
| 7 | 7 | public static function init() |
| 8 | 8 | { |
| 9 | - add_filter('acf/fields/google_map/api', function ($api) { |
|
| 9 | + add_filter('acf/fields/google_map/api', function($api) { |
|
| 10 | 10 | $apiKey = OptionPages::get('globalOptions', 'feature', 'Acf', 'googleMapsApiKey'); |
| 11 | 11 | if ($apiKey) { |
| 12 | 12 | $api['key'] = $apiKey; |