HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,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/lucendi/www/wp-content/themes/divi/core/components/api/email/init.php
<?php

if ( ! function_exists( 'et_core_api_email_init' ) ):
function et_core_api_email_init() {}
endif;


if ( ! function_exists( 'et_core_api_email_fetch_lists' ) ):
/**
 * Fetch the latest email lists for a provider account and update the database accordingly.
 *
 * @param string $name_or_slug The provider name or slug.
 * @param string $account      The account name.
 * @param string $api_key      Optional. The api key (if fetch succeeds, the key will be saved).
 *
 * @return string 'success' if successful, an error message otherwise.
 */
function et_core_api_email_fetch_lists( $name_or_slug, $account, $api_key = '' ) {
	if ( ! empty( $api_key ) ) {
		// The account provided either doesn't exist yet or has a new api key.
		et_core_security_check( 'manage_options' );
	}

	if ( empty( $name_or_slug ) || empty( $account ) ) {
		return __( 'ERROR: Invalid arguments.', 'et_core' );
	}

	$providers = ET_Core_API_Email_Providers::instance();
	$provider  = $providers->get( $name_or_slug, $account, 'builder' );

	if ( ! $provider ) {
		return '';
	}

	if ( is_array( $api_key ) ) {
		foreach ( $api_key as $field_name => $value ) {
			$provider->data[ $field_name ] = sanitize_text_field( $value );
		}
	} else if ( '' !== $api_key ) {
		$provider->data['api_key'] = sanitize_text_field( $api_key );
	}

	return $provider->fetch_subscriber_lists();
}
endif;


if ( ! function_exists( 'et_core_api_email_providers' ) ):
/**
 * @deprecated {@see ET_Core_API_Email_Providers::instance()}
 *
 * @return ET_Core_API_Email_Providers
 */
function et_core_api_email_providers() {
	return ET_Core_API_Email_Providers::instance();
}
endif;


if ( ! function_exists( 'et_core_api_email_remove_account' ) ):
/**
 * Delete an existing provider account.
 *
 * @param string $name_or_slug The provider name or slug.
 * @param string $account      The account name.
 */
function et_core_api_email_remove_account( $name_or_slug, $account ) {
	et_core_security_check( 'manage_options' );

	if ( empty( $name_or_slug ) || empty( $account ) ) {
		return;
	}

	// If the account being removed is a legacy account (pre-dates core api), remove the old data.
	switch( $account ) {
		case 'Divi Builder Aweber':
			et_delete_option( 'divi_aweber_consumer_key' );
			et_delete_option( 'divi_aweber_consumer_secret' );
			et_delete_option( 'divi_aweber_access_key' );
			et_delete_option( 'divi_aweber_access_secret' );
			break;
		case 'Divi Builder Plugin Aweber':
			$opts  = (array) get_option( 'et_pb_builder_options' );
			unset( $opts['aweber_consumer_key'], $opts['aweber_consumer_secret'], $opts['aweber_access_key'], $opts['aweber_access_secret'] );
			update_option( 'et_pb_builder_options', $opts );
			break;
		case 'Divi Builder MailChimp':
			et_delete_option( 'divi_mailchimp_api_key' );
			break;
		case 'Divi Builder Plugin MailChimp':
			$options  = (array) get_option( 'et_pb_builder_options' );
			unset( $options['newsletter_main_mailchimp_key'] );
			update_option( 'et_pb_builder_options', $options );
			break;
	}

	$providers = ET_Core_API_Email_Providers::instance();
	$provider  = $providers->get( $name_or_slug, $account );

	if ( $provider ) {
		$provider->delete();
	}
}
endif;