403Webshell
Server IP : 77.39.210.126  /  Your IP : 216.73.216.203
Web Server : Apache
System : Linux v00l0v-vmpcnews.sphostserver.com 4.18.0-553.124.4.el8_10.x86_64 #1 SMP Fri May 15 04:14:14 EDT 2026 x86_64
User : artecasarepresti ( 1022)
PHP Version : 7.4.33
Disable Function : dl,passthru,proc_open,proc_close,proc_terminate,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/artecasarepresti/www/wp-content/plugins/adminimize/inc-setup/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/artecasarepresti/www/wp-content/plugins/adminimize/inc-setup/export.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' );
add_action( 'admin_init', '_mw_adminimize_export_role_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();
	$filepath = 'mw_adminimize-settings-export-' . date( 'm-d-Y' ) . '.json';

	ignore_user_abort( TRUE );

	nocache_headers();
	header( 'Cache-Control: public' );
	header( 'Content-Type: application/json; charset=utf-8' );
	header( 'Content-Transfer-Encoding: binary' );
	header( 'Content-Disposition: attachment; filename=' . $filepath );
	//header( 'Content-Length: ' . filesize( $filepath ) );
	header( 'Expires: 0' );

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

/**
 * Process a settings export for one or many roles that generates a .json file of the shop settings.
 * 
 * @return array
 */
function _mw_adminimize_export_role_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_role' ] ) 
	|| 'true' !== $_POST[ '_mw_adminimize_export_role' ] 
	|| empty( $_POST['select_adminimize_roles']) ) {
		return;
	}

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

	$keys = [];
	$adminimize_roles = $_POST['select_adminimize_roles'];
	$adminimize_option = _mw_adminimize_get_option_value();
	foreach( $adminimize_roles as $adminimize_role ){

		$adminimize_role_keys = array_filter(
			$adminimize_option, function( $option_key ) use ( $adminimize_role ){
				return stripos(  $option_key, '_' . $adminimize_role ) !== false;
			}, ARRAY_FILTER_USE_KEY
		);
		if ( empty( $keys ) ){
			$keys = $adminimize_role_keys;
		} else {
			$keys = array_merge( $keys, $adminimize_role_keys );
		} 
	}

	$filepath = 'mw_adminimize-settings-role-export-' . date( 'm-d-Y' ) . '.json';

	ignore_user_abort( TRUE );

	nocache_headers();
	header( 'Cache-Control: public' );
	header( 'Content-Type: application/json; charset=utf-8' );
	header( 'Content-Transfer-Encoding: binary' );
	header( 'Content-Disposition: attachment; filename=' . $filepath );
	header( 'Expires: 0' );

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


Youez - 2016 - github.com/yon3zu
LinuXploit