File "Register.php"

Full Path: /home/jlklyejr/public_html/post-date/wp-content/plugins/meta-box/src/Bricks/Register.php
File size: 272 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MetaBox\Bricks;

class Register {
	public function __construct() {
		add_filter( 'bricks/builder/i18n', [ $this, 'i18n' ] );
	}

	public function i18n( array $i18n ): array {
		$i18n['meta-box'] = esc_html__( 'Meta Box', 'meta-box' );
		return $i18n;
	}
}