HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wptoho/wp-content/plugins/defender-security/src/traits/scan-upsell.php
<?php
/**
 * Malware scan upsell.
 *
 * @package WP_Defender\Traits
 * @since 4.7.2
 */

namespace WP_Defender\Traits;

trait Scan_Upsell {
	/**
	 * Get scan upsell details.
	 *
	 * @param string $location The location of the upsell.
	 *
	 * @return array
	 */
	public function get_scan_upsell( string $location ): array {
		/* translators: 1: Opening anchor tag, 2: Closing anchor tag */
		$anc_link = __( 'Let our experts meticulously clean your sites, remove malware and set up optimal security configurations for ongoing protection. %1$sGet expert services%2$s.', 'defender-security' );

		switch ( $location ) {
			case 'dashboard':
				return array(
					'url'         => 'https://wpmudev.com/hub2/expert-services/?utm_source=defender-pro&utm_medium=plugin&utm_campaign=defender_services_dash_upsell',
					'description' => $anc_link,
				);
			case 'scan':
				return array(
					'url'         => 'https://wpmudev.com/hub2/expert-services/?utm_source=defender-pro&utm_medium=plugin&utm_campaign=defender_services_mwscanning_upsell',
					'description' => $anc_link,
				);
			case 'email':
				return array(
					'url'         => 'https://wpmudev.com/hub2/expert-services/?utm_source=defender-pro&utm_medium=email&utm_campaign=defender_services_email_upsell',
					'description' => $anc_link,
				);
			default:
				return array(
					'url'         => '',
					'description' => '',
				);
		}
	}
}