HEX
Server: Apache
System: Linux webm006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/s/l/y/slyfwmm/foar/wp-content/themes/flexfit/framework/functions/widgets/sponsor.php
<?php

/*
Plugin Name: Custom Flickr Widget
Plugin URI: http://twitter.com/hellominti/
Description: A simple but powerful widget to display Sponsors.
Version: 2.00
Author: minti
Author URI: http://twitter.com/hellominti/
*/

class widget_sponsor extends WP_Widget_Text { 
	
	// Widget Settings
	function widget_sponsor() {
		$widget_ops = array('description' => __('Display your Sponsor Links') );
		$control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'sponsor' );
		$this->WP_Widget( 'sponsor', __('minti.Sponsor'), $widget_ops, $control_ops );
	}
	
	// Widget Output
	function widget($args, $instance) {
		extract($args);
		$title = apply_filters('widget_title', $instance['title']);
		
		$sponsor1 = $instance['sponsor1'];
		$sponsorimg1 = $instance['sponsorimg1'];
		
		$sponsor2 = $instance['sponsor2'];
		$sponsorimg2 = $instance['sponsorimg2'];
		
		$sponsor3 = $instance['sponsor3'];
		$sponsorimg3 = $instance['sponsorimg3'];
		
		$sponsor4 = $instance['sponsor4'];
		$sponsorimg4 = $instance['sponsorimg4'];
		
		// ------
		echo $before_widget;
		echo $before_title . $title . $after_title;
		
		echo '<div class="sponsors">';
			if (!empty($sponsorimg1)) { echo '<a href="'.$sponsor1.'" target="_blank"><img src="'.$sponsorimg1.'" /></a>';}
			if (!empty($sponsorimg2)) { echo '<a href="'.$sponsor2.'" target="_blank"><img src="'.$sponsorimg2.'" /></a>';}
			if (!empty($sponsorimg3)) { echo '<a href="'.$sponsor3.'" target="_blank"><img src="'.$sponsorimg3.'" /></a>';}
			if (!empty($sponsorimg4)) { echo '<a href="'.$sponsor4.'" target="_blank"><img src="'.$sponsorimg4.'" /></a>';}
		echo '</div>';

		echo $after_widget;
		// ------
	}
	
	// Update
	function update( $new_instance, $old_instance ) {  
		$instance = $old_instance; 
		
		$instance['title'] = strip_tags( $new_instance['title'] );
		
		$instance['sponsor1'] = strip_tags( $new_instance['sponsor1'] );
		$instance['sponsorimg1'] = strip_tags( $new_instance['sponsorimg1'] );
		
		$instance['sponsor2'] = strip_tags( $new_instance['sponsor2'] );
		$instance['sponsorimg2'] = strip_tags( $new_instance['sponsorimg2'] );
		
		$instance['sponsor3'] = strip_tags( $new_instance['sponsor3'] );
		$instance['sponsorimg3'] = strip_tags( $new_instance['sponsorimg3'] );
		
		$instance['sponsor4'] = strip_tags( $new_instance['sponsor4'] );
		$instance['sponsorimg4'] = strip_tags( $new_instance['sponsorimg4'] );

		return $instance;
	}
	
	// Backend Form
	function form($instance) {
		$placeholder = 'http://placehold.it/95x95';
		$defaults = array( 'title' => 'Sponsor Widget', 'sponsor1' => '#', 'sponsorimg1' => $placeholder, 'sponsor2' => '#', 'sponsorimg2' => $placeholder, 'sponsor3' => '#', 'sponsorimg3' => $placeholder, 'sponsor4' => '#', 'sponsorimg4' => $placeholder ); // Default Values
		$instance = wp_parse_args( (array) $instance, $defaults ); ?>
        
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>">Widget Title:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" />
		</p>
		
        <p>
			<label for="<?php echo $this->get_field_id( 'sponsor1' ); ?>">Sponsor 1 URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsor1' ); ?>" name="<?php echo $this->get_field_name( 'sponsor1' ); ?>" value="<?php echo $instance['sponsor1']; ?>" />
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'sponsorimg1' ); ?>">Sponsor 1 Image URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsorimg1' ); ?>" name="<?php echo $this->get_field_name( 'sponsorimg1' ); ?>" value="<?php echo $instance['sponsorimg1']; ?>" />
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id( 'sponsor2' ); ?>">Sponsor 2 URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsor2' ); ?>" name="<?php echo $this->get_field_name( 'sponsor2' ); ?>" value="<?php echo $instance['sponsor2']; ?>" />
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'sponsorimg2' ); ?>">Sponsor 2 Image URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsorimg2' ); ?>" name="<?php echo $this->get_field_name( 'sponsorimg2' ); ?>" value="<?php echo $instance['sponsorimg2']; ?>" />
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id( 'sponsor3' ); ?>">Sponsor 3 URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsor3' ); ?>" name="<?php echo $this->get_field_name( 'sponsor3' ); ?>" value="<?php echo $instance['sponsor3']; ?>" />
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'sponsorimg3' ); ?>">Sponsor 3 Image URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsorimg3' ); ?>" name="<?php echo $this->get_field_name( 'sponsorimg3' ); ?>" value="<?php echo $instance['sponsorimg3']; ?>" />
		</p>
		
		<p>
			<label for="<?php echo $this->get_field_id( 'sponsor4' ); ?>">Sponsor 4 URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsor4' ); ?>" name="<?php echo $this->get_field_name( 'sponsor4' ); ?>" value="<?php echo $instance['sponsor4']; ?>" />
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'sponsorimg4' ); ?>">Sponsor 4 Image URL:</label>
			<input class="widefat" id="<?php echo $this->get_field_id( 'sponsorimg4' ); ?>" name="<?php echo $this->get_field_name( 'sponsorimg4' ); ?>" value="<?php echo $instance['sponsorimg4']; ?>" />
		</p>
		
    <?php }
}

// Add Widget
function widget_sponsor_init() {
	register_widget('widget_sponsor');
}
add_action('widgets_init', 'widget_sponsor_init');

?>