Completed
Push — Features/TinyMce/Improvements ( 6eca63...ad3806 )
by Doğa
02:46
created
Features/TinyMce/functions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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, ';');
Please login to merge, or discard this patch.