# adminimize/1.11.3/inc-setup/export.php

Adminimize, version 1.11.3. 56 lines.

- Page: https://pluginprobe.com/plugins/adminimize/1.11.3/code/inc-setup/export.php
- Raw: https://pluginprobe.com/plugins/adminimize/1.11.3/raw/inc-setup/export.php
- Modified: 2017-11-16T15:47:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminimize/1.11.3/code/inc-setup/export.php#L10-L20`.

```php
<?php
/**
 * Export settings as json file.
 *
 * @package    Adminimize
 * @subpackage export
 * @author     Frank Bültge
 * @version    2017-04-13
 */

if ( ! function_exists( 'add_action' ) ) {
	echo "Hi there!  I'm just a part of plugin, not much I can do when called directly.";
	exit;
}

add_action( 'admin_init', '_mw_adminimize_export_json' );
/**
 * Process a settings export that generates a .json file of the shop settings.
 */
function _mw_adminimize_export_json() {

	if ( ! is_admin() ) {
		return;
	}

	if ( ! current_user_can( 'manage_options' ) ) {
		return;
	}

	// If is AJAX Call.
	if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
		return;
	}

	if ( empty( $_POST[ '_mw_adminimize_export' ] ) || 'true' !== $_POST[ '_mw_adminimize_export' ] ) {
		return;
	}

	require_once ABSPATH . 'wp-includes/pluggable.php';
	if ( ! wp_verify_nonce( $_POST[ 'mw_adminimize_export_nonce' ], 'mw_adminimize_export_nonce' ) ) {
		return;
	}

	$settings = _mw_adminimize_get_option_value();

	ignore_user_abort( TRUE );

	nocache_headers();
	header( 'Content-Type: application/json; charset=utf-8' );
	header( 'Content-Disposition: attachment; filename=mw_adminimize-settings-export-' . date( 'm-d-Y' ) . '.json' );
	header( 'Expires: 0' );

	echo wp_json_encode( $settings );
	exit();
}

```
