@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | // Clean Up TinyMCE Buttons |
9 | 9 | |
10 | 10 | // First Bar |
11 | -add_filter('mce_buttons', function ($buttons) { |
|
11 | +add_filter('mce_buttons', function($buttons) { |
|
12 | 12 | $config = getConfig(); |
13 | 13 | if ($config && isset($config['toolbars'])) { |
14 | 14 | $toolbars = $config['toolbars']; |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | }); |
21 | 21 | |
22 | 22 | // Second Bar |
23 | -add_filter('mce_buttons_2', function ($buttons) { |
|
23 | +add_filter('mce_buttons_2', function($buttons) { |
|
24 | 24 | return []; |
25 | 25 | }); |
26 | 26 | |
27 | -add_filter('tiny_mce_before_init', function ($init) { |
|
27 | +add_filter('tiny_mce_before_init', function($init) { |
|
28 | 28 | $config = getConfig(); |
29 | 29 | if ($config) { |
30 | 30 | if (isset($config['blockformats'])) { |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | }); |
42 | 42 | |
43 | 43 | // TODO: refactor this |
44 | -add_filter('acf/fields/wysiwyg/toolbars', function ($toolbars) { |
|
44 | +add_filter('acf/fields/wysiwyg/toolbars', function($toolbars) { |
|
45 | 45 | // Load Toolbars and parse them into TinyMCE |
46 | 46 | $config = getConfig(); |
47 | 47 | if ($config && isset($config['toolbars'])) { |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | function getBlockFormats($blockFormats) |
72 | 72 | { |
73 | 73 | if (!empty($blockFormats)) { |
74 | - $blockFormatStrings = array_map(function ($tag, $label) { |
|
74 | + $blockFormatStrings = array_map(function($tag, $label) { |
|
75 | 75 | return "${label}=${tag}"; |
76 | 76 | }, $blockFormats, array_keys($blockFormats)); |
77 | 77 | return implode($blockFormatStrings, ';'); |