File "Register.php"

Full Path: /home/fineflavourcocoa/public_html/wp-content/plugins/meta-box/src/Oxygen/Register.php
File size: 368 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MetaBox\Oxygen;

class Register {

	public function __construct() {
		add_action( 'oxygen_add_plus_sections', [ $this, 'add_metabox_category' ] );
	}

	public function add_metabox_category() {
		if ( ! defined( 'CT_VERSION' ) ) {
			return;
		}
		\CT_Toolbar::oxygen_add_plus_accordion_section( 'meta-box', esc_html__( 'Meta Box', 'meta-box' ) );
	}
}