
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php defined( 'ABSPATH' ) or	die( 'Cheatin&#8217; uh?' );

$cf_instance = get_rocket_cloudflare_api_instance();
if ( ! is_wp_error( $cf_instance ) ) {
	try {
		$zone_instance = new CloudFlare\Zone( $cf_instance );
		$zone          = $zone_instance->zones( $options['cloudflare_domain'] );

		if ( isset( $zone->result[0]->id ) ) {
			$options['cloudflare_zone_id'] = $zone->result[0]->id;
			update_option( WP_ROCKET_SLUG, $options );
		}
	} catch ( Exception $e ) {
		return false;
	}
}
