HOME


Mini Shell 1.0
DIR: /var/www/rhodeworks/wp-content/plugins/ocean-extra/includes/metabox/
Upload File :
Current File : /var/www/rhodeworks/wp-content/plugins/ocean-extra/includes/metabox/metabox.php
<?php
/**
 * Adds custom metabox
 *
 * @package Ocean_Extra
 * @category Core
 * @author OceanWP
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// The Metabox class
if ( ! class_exists( 'OceanWP_Post_Metabox' ) ) {

	/**
	 * Main ButterBean class.  Runs the show.
	 *
	 * @since  1.1.2
	 * @access public
	 */
	final class OceanWP_Post_Metabox {

		private $post_types;
		private $default_control;
		private $custom_control;

		/**
		 * Register this class with the WordPress API
		 *
		 * @since 1.1.2
		 */
		private function setup_actions() {

			// Capabilities
			$capabilities = apply_filters( 'ocean_main_metaboxes_capabilities', 'manage_options' );

			// Post types to add the metabox to
			$this->post_types = apply_filters( 'ocean_main_metaboxes_post_types', array(
				'post',
				'page',
				'product',
				'oceanwp_library',
				'elementor_library',
				'ae_global_templates',
			) );

			// Default butterbean controls
			$this->default_control = array(
				'select',
				'color',
				'image',
				'text',
				'number',
				'textarea',
			);

			// Custom butterbean controls
			$this->custom_control = array(
				'buttonset' 		=> 'OceanWP_ButterBean_Control_Buttonset',
				'range' 			=> 'OceanWP_ButterBean_Control_Range',
				'media' 			=> 'OceanWP_ButterBean_Control_Media',
				'rgba-color' 		=> 'OceanWP_ButterBean_Control_RGBA_Color',
				'multiple-select' 	=> 'OceanWP_ButterBean_Control_Multiple_Select',
				'editor' 			=> 'OceanWP_ButterBean_Control_Editor',
				'typography' 		=> 'OceanWP_ButterBean_Control_Typography',
			);

			// Overwrite default controls
			add_filter( 'butterbean_pre_control_template', array( $this, 'default_control_templates' ), 10, 2 );

			// Register custom controls
			add_filter( 'butterbean_control_template', array( $this, 'custom_control_templates' ), 10, 2 );

			// Register new controls types
			add_action( 'butterbean_register', array( $this, 'register_control_types' ), 10, 2 );

			if ( current_user_can( $capabilities ) ) {

				// Register fields
				add_action( 'butterbean_register', array( $this, 'register' ), 10, 2 );

				// Register fields for the posts
				add_action( 'butterbean_register', array( $this, 'posts_register' ), 10, 2 );

				// Load scripts and styles.
				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );

			}

		}

		/**
		 * Load scripts and styles
		 *
		 * @since 1.1.2
		 */
		public function enqueue_scripts( $hook ) {

			// Only needed on these admin screens
			if ( $hook != 'post.php' && $hook != 'post-new.php' ) {
				return;
			}

			// Get global post
			global $post;

			// Return if post is not object
			if ( ! is_object( $post ) ) {
				return;
			}

			// Post types scripts
			$post_types_scripts = apply_filters( 'ocean_metaboxes_post_types_scripts', $this->post_types );

			// Return if wrong post type
			if ( ! in_array( $post->post_type, $post_types_scripts ) ) {
				return;
			}

			$min = ( SCRIPT_DEBUG ) ? '' : '.min';

			global $current_screen;

			$mb_script = apply_filters( 'oceanwp_butterbean_metabox_assets', false );

			if ( isset( $current_screen ) ) {
				if ( property_exists( $current_screen, 'is_block_editor') ) {
					if ( true === $current_screen->is_block_editor && false === $mb_script ) {
						return;
					}
				}
			}

			// Default style
			wp_enqueue_style( 'oceanwp-butterbean', plugins_url( '/controls/assets/css/butterbean'. $min .'.css', __FILE__ ) );

			// Default script.
			wp_enqueue_script( 'oceanwp-butterbean', plugins_url( '/controls/assets/js/butterbean'. $min .'.js', __FILE__ ), array( 'butterbean' ), '', true );

			// Metabox script
			wp_enqueue_script( 'oceanwp-metabox-script', plugins_url( '/assets/js/metabox.min.js', __FILE__ ), array( 'jquery' ), OE_VERSION, true );

			// Enqueue the select2 script, I use "oceanwp-select2" to avoid plugins conflicts
			wp_enqueue_script( 'oceanwp-select2', plugins_url( '/controls/assets/js/select2.full.min.js', __FILE__ ), array( 'jquery' ), false, true );

			// Enqueue the select2 style
			wp_enqueue_style( 'select2', plugins_url( '/controls/assets/css/select2.min.css', __FILE__ ) );

			// Enqueue color picker alpha
			wp_enqueue_script( 'wp-color-picker-alpha', plugins_url( '/controls/assets/js/wp-color-picker-alpha.js', __FILE__ ), array( 'wp-color-picker' ), false, true );

		}

		/**
		 * Registers control types
		 *
		 * @since  1.2.4
		 */
		public function register_control_types( $butterbean ) {
			$controls = $this->custom_control;

			foreach ( $controls as $control => $class ) {

				require_once( OE_PATH . '/includes/metabox/controls/'. $control .'/class-control-'. $control .'.php' );
				$butterbean->register_control_type( $control, $class );

			}
		}

		/**
		 * Get custom control templates
		 *
		 * @since  1.2.4
		 */
		public function default_control_templates( $located, $slug ) {
			$controls = $this->default_control;

			foreach ( $controls as $control ) {

				if ( $slug === $control ) {
					return OE_PATH . '/includes/metabox/controls/'. $control .'/template.php';
				}

			}

			return $located;
		}

		/**
		 * Get custom control templates
		 *
		 * @since  1.2.4
		 */
		public function custom_control_templates( $located, $slug ) {
			$controls = $this->custom_control;

			foreach ( $controls as $control => $class ) {

				if ( $slug === $control ) {
					return OE_PATH . '/includes/metabox/controls/'. $control .'/template.php';
				}

			}

			return $located;
		}

		/**
		 * Registration callback
		 *
		 * @since 1.1.2
		 */
		public function register( $butterbean, $post_type ) {

			// Post types to add the metabox to
			$post_types = $this->post_types;

			// Theme branding
			if ( function_exists( 'oceanwp_theme_branding' ) ) {
				$brand = oceanwp_theme_branding();
			} else {
				$brand = 'OceanWP';
			}

			// Register managers, sections, controls, and settings here.
			$butterbean->register_manager(
				'oceanwp_mb_settings',
				array(
					'label'     => $brand . ' ' . esc_html__( 'Settings', 'ocean-extra' ),
					'post_type' => $post_types,
					'context'   => 'normal',
					'priority'  => 'high'
				)
			);

			$manager = $butterbean->get_manager( 'oceanwp_mb_settings' );

			$manager->register_section(
		        'oceanwp_mb_main',
		        array(
		            'label' => esc_html__( 'Main', 'ocean-extra' ),
		            'icon'  => 'dashicons-admin-generic'
		        )
		    );

		    $manager->register_control(
		        'ocean_post_layout', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Content Layout', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your custom layout.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 				=> esc_html__( 'Default', 'ocean-extra' ),
						'right-sidebar' => esc_html__( 'Right Sidebar', 'ocean-extra' ),
						'left-sidebar' 	=> esc_html__( 'Left Sidebar', 'ocean-extra' ),
						'full-width' 	=> esc_html__( 'Full Width', 'ocean-extra' ),
						'full-screen' 	=> esc_html__( '100% Full Width', 'ocean-extra' ),
						'both-sidebars' => esc_html__( 'Both Sidebars', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_layout', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_both_sidebars_style', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Both Sidebars: Style', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your both sidebars style.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 				=> esc_html__( 'Default', 'ocean-extra' ),
						'ssc-style' 	=> esc_html__( 'Sidebar / Sidebar / Content', 'ocean-extra' ),
						'scs-style' 	=> esc_html__( 'Sidebar / Content / Sidebar', 'ocean-extra' ),
						'css-style' 	=> esc_html__( 'Content / Sidebar / Sidebar', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_both_sidebars_style', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_both_sidebars_content_width', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Both Sidebars: Content Width (%)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter for custom content width.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_both_sidebars_content_width', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_both_sidebars_sidebars_width', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Both Sidebars: Sidebars Width (%)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter for custom sidebars width.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_both_sidebars_sidebars_width', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

			$manager->register_control(
		        'ocean_sidebar', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Sidebar', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your custom sidebar.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'widget_areas' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_sidebar', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_control(
		        'ocean_second_sidebar', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Second Sidebar', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your custom second sidebar.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'widget_areas' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_second_sidebar', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_control(
		        'ocean_disable_margins', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Paddings', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the padding top and bottom.', 'ocean-extra' ),
					'choices' 		=> array(
						'enable' 	=> esc_html__( 'Enable', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_disable_margins', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'enable',
		        )
		    );

			$manager->register_control(
		        'ocean_add_body_class', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_main',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Custom Body Class', 'ocean-extra' ),
		            'description'   => esc_html__( 'Use space (space tab) to separate multiple classes. Do not use dots (.) or commas (,) to separate classes. Correct example: class-1 class-2 new-class-3', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_add_body_class', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_shortcodes',
		        array(
		            'label' => esc_html__( 'Shortcodes', 'ocean-extra' ),
		            'icon'  => 'dashicons-editor-code'
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_before_top_bar', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode Before Top Bar', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed before the top bar.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_before_top_bar', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_after_top_bar', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode After Top Bar', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed after the top bar.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_after_top_bar', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_before_header', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode Before Header', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed before the header.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_before_header', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_after_header', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode After Header', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed after the header.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_after_header', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_has_shortcode', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode Before Title', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed before the page title.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_has_shortcode', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_after_title', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode After Title', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed after the page title.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_after_title', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_before_footer_widgets', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode Before Footer Widgets', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed before the footer widgets.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_before_footer_widgets', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_after_footer_widgets', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode After Footer Widgets', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed after the footer widgets.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_after_footer_widgets', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_before_footer_bottom', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode Before Footer Bottom', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed before the footer bottom.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_before_footer_bottom', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_shortcode_after_footer_bottom', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_shortcodes',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Shortcode After Footer Bottom', 'ocean-extra' ),
		            'description'   => esc_html__( 'Add your shortcode to be displayed after the footer bottom.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_shortcode_after_footer_bottom', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_header',
		        array(
		            'label' => esc_html__( 'Header', 'ocean-extra' ),
		            'icon'  => 'dashicons-sticky'
		        )
		    );

			$manager->register_control(
		        'ocean_display_top_bar', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_header',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Top Bar', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the top bar.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Enable', 'ocean-extra' ),
						'off' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_display_top_bar', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_display_header', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_header',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Header', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the header.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Enable', 'ocean-extra' ),
						'off' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_display_header', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_header_style', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_header',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Header Style', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose which header style to display on this page.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 				=> esc_html__( 'Default', 'ocean-extra' ),
						'minimal' 		=> esc_html__( 'Minimal', 'ocean-extra' ),
						'transparent' 	=> esc_html__( 'Transparent', 'ocean-extra' ),
						'top'			=> esc_html__( 'Top Menu', 'ocean-extra' ),
						'full_screen'	=> esc_html__( 'Full Screen', 'ocean-extra' ),
						'center'		=> esc_html__( 'Center', 'ocean-extra' ),
						'medium'		=> esc_html__( 'Medium', 'ocean-extra' ),
						'vertical'		=> esc_html__( 'Vertical', 'ocean-extra' ),
						'custom'		=> esc_html__( 'Custom Header', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_header_style', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_control(
		        'ocean_center_header_left_menu', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_header',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Left Menu', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose which left menu to display on this page/post.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'menus' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_center_header_left_menu', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_control(
		        'ocean_custom_header_template', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_header',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Select Template', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose a template created in Theme Panel > My Library.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'library' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_header_template', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_logo',
		        array(
		            'label' => esc_html__( 'Logo', 'ocean-extra' ),
		            'icon'  => 'dashicons-format-image'
		        )
		    );

			$manager->register_control(
		        'ocean_custom_logo', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'image',
		            'label'   		=> esc_html__( 'Logo', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a custom logo on this page/post.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo', // Same as control name.
		        array(
		        	'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_control(
		        'ocean_custom_retina_logo', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'image',
		            'label'   		=> esc_html__( 'Retina Logo', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a custom retina logo on this page/post.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_retina_logo', // Same as control name.
		        array(
		        	'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_custom_logo_max_width', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Max Width (px)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a custom max width for this page/post.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo_max_width', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_custom_logo_tablet_max_width', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Tablet: Max Width (px)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a custom max width for tablet view on this page/post.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo_tablet_max_width', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_custom_logo_mobile_max_width', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Mobile: Max Width (px)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a custom max width for mobile view on this page/post.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo_mobile_max_width', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_custom_logo_max_height', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Max Height (px)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a custom max height for this page/post.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo_max_height', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_custom_logo_tablet_max_height', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Tablet: Max Height (px)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a custom max height for tablet view on this page/post.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo_tablet_max_height', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_custom_logo_mobile_max_height', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_logo',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Mobile: Max Height (px)', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a custom max height for mobile view on this page/post.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_logo_mobile_max_height', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_menu',
		        array(
		            'label' => esc_html__( 'Menu', 'ocean-extra' ),
		            'icon'  => 'dashicons-menu'
		        )
		    );

			$manager->register_control(
		        'ocean_header_custom_menu', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Main Navigation Menu', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose which menu to display on this page/post.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'menus' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_header_custom_menu', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_menu_typo', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'typography',
		            'label'   		=> esc_html__( 'Typography', 'ocean-extra' ),
		            'description'   => esc_html__( 'Typography for the menu.', 'ocean-extra' ),
		            'settings'    	=> array(
						'family'      	=> 'ocean_menu_typo_font_family',
						'size'        	=> 'ocean_menu_typo_font_size',
						'weight'      	=> 'ocean_menu_typo_font_weight',
						'style'       	=> 'ocean_menu_typo_font_style',
						'transform' 	=> 'ocean_menu_typo_transform',
						'line_height' 	=> 'ocean_menu_typo_line_height',
						'spacing' 		=> 'ocean_menu_typo_spacing'
					),
					'l10n'        	=> array(),
		        )
		    );

			$manager->register_setting( 'ocean_menu_typo_font_family', 	array( 'sanitize_callback' => 'sanitize_text_field', ) );
			$manager->register_setting( 'ocean_menu_typo_font_size',   	array( 'sanitize_callback' => 'sanitize_text_field', ) );
			$manager->register_setting( 'ocean_menu_typo_font_weight', 	array( 'sanitize_callback' => 'sanitize_key', ) );
			$manager->register_setting( 'ocean_menu_typo_font_style',  	array( 'sanitize_callback' => 'sanitize_key', ) );
			$manager->register_setting( 'ocean_menu_typo_transform', 	array( 'sanitize_callback' => 'sanitize_key', ) );
			$manager->register_setting( 'ocean_menu_typo_line_height', 	array( 'sanitize_callback' => 'sanitize_text_field', ) );
			$manager->register_setting( 'ocean_menu_typo_spacing', 		array( 'sanitize_callback' => 'sanitize_text_field', ) );

			$manager->register_control(
		        'ocean_menu_link_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Link Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #555', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_link_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_link_color_hover', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Link Color: Hover', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #13aff0', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_link_color_hover', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_link_color_active', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Link Color: Current Menu Item', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #555', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_link_color_active', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_link_background', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Link Background', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #fff', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_link_background', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_link_hover_background', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Link Background: Hover', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #333', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_link_hover_background', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_link_active_background', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Link Background: Current Menu Item', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #13aff0', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_link_active_background', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_social_links_bg', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Simple Social: Background Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a background color for the simple social style. Hex code, ex: #fff', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_social_links_bg', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_social_hover_links_bg', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Simple Social: Hover Background Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a background color for the simple social style. Hex code, ex: #333', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_social_hover_links_bg', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_social_links_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Simple Social: Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color for the simple social style. Hex code, ex: #fff', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_social_links_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_menu_social_hover_links_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_menu',
		            'type'    		=> 'rgba-color',
		            'label'   		=> esc_html__( 'Simple Social: Hover Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color for the simple social style. Hex code, ex: #13aff0', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_menu_social_hover_links_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_title',
		        array(
		            'label' => esc_html__( 'Title', 'ocean-extra' ),
		            'icon'  => 'dashicons-admin-tools'
		        )
		    );

			$manager->register_control(
		        'ocean_disable_title', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Page Title', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the page title.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'enable' 	=> esc_html__( 'Enable', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_disable_title', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_disable_heading', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Heading', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the page title heading.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'enable' 	=> esc_html__( 'Enable', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_disable_heading', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_post_title', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Custom Title', 'ocean-extra' ),
		            'description'   => esc_html__( 'Alter the main title display.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title', // Same as control name.
		        array(
		            'sanitize_callback' => 'wp_kses_post',
		        )
		    );

			$manager->register_control(
		        'ocean_post_subheading', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Subheading', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter your page subheading. Shortcodes & HTML is allowed.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_subheading', // Same as control name.
		        array(
		            'sanitize_callback' => 'wp_kses_post',
		        )
		    );

			$manager->register_control(
		        'ocean_post_title_style', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Title Style', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a custom title style.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'title_styles' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_style', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

			$manager->register_control(
		        'ocean_post_title_background_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'color',
		            'label'   		=> esc_html__( 'Title: Background Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a hex color code, ex: #333', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_background_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_post_title_background', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'image',
		            'label'   		=> esc_html__( 'Title: Background Image', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a custom image for your main title.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_background', // Same as control name.
		        array(
		        	'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_post_title_bg_image_position', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Position', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your background image position.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 					=> esc_html__( 'Default', 'ocean-extra' ),
						'top left' 			=> esc_html__( 'Top Left', 'ocean-extra' ),
						'top center' 		=> esc_html__( 'Top Center', 'ocean-extra' ),
						'top right'  		=> esc_html__( 'Top Right', 'ocean-extra' ),
						'center left' 		=> esc_html__( 'Center Left', 'ocean-extra' ),
						'center center' 	=> esc_html__( 'Center Center', 'ocean-extra' ),
						'center right' 		=> esc_html__( 'Center Right', 'ocean-extra' ),
						'bottom left' 		=> esc_html__( 'Bottom Left', 'ocean-extra' ),
						'bottom center' 	=> esc_html__( 'Bottom Center', 'ocean-extra' ),
						'bottom right' 		=> esc_html__( 'Bottom Right', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_bg_image_position', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

		    $manager->register_control(
		        'ocean_post_title_bg_image_attachment', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Attachment', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your background image attachment.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 			=> esc_html__( 'Default', 'ocean-extra' ),
						'scroll' 	=> esc_html__( 'Scroll', 'ocean-extra' ),
						'fixed' 	=> esc_html__( 'Fixed', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_bg_image_attachment', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_post_title_bg_image_repeat', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Repeat', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your background image repeat.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 			=> esc_html__( 'Default', 'ocean-extra' ),
						'no-repeat' => esc_html__( 'No-repeat', 'ocean-extra' ),
						'repeat' 	=> esc_html__( 'Repeat', 'ocean-extra' ),
						'repeat-x' 	=> esc_html__( 'Repeat-x', 'ocean-extra' ),
						'repeat-y' 	=> esc_html__( 'Repeat-y', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_bg_image_repeat', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_post_title_bg_image_size', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Size', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your background image size.', 'ocean-extra' ),
					'choices' 		=> array(
						'' 			=> esc_html__( 'Default', 'ocean-extra' ),
						'auto' 		=> esc_html__( 'Auto', 'ocean-extra' ),
						'cover' 	=> esc_html__( 'Cover', 'ocean-extra' ),
						'contain' 	=> esc_html__( 'Contain', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_bg_image_size', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		    $manager->register_control(
		        'ocean_post_title_height', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Title: Background Height', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select your custom height for your title background. Default is 400px.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0',
						'step' 	=> '1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_height', // Same as control name.
		        array(
		            'sanitize_callback' => array( $this, 'sanitize_absint' ),
		        )
		    );

		    $manager->register_control(
		        'ocean_post_title_bg_overlay', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'number',
		            'label'   		=> esc_html__( 'Title: Background Overlay Opacity', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a number between 0.1 to 1. Default is 0.5.', 'ocean-extra' ),
		            'attr'    		=> array(
						'min' 	=> '0.1',
						'max' 	=> '1',
						'step' 	=> '0.1',
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_bg_overlay', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_post_title_bg_overlay_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_title',
		            'type'    		=> 'color',
		            'label'   		=> esc_html__( 'Title: Background Overlay Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #333', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_title_bg_overlay_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_breadcrumbs',
		        array(
		            'label' => esc_html__( 'Breadcrumbs', 'ocean-extra' ),
		            'icon'  => 'dashicons-admin-home'
		        )
		    );

			$manager->register_control(
		        'ocean_disable_breadcrumbs', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_breadcrumbs',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Breadcrumbs', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the page title breadcrumbs.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Enable', 'ocean-extra' ),
						'off' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_disable_breadcrumbs', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_breadcrumbs_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_breadcrumbs',
		            'type'    		=> 'color',
		            'label'   		=> esc_html__( 'Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #fff', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_breadcrumbs_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_breadcrumbs_separator_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_breadcrumbs',
		            'type'    		=> 'color',
		            'label'   		=> esc_html__( 'Separator Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #fff', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_breadcrumbs_separator_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_breadcrumbs_links_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_breadcrumbs',
		            'type'    		=> 'color',
		            'label'   		=> esc_html__( 'Links Color', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #fff', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_breadcrumbs_links_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_control(
		        'ocean_breadcrumbs_links_hover_color', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_breadcrumbs',
		            'type'    		=> 'color',
		            'label'   		=> esc_html__( 'Links Color: Hover', 'ocean-extra' ),
		            'description'   => esc_html__( 'Select a color. Hex code, ex: #ddd', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_breadcrumbs_links_hover_color', // Same as control name.
		        array(
		            'sanitize_callback' => 'butterbean_maybe_hash_hex_color',
		        )
		    );

			$manager->register_section(
		        'oceanwp_mb_footer',
		        array(
		            'label' => esc_html__( 'Footer', 'ocean-extra' ),
		            'icon'  => 'dashicons-hammer'
		        )
		    );

			$manager->register_control(
		        'ocean_display_footer_widgets', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_footer',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Footer Widgets Area', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the footer widgets area.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Enable', 'ocean-extra' ),
						'off' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_display_footer_widgets', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_display_footer_bottom', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_footer',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Display Copyright Area', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enable or disable the copyright area.', 'ocean-extra' ),
					'choices' 		=> array(
						'default' 	=> esc_html__( 'Default', 'ocean-extra' ),
						'on' 		=> esc_html__( 'Enable', 'ocean-extra' ),
						'off' 		=> esc_html__( 'Disable', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_display_footer_bottom', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		            'default' 			=> 'default',
		        )
		    );

			$manager->register_control(
		        'ocean_custom_footer_template', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_footer',
		            'type'    		=> 'select',
		            'label'   		=> esc_html__( 'Select Template', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose a template created in Theme Panel > My Library.', 'ocean-extra' ),
					'choices' 		=> $this->helpers( 'library' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_custom_footer_template', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_key',
		        )
		    );

		}

		/**
		 * Registration callback
		 *
		 * @since 1.1.2
		 */
		public function posts_register( $butterbean, $post_type ) {

			// Return if it is not Post post type
			if ( 'post' != $post_type ) {
				return;
			}

			// Gets the manager object we want to add sections to.
			$manager = $butterbean->get_manager( 'oceanwp_mb_settings' );

			$manager->register_section(
		        'oceanwp_mb_post',
		        array(
		            'label' => esc_html__( 'Post', 'ocean-extra' ),
		            'icon'  => 'dashicons-admin-page',
		        )
		    );

		    $manager->register_control(
		        'ocean_post_oembed', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'oEmbed URL', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter a URL that is compatible with WP\'s built-in oEmbed feature. This setting is used for your video and audio post formats.', 'ocean-extra' ) .'<br /><a href="http://codex.wordpress.org/Embeds" target="_blank">'. esc_html__( 'Learn More', 'ocean-extra' ) .' &rarr;</a>',
		        )
		    );

			$manager->register_setting(
		        'ocean_post_oembed', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_post_self_hosted_media', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'media',
		            'label'   		=> esc_html__( 'Self Hosted', 'ocean-extra' ),
		            'description'   => esc_html__( 'Insert your self hosted video or audio url here.', 'ocean-extra' ) .'<br /><a href="http://make.wordpress.org/core/2013/04/08/audio-video-support-in-core/" target="_blank">'. esc_html__( 'Learn More', 'ocean-extra' ) .' &rarr;</a>',
		        )
		    );

			$manager->register_setting(
		        'ocean_post_self_hosted_media', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

			$manager->register_control(
		        'ocean_post_video_embed', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'textarea',
		            'label'   		=> esc_html__( 'Embed Code', 'ocean-extra' ),
		            'description'   => esc_html__( 'Insert your embed/iframe code. This setting is used for your video and audio post formats.', 'ocean-extra' ),
					'attr'    		=> array( 'row' => '2', 'cols' => '1' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_post_video_embed' // Same as control name.
		    );

		    $manager->register_control(
		        'ocean_link_format', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'text',
		            'label'   		=> esc_html__( 'Link', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter your external url. This setting is used for your link post formats.', 'ocean-extra' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_link_format', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		        )
		    );

		    $manager->register_control(
		        'ocean_link_format_target', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Link Target', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose your target for the url. This setting is used for your link post formats.', 'ocean-extra' ),
					'choices' 		=> array(
						'self' 		=> esc_html__( 'Self', 'ocean-extra' ),
						'blank' 	=> esc_html__( 'Blank', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_link_format_target', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		            'default' 			=> 'self',
		        )
		    );

			$manager->register_control(
		        'ocean_quote_format', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'textarea',
		            'label'   		=> esc_html__( 'Quote', 'ocean-extra' ),
		            'description'   => esc_html__( 'Enter your quote. This setting is used for your quote post formats.', 'ocean-extra' ),
					'attr'    		=> array( 'row' => '2', 'cols' => '1' ),
		        )
		    );

			$manager->register_setting(
		        'ocean_quote_format', // Same as control name.
		        array(
		            'sanitize_callback' => 'wp_kses_post',
		        )
		    );

		    $manager->register_control(
		        'ocean_quote_format_link', // Same as setting name.
		        array(
		            'section' 		=> 'oceanwp_mb_post',
		            'type'    		=> 'buttonset',
		            'label'   		=> esc_html__( 'Quote Link', 'ocean-extra' ),
		            'description'   => esc_html__( 'Choose your quote link. This setting is used for your quote post formats.', 'ocean-extra' ),
					'choices' 		=> array(
						'post' 		=> esc_html__( 'Post', 'ocean-extra' ),
						'none' 		=> esc_html__( 'None', 'ocean-extra' ),
					),
		        )
		    );

			$manager->register_setting(
		        'ocean_quote_format_link', // Same as control name.
		        array(
		            'sanitize_callback' => 'sanitize_text_field',
		            'default' 			=> 'post',
		        )
		    );

		}

		/**
		 * Sanitize function for integers
		 *
		 * @since  1.0.0
		 */
		public function sanitize_absint( $value ) {
			return $value && is_numeric( $value ) ? absint( $value ) : '';
		}

		/**
		 * Helpers
		 *
		 * @since 1.0.0
		 */
		public static function helpers( $return = NULL ) {

			// Return array of WP menus
			if ( 'menus' == $return ) {
				$menus 		= array( esc_html__( 'Default', 'ocean-extra' ) );
				$get_menus 	= get_terms( 'nav_menu', array( 'hide_empty' => true ) );
				foreach ( $get_menus as $menu) {
					$menus[$menu->term_id] = $menu->name;
				}
				return $menus;
			}

			// Header template
			elseif ( 'library' == $return ) {
				$templates 		= array( esc_html__( 'Select a Template', 'ocean-extra' ) );
				$get_templates 	= get_posts( array( 'post_type' => 'oceanwp_library', 'numberposts' => -1, 'post_status' => 'publish' ) );

			    if ( ! empty ( $get_templates ) ) {
			    	foreach ( $get_templates as $template ) {
						$templates[ $template->ID ] = $template->post_title;
				    }
				}

				return $templates;
			}

			// Title styles
			elseif ( 'title_styles' == $return ) {
				return apply_filters( 'ocean_title_styles', array(
					''                 => esc_html__( 'Default', 'ocean-extra' ),
					'default'          => esc_html__( 'Default Style', 'ocean-extra' ),
					'centered'         => esc_html__( 'Centered', 'ocean-extra' ),
					'centered'         => esc_html__( 'Centered', 'ocean-extra' ),
					'centered-minimal' => esc_html__( 'Centered Minimal', 'ocean-extra' ),
					'background-image' => esc_html__( 'Background Image', 'ocean-extra' ),
					'solid-color'      => esc_html__( 'Solid Color and White Text', 'ocean-extra' ),
				) );
			}

			// Widgets
			elseif ( 'widget_areas' == $return ) {
				global $wp_registered_sidebars;
				$widgets_areas = array( esc_html__( 'Default', 'ocean-extra' ) );
				$get_widget_areas = $wp_registered_sidebars;
				if ( ! empty( $get_widget_areas ) ) {
					foreach ( $get_widget_areas as $widget_area ) {
						$name = isset ( $widget_area['name'] ) ? $widget_area['name'] : '';
						$id = isset ( $widget_area['id'] ) ? $widget_area['id'] : '';
						if ( $name && $id ) {
							$widgets_areas[$id] = $name;
						}
					}
				}
				return $widgets_areas;
			}

		}

		/**
		 * Returns the instance.
		 *
		 * @since  1.1.2
		 * @access public
		 * @return object
		 */
		public static function get_instance() {
			static $instance = null;
			if ( is_null( $instance ) ) {
				$instance = new self;
				$instance->setup_actions();
			}
			return $instance;
		}

		/**
		 * Constructor method.
		 *
		 * @since  1.1.2
		 * @access private
		 * @return void
		 */
		private function __construct() {}

	}

	OceanWP_Post_Metabox::get_instance();

}