HEX
Server: Apache
System: Linux web2213.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: clinicamaciel (596848)
PHP: 7.3.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,eval,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/clinicamaciel/www/index_lixo/wp-content/plugins/cherry-plugin/admin/plugin-updater.php
<?php
// TEMP: Enable update check on every request. Normally you don't need this! This is for testing only!
// set_site_transient( 'update_plugins', null );

add_filter( 'pre_set_site_transient_update_plugins', 'cherry_plugin_check_for_update' );
function cherry_plugin_check_for_update( $transient ) {
	global $cherry_plugin_details_url;

	$remote_query = cherry_plugin_remote_query( array( 'data_type' => 'plugin' ) );

	if ( $remote_query != NULL ) {

		$cherry_plugin_details_url = $remote_query['url'];
		add_action( 'admin_head', 'cherry_change_details_link' );

		$response = array(
			'slug'        => dirname( CHERRY_PLUGIN_SLUG ),
			'new_version' => $remote_query['new_version'],
			'url'         => $remote_query['url'],
			'package'     => $remote_query['package'],
		);
		$transient->response[ CHERRY_PLUGIN_SLUG ] = (object) $response;
	}

	return $transient;
}

// Change details link
function cherry_change_details_link() {
	global $cherry_plugin_details_url;

	echo '<script>
		jQuery(document).on("ready", function() {
			jQuery("#cherry-plugin + .plugin-update-tr a.thickbox").attr({"href": "' . add_query_arg( array( 'TB_iframe' => 'true', 'width' => 1024, 'height' => 800 ), $cherry_plugin_details_url) . '" })
		})</script>';
}

// Show notice in admin panel. Notice formed in xml file on server
// cherry_plugin_remote_query( array(
// 								'data_type'   => 'notice',
// 								'output_type' => 'notice',
// 								)
// 							);

// Remote query, function return any data of xml file on server
function cherry_plugin_remote_query( $atts ) {
	global $wp_version;

	$default = array(
		'remote_server' => CHERRY_PLUGIN_REMOTE_SERVER,
		'data_type'     => '', //framework, plugin, notice, info (Or any channel in xml)
		'output_type'   => 'return' //return, echo, notice
		);
	extract( array_merge( $default, $atts ) );

	if( $data_type == 'framework' && defined('CHERRY_VER') ) {

		$current_version = CHERRY_VER;

	} else if( $data_type == 'plugin' ) {

		$current_version = CHERRY_PLUGIN_VERSION;

	} else {
		$current_version = '';
	}

	$response = wp_remote_post( $remote_server, array(
		'body'       => array(
							'data_type'       => $data_type,
							'current_version' => $current_version,
							'api-key'         => md5( get_bloginfo('url') )
							),
		'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo('url')
		)
	);

	if ( is_wp_error( $response ) || !is_array( $response ) || $response['response']['code'] != '200' ) {
		return;
	}

	$response = unserialize( $response['body'] );
	if ( $response == null ) {
		return;
	}

	switch ( $output_type ) {
		case 'notice':
			if ( !empty( $response ) && isset( $response['action'] ) && !empty( $response['notice_content'] ) ) {
				global $notice_attr;

				$notice_attr = array();
				if ( isset( $response['wrapper_id'] ) ) $notice_attr['wrapper_id'] = $response['wrapper_id'];
				if ( isset( $response['wrapper_class'] ) ) $notice_attr['wrapper_class'] = $response['wrapper_class'];
				if ( isset( $response['notice_content'] ) ) $notice_attr['notice_content'] = $response['notice_content'];

				if ( !did_action( 'cherry_plugin_upgrade_ver ') ) {

					add_action( $response['action'], 'cherry_call_function_add_notice' );
					function cherry_call_function_add_notice() {
						global $notice_attr;

						echo cherry_add_notice( $notice_attr );
					}

				}
			}
			break;

		case 'echo':
			echo $response;
			break;

		default:
			return $response;
			break;
	}
}