Your IP : 3.146.107.49


Current Path : /home/ncdcgo/public_html/wp-content/plugins backup/pdf-viewer-block/admin/
Upload File :
Current File : /home/ncdcgo/public_html/wp-content/plugins backup/pdf-viewer-block/admin/admin.php

<?php
/**
 * @since      0.1
 *
 * @package    pdf-viewer-block
 * @subpackage pdf-viewer-block/admin
 */

/**
 * The admin-specific functionality of the plugin.
 *
 * @package    pdf-viewer-block
 * @subpackage pdf-viewer-block/admin
 * @author     audrasjb <audrasjb@gmail.com>
 */

/**
 *
 * Enqueue styles and scripts
 *
 */
 	if ( ! function_exists( 'register_block_type' ) ) {
		// Gutenberg is not active.
		return;
	}

	add_action( 'enqueue_block_editor_assets', 'gpvb_enqueue_styles_admin' );
	function gpvb_enqueue_styles_admin() {
		wp_enqueue_style( 
			'gpvb-admin-styles', 
			plugin_dir_url( __FILE__ ) . 'css/admin.css', 
			array(), 
			'', 
			'all' 
		);
		wp_register_script(
			'gpvb-admin-scripts',
			plugins_url( 'js/block.js', __FILE__ ),
			array( 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-editor' ),
			filemtime( plugin_dir_path( __FILE__ ) . 'js/block.js' ),
			true
		);
		wp_enqueue_script( 'gpvb-admin-scripts' );
	}
	register_block_type( 'pdf-viewer-block/standard', 
		array(
			'editor_script' => 'gpvb-admin-scripts',
			'editor_style'  => 'gpvb-admin-styles',
		)
	);