forked from gambitph/Stackable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor-settings.php
More file actions
171 lines (152 loc) · 5.02 KB
/
editor-settings.php
File metadata and controls
171 lines (152 loc) · 5.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<?php
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Stackable_Editor_Settings' ) ) {
class Stackable_Editor_Settings {
/**
* Add our hooks.
*/
function __construct() {
// Register settings.
add_action( 'init', array( $this, 'register_settings' ) );
// Make our settings available in the editor.
add_filter( 'stackable_js_settings', array( $this, 'add_settings' ) );
// Add block nested widths CSS.
add_action( 'stackable_inline_styles', array( $this, 'add_nested_block_width' ) );
add_action( 'stackable_inline_editor_styles', array( $this, 'add_nested_block_width' ) );
}
/**
* Register the setting.
*
* @return void
*/
public function register_settings() {
register_setting(
'stackable_editor_settings',
'stackable_disabled_blocks',
array(
'type' => 'array',
'description' => __( 'Blocks that should be hidden in the block editor', STACKABLE_I18N ),
'sanitize_callback' => array( $this, 'sanitize_array_setting' ),
'show_in_rest' => array(
'schema' => array(
'items' => array(
'type' => 'string',
)
)
),
'default' => array(),
)
);
register_setting(
'stackable_editor_settings',
'stackable_enable_design_library',
array(
'type' => 'boolean',
'description' => __( 'Hides the Stackable Design Library button on the top of the editor', STACKABLE_I18N ),
'sanitize_callback' => 'sanitize_text_field',
'show_in_rest' => true,
'default' => true,
)
);
register_setting(
'stackable_editor_settings',
'stackable_enable_navigation_panel',
array(
'type' => 'boolean',
'description' => __( 'Adds a persistent Navigation panel across all Stackable blocks', STACKABLE_I18N ),
'sanitize_callback' => 'sanitize_text_field',
'show_in_rest' => true,
'default' => true,
)
);
register_setting(
'stackable_editor_settings',
'stackable_block_default_width',
array(
'type' => 'string',
'description' => __( 'The width used when a Columns block has its Content Width set to center.', STACKABLE_I18N ),
'sanitize_callback' => 'sanitize_text_field',
'show_in_rest' => true,
'default' => '',
)
);
register_setting(
'stackable_editor_settings',
'stackable_block_wide_width',
array(
'type' => 'string',
'description' => __( 'The width used when a Columns block has its Content Width set to wide.', STACKABLE_I18N ),
'sanitize_callback' => 'sanitize_text_field',
'show_in_rest' => true,
'default' => '',
)
);
register_setting(
'stackable_editor_settings',
'stackable_auto_collapse_panels',
array(
'type' => 'boolean',
'description' => __( 'Collapse other inspector panels when opening another, keeping only one open at a time.', STACKABLE_I18N ),
'sanitize_callback' => 'sanitize_text_field',
'show_in_rest' => true,
'default' => true,
)
);
register_setting(
'stackable_editor_settings',
'stackable_enable_block_linking',
array(
'type' => 'boolean',
'description' => __( 'Gives you the ability to link columns. Any changes you make on one column will automatically get applied on the other columns.', STACKABLE_I18N ),
'sanitize_callback' => 'sanitize_text_field',
'show_in_rest' => true,
'default' => false,
)
);
}
public function sanitize_array_setting( $input ) {
return ! is_array( $input ) ? array( array() ) : $input;
}
/**
* Make our settings available in the editor.
*
* @param Array $settings
* @return Array Settings array to be loaded in the editor.
*/
public function add_settings( $settings ) {
$settings['stackable_disabled_blocks'] = get_option( 'stackable_disabled_blocks' );
$settings['stackable_enable_design_library'] = get_option( 'stackable_enable_design_library' );
$settings['stackable_enable_navigation_panel'] = get_option( 'stackable_enable_navigation_panel' );
$settings['stackable_auto_collapse_panels'] = get_option( 'stackable_auto_collapse_panels' );
$settings['stackable_enable_block_linking'] = get_option( 'stackable_enable_block_linking' );
return $settings;
}
/**
* Add styles for the block nested widths.
*
* @param String $css
* @return String CSS to be added.
*/
public function add_nested_block_width( $css ) {
$default_width = get_option( 'stackable_block_default_width' );
$wide_width = get_option( 'stackable_block_wide_width' );
if ( ! empty( $default_width ) || ! empty( $wide_width ) ) {
$css .= ':root {';
if ( ! empty( $default_width ) ) {
$default_width .= is_numeric( $default_width ) ? 'px' : '';
$css .= '--stk-block-default-width: ' . esc_attr( $default_width ) . ';';
}
if ( ! empty( $wide_width ) ) {
$wide_width .= is_numeric( $wide_width ) ? 'px' : '';
$css .= '--stk-block-wide-width: ' . esc_attr( $wide_width ) . ';';
}
$css .= '}';
}
return $css;
}
}
new Stackable_Editor_Settings();
}