@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | if (count($files) === 0) { |
58 | 58 | $dir = get_template_directory() . '/' . $dir; |
59 | 59 | |
60 | - self::iterateDir($dir, function ($file) { |
|
60 | + self::iterateDir($dir, function($file) { |
|
61 | 61 | if ($file->isDir()) { |
62 | 62 | $dirPath = trim(str_replace(get_template_directory(), '', $file->getPathname()), '/'); |
63 | 63 | self::loadPhpFiles($dirPath); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | } |
68 | 68 | }); |
69 | 69 | } else { |
70 | - array_walk($files, function ($file) use ($dir) { |
|
70 | + array_walk($files, function($file) use ($dir) { |
|
71 | 71 | $filePath = $dir . '/' . ltrim($file, '/'); |
72 | 72 | |
73 | 73 | if (!locate_template($filePath, true, true)) { |
@@ -66,10 +66,10 @@ discard block |
||
66 | 66 | public static function consoleDebug($data, $postpone = true, $title = 'PHP', $logType = 'log') |
67 | 67 | { |
68 | 68 | if (in_array($logType, ['log', 'error', 'trace'])) { |
69 | - $title .= '(' . self::getCallerFile(2) .'):'; |
|
69 | + $title .= '(' . self::getCallerFile(2) . '):'; |
|
70 | 70 | $type = gettype($data); |
71 | 71 | $output = json_encode($data); |
72 | - $result = "<script>console.{$logType}('{$title}', '({$type})', {$output});</script>\n"; |
|
72 | + $result = "<script>console.{$logType}('{$title}', '({$type})', {$output});</script>\n"; |
|
73 | 73 | self::echoDebug($result, $postpone); |
74 | 74 | } |
75 | 75 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | protected static function echoDebug($data, $postpone) |
111 | 111 | { |
112 | 112 | if ($postpone) { |
113 | - add_action('wp_footer', function () use ($data) { |
|
113 | + add_action('wp_footer', function() use ($data) { |
|
114 | 114 | echo $data; |
115 | 115 | }, 30); |
116 | 116 | } else { |
@@ -85,7 +85,7 @@ |
||
85 | 85 | . "<p><strong>{$options['title']}</strong></p>" |
86 | 86 | . $msg . '</div>'; |
87 | 87 | |
88 | - add_action('admin_notices', function () use ($msg) { |
|
88 | + add_action('admin_notices', function() use ($msg) { |
|
89 | 89 | echo $msg; |
90 | 90 | }); |
91 | 91 |
@@ -149,10 +149,10 @@ |
||
149 | 149 | } |
150 | 150 | if ($type === 'style') { |
151 | 151 | global $wp_styles; |
152 | - $repo =& $wp_styles; |
|
152 | + $repo = & $wp_styles; |
|
153 | 153 | } else { |
154 | 154 | global $wp_scripts; |
155 | - $repo =& $wp_scripts; |
|
155 | + $repo = & $wp_scripts; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | $asset = $repo->query($handle, 'registered'); |
@@ -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); |
@@ -34,11 +34,11 @@ |
||
34 | 34 | */ |
35 | 35 | public static function indexedValuesToAssocKeys(array $array) |
36 | 36 | { |
37 | - $values = array_map(function ($value) { |
|
37 | + $values = array_map(function($value) { |
|
38 | 38 | return is_array($value) ? $value : []; |
39 | 39 | }, $array); |
40 | 40 | |
41 | - $keys = array_map(function ($key) use ($array) { |
|
41 | + $keys = array_map(function($key) use ($array) { |
|
42 | 42 | return is_int($key) ? $array[$key] : $key; |
43 | 43 | }, array_keys($array)); |
44 | 44 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | return $output; |
26 | 26 | } |
27 | 27 | |
28 | - // this action needs to be removed by the user if they want to overwrite this functionality |
|
28 | + // this action needs to be removed by the user if they want to overwrite this functionality |
|
29 | 29 | public static function loadFunctionsFile($componentName) |
30 | 30 | { |
31 | 31 | $componentManager = ComponentManager::getInstance(); |
@@ -39,7 +39,7 @@ |
||
39 | 39 | return ''; |
40 | 40 | } |
41 | 41 | |
42 | - $data = function () use ($componentData) { |
|
42 | + $data = function() use ($componentData) { |
|
43 | 43 | $args = func_get_args(); |
44 | 44 | array_unshift($args, $componentData); |
45 | 45 | return Helpers::extractNestedDataFromArray($args); |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | |
73 | 73 | public static function registerHooks() |
74 | 74 | { |
75 | - add_filter('Flynt/renderComponent', function ($output, $componentName, $data) { |
|
75 | + add_filter('Flynt/renderComponent', function($output, $componentName, $data) { |
|
76 | 76 | return apply_filters( |
77 | 77 | "Flynt/renderComponent?name={$componentName}", |
78 | 78 | $output, |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | ); |
82 | 82 | }, 10, 3); |
83 | 83 | |
84 | - add_filter('Flynt/addComponentData', function ($data, $componentName) { |
|
84 | + add_filter('Flynt/addComponentData', function($data, $componentName) { |
|
85 | 85 | return apply_filters( |
86 | 86 | "Flynt/addComponentData?name={$componentName}", |
87 | 87 | $data, |
@@ -70,9 +70,9 @@ |
||
70 | 70 | $pluginUrl = esc_url(admin_url('plugins.php')); |
71 | 71 | $message = ["${pluginName} Plugin not activated. Make sure you activate the plugin on the <a href=\"${pluginUrl}\">plugin page</a>."]; |
72 | 72 | $options = [ |
73 | - 'type' => 'error', |
|
74 | - 'title' => 'Flynt is missing a required plugin', |
|
75 | - 'dismissible' => false, |
|
73 | + 'type' => 'error', |
|
74 | + 'title' => 'Flynt is missing a required plugin', |
|
75 | + 'dismissible' => false, |
|
76 | 76 | ]; |
77 | 77 | |
78 | 78 | $manager->addNotice($message, $options); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | |
37 | 37 | if (!$acfActive) { |
38 | 38 | self::notifyRequiredPluginIsMissing('ACF'); |
39 | - add_filter('template_include', function () { |
|
39 | + add_filter('template_include', function() { |
|
40 | 40 | die( |
41 | 41 | 'One or more required plugins are not activated! Please <a href="' |
42 | 42 | . esc_url(admin_url('plugins.php')) |