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/wpkoopkj/wp-content/plugins/ohio-extra/widgets/widget-logo.php
<?php

if ( ! class_exists( 'ohio_widget_logo' ) ) {

	class ohio_widget_logo extends SB_WP_Widget {
		
		protected $options;
		
		public function __construct() {

			$this->options = array(
				array(
					'custom_css', 'text', '', 
					'label' => esc_html__( 'Custom CSS classes', 'ohio-extra' ), 
					'input' => 'text'
				)
			);
			
			parent::__construct(
				'ohio_widget_logo',
				'Ohio: ' . esc_html__( 'Logo', 'ohio-extra' ),
				array( 'description' => esc_html__( 'Display site logo', 'ohio-extra' ) )
			);
		}
		
		function widget( $args, $instance ) {
			extract( $args );
			$this->setInstances( $instance, 'filter' );

			$allowed_tags = array(
				'section' => array(
					'id' => array(),
					'class' => array()
				),
				'li' => array(
					'id' => array(),
					'class' => array()
				),
				'div' => array(
					'id' => array(),
					'class' => array()
				),
				'h3' => array(
					'class' => array()
				)
			);

			$css_classes = $this->getInstance( 'custom_css' );
			$logo = OhioSettings::footer_widget_logo();
			$switcher = OhioOptions::get( 'page_dark_mode_switcher', false );
			$dark_scheme = OhioOptions::get( 'page_dark_mode', false );
			$is_dark_scheme = $switcher || $dark_scheme;

			if ( $is_dark_scheme ) {
				$_logo = OhioOptions::get_global( 'page_header_logo_image' );
		
				$_logo_light = array(
					'default' => false,
					'retina' => false,
					'mobile' => false,
					'have_vector' => false,
					'type' => false
				);
		
				if ( is_array( $_logo ) ) {
					if ( $_logo['global_logo_image_light'] ) {
						$_logo_light['light'] = $_logo['global_logo_image_light'];
						if ( ( substr( $_logo['global_logo_image_light'], -4, 4) == '.svg' ) ) {
							$_logo_light['have_vector'] = true;
						}
					}
					if ( $_logo['global_logo_image_light_retina'] ) {
						$_logo_light['light_retina'] = $_logo['global_logo_image_light_retina'];
						if ( ( substr( $_logo['global_logo_image_light_retina'], -4, 4) == '.svg' ) ) {
							$_logo_light['have_vector'] = true;
						}
					}
				}
		
				if ( is_array( $_logo ) ) {
					if ( $_logo['global_logo_image_light'] ) {
						$_logo_light['default'] = $_logo['global_logo_image_light'];
					}
					if ( $_logo['global_logo_image_light_retina'] ) {
						$_logo_light['retina'] = $_logo['global_logo_image_light_retina'];
						
					}
					if ( $_logo['global_logo_image_light_mobile'] ) {
						$_logo_light['mobile'] = $_logo['global_logo_image_light_mobile'];
					}
				}
			}

			echo wp_kses( $before_widget, $allowed_tags );
			?>
				<div class="branding">
					<div class="logo <?php if ( $css_classes ) { echo esc_attr( $css_classes ); } ?>">
						<a class="-unlink" href="<?php echo esc_url( home_url( '/' ) ); ?>">

						<?php if ( is_array( $logo ) && $logo['default'] ) : ?>

							<img src="<?php echo esc_url( ( $logo['default'] ) ? $logo['default'] : $logo['retina'] ); ?>" class="light-scheme-logo <?php if ( $logo['have_vector'] ) { echo 'svg-logo'; } ?>"<?php if ( $logo['retina'] ) { echo ' srcset="' . $logo['retina'] . ' 2x"'; } ?> alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>">

							<?php if ( $is_dark_scheme ): ?>

								<?php if ( $_logo_light['default'] || $_logo_light['retina'] ): ?>

									<img src="<?php echo esc_url( ( $_logo_light['default'] ) ? $_logo_light['default'] : $_logo_light['retina'] ); ?>" class="<?php if ( $is_dark_scheme ) { echo 'dark-scheme-logo'; }  ?><?php if ( $_logo_light['have_vector'] ) { echo ' svg-logo'; }  ?>" <?php if ( $_logo_light['retina'] ) { echo ' srcset="' . $_logo_light['retina'] . ' 2x"'; } ?> alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>">

								<?php endif; ?>

							<?php endif; ?>

						<?php else : ?>

							<h3 class="title text-left"><?php echo esc_html( get_bloginfo( 'name' ) ); ?></h3>

						<?php endif; ?>

						</a>
					</div>
				</div>
			<?php

			echo wp_kses( $after_widget, $allowed_tags );
		}
	}

	register_widget( 'ohio_widget_logo' );
}