HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/TriadGov/wp-content/plugins/wpforms/src/Admin/Payments/Views/Overview/ModeToggle.php
<?php

namespace WPForms\Admin\Payments\Views\Overview;

/**
 * Payments Overview Mode Toggle class.
 *
 * @since 1.8.2
 */
class ModeToggle {

	/**
	 * Determine if the toggle should be displayed and render it.
	 *
	 * @since 1.8.2
	 */
	public function display() {

		// Bail early if no payments are found in test mode.
		if ( ! Helpers::is_test_payment_exists() ) {
			return;
		}

		$this->render();
	}

	/**
	 * Display the toggle button.
	 *
	 * @since 1.8.2
	 */
	private function render() {

		// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		echo wpforms_render(
			'admin/payments/mode-toggle',
			[
				'mode' => Page::get_mode(),
			],
			true
		);
	}
}