PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / 6.9.1
Secure Custom Fields v6.9.1
6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / includes / admin / beta-features / class-scf-beta-feature-editor-sidebar.php
secure-custom-fields / includes / admin / beta-features Last commit date
class-scf-beta-feature-editor-sidebar.php 1 year ago class-scf-beta-feature.php 1 year ago index.php 1 year ago
class-scf-beta-feature-editor-sidebar.php
39 lines
1 <?php
2 /**
3 * Editor Sidebar Beta Feature
4 *
5 * This beta feature allows moving field group elements to the editor sidebar.
6 *
7 * @package Secure Custom Fields
8 * @since SCF 6.5.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit; // Exit if accessed directly
13 }
14
15 if ( ! class_exists( 'SCF_Admin_Beta_Feature_Editor_Sidebar' ) ) :
16 /**
17 * Class SCF_Admin_Beta_Feature_Editor_Sidebar
18 *
19 * Implements a beta feature to move field group elements to the editor sidebar
20 * for a cleaner interface.
21 *
22 * @package Secure Custom Fields
23 * @since SCF 6.5.0
24 */
25 class SCF_Admin_Beta_Feature_Editor_Sidebar extends SCF_Admin_Beta_Feature {
26
27 /**
28 * Initialize the beta feature.
29 *
30 * @return void
31 */
32 protected function initialize() {
33 $this->name = 'editor_sidebar';
34 $this->title = __( 'Move Elements to Editor Sidebar', 'secure-custom-fields' );
35 $this->description = __( 'Moves field group elements to the editor sidebar for a cleaner interface.', 'secure-custom-fields' );
36 }
37 }
38 endif;
39