File "export-import.php"

Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/admin-columns-pro/classes/export-import/export-import.php
File size: 527 bytes
MIME-type: --
Charset: utf-8

<?php
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

define( 'CAC_EI_URL', plugin_dir_url( __FILE__ ) );
define( 'CAC_EI_DIR', plugin_dir_path( __FILE__ ) );

// only run plugin in the admin interface
if ( ! is_admin() ) {
	return false;
}

/**
 * Loads main plugin (CPAC) into the constructor
 *
 * @since 1.0
 */
function init_cpac_export_import( $cpac ) {

	require_once CAC_EI_DIR . 'classes/export_import.php';
	new CAC_Export_Import( $cpac );
}
add_action( 'cac/loaded', 'init_cpac_export_import' );