HEX
Server: LiteSpeed
System: Linux baciro.idweb.host 4.18.0-553.5.1.lve.1.el8.x86_64 #1 SMP Fri Jun 14 15:38:45 UTC 2024 x86_64
User: yastidua (1245)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/yastidua/www/wp-content/plugins/post-duplicator/includes/scripts.php
<?php

/**
 * Load the metaboxer scripts
 *
 * @since 2.26
 */
function mtphr_post_duplicator_metaboxer_scripts( $hook ) {
	if( $hook == 'tools_page_mtphr_post_duplicator_settings_menu' ) {
    $version = WP_DEBUG ? time() : MTPHR_POST_DUPLICATOR_VERSION;
		wp_enqueue_style( 'mtphr-post-duplicator-metaboxer', MTPHR_POST_DUPLICATOR_URL . 'metaboxer/metaboxer.css', false, $version );
	}
}
add_action( 'admin_enqueue_scripts', 'mtphr_post_duplicator_metaboxer_scripts' );

/**
 * Add the necessary jquery.
 *
 * @since 2.26
 */
function m4c_duplicate_post_scripts( $hook_suffix ) {
  $version = WP_DEBUG ? time() : MTPHR_POST_DUPLICATOR_VERSION;
	wp_enqueue_script( 'mtphr-post-duplicator', MTPHR_POST_DUPLICATOR_URL . 'assets/js/pd-admin.js', array('jquery'), $version );
}
add_action( 'admin_enqueue_scripts', 'm4c_duplicate_post_scripts' );