/wp-content/themes/Avada/includes/class-fusion-widget-ad-125-125.php
https://gitlab.com/webkod3r/tripolis · PHP · 110 lines · 90 code · 19 blank · 1 comment · 2 complexity · ebe197917a78bb72ff37eecbcf916b92 MD5 · raw file
- <?php
- class Fusion_Widget_Ad_125_125 extends WP_Widget {
- function __construct() {
- $widget_ops = array('classname' => 'ad_125_125', 'description' => 'Add 125x125 ads.');
- $control_ops = array('id_base' => 'ad_125_125-widget');
- parent::__construct('ad_125_125-widget', 'Avada: 125x125 Ads', $widget_ops, $control_ops);
- }
- function widget( $args, $instance ) {
- extract( $args );
- ?>
- <div class="img-row">
- <?php $ads = array( 1, 2, 3, 4 ); ?>
- <?php foreach( $ads as $ad_count ) : ?>
- <?php if ( $instance['ad_125_img_' . $ad_count] && $instance['ad_125_link_' . $ad_count] ) : ?>
- <div class="img-holder">
- <span class="hold">
- <a href="<?php echo $instance['ad_125_link_' . $ad_count]; ?>">
- <img src="<?php echo $instance['ad_125_img_' . $ad_count]; ?>" alt="" width="123" height="123" />
- </a>
- </span>
- </div>
- <?php endif; ?>
- <?php endforeach; ?>
- </div>
- <?php
- }
- function update( $new_instance, $old_instance ) {
- $instance = $old_instance;
- $instance['ad_125_img_1'] = $new_instance['ad_125_img_1'];
- $instance['ad_125_link_1'] = $new_instance['ad_125_link_1'];
- $instance['ad_125_img_2'] = $new_instance['ad_125_img_2'];
- $instance['ad_125_link_2'] = $new_instance['ad_125_link_2'];
- $instance['ad_125_img_3'] = $new_instance['ad_125_img_3'];
- $instance['ad_125_link_3'] = $new_instance['ad_125_link_3'];
- $instance['ad_125_img_4'] = $new_instance['ad_125_img_4'];
- $instance['ad_125_link_4'] = $new_instance['ad_125_link_4'];
- return $instance;
- }
- function form( $instance ) {
- $defaults = array(
- 'ad_125_img_1' => '',
- 'ad_125_link_1' => '',
- 'ad_125_img_2' => '',
- 'ad_125_link_2' => '',
- 'ad_125_img_3' => '',
- 'ad_125_link_3' => '',
- 'ad_125_img_4' => '',
- 'ad_125_link_4' => ''
- );
- $instance = wp_parse_args( (array) $instance, $defaults );
- ?>
- <p><strong><?php printf( __( 'Ad %s', 'Avada' ), '1' ); ?></strong></p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_img_1' ); ?>"><?php _e( 'Image Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_img_1' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_img_1' ); ?>" value="<?php echo $instance['ad_125_img_1']; ?>" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_link_1' ); ?>"><?php _e( 'Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_link_1' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_link_1' ); ?>" value="<?php echo $instance['ad_125_link_1']; ?>" />
- </p>
- <p><strong><?php printf( __( 'Ad %s', 'Avada' ), '2' ); ?></strong></p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_img_2' ); ?>"><?php _e( 'Image Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_img_2' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_img_2' ); ?>" value="<?php echo $instance['ad_125_img_2']; ?>" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_link_2' ); ?>"><?php _e( 'Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_link_2' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_link_2' ); ?>" value="<?php echo $instance['ad_125_link_2']; ?>" />
- </p>
- <p><strong><?php printf( __( 'Ad %s', 'Avada' ), '3' ); ?></strong></p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_img_3' ); ?>"><?php _e( 'Image Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_img_3' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_img_3' ); ?>" value="<?php echo $instance['ad_125_img_3']; ?>" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_link_3' ); ?>"><?php _e( 'Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_link_3' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_link_3' ); ?>" value="<?php echo $instance['ad_125_link_3']; ?>" />
- </p>
- <p><strong><?php printf( __( 'Ad %s', 'Avada' ), '4' ); ?></strong></p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_img_4' ); ?>"><?php _e( 'Image Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_img_4' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_img_4' ); ?>" value="<?php echo $instance['ad_125_img_4']; ?>" />
- </p>
- <p>
- <label for="<?php echo $this->get_field_id( 'ad_125_link_4' ); ?>"><?php _e( 'Ad Link:', 'Avada' ); ?></label>
- <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'ad_125_link_4' ); ?>" name="<?php echo $this->get_field_name( 'ad_125_link_4' ); ?>" value="<?php echo $instance['ad_125_link_4']; ?>" />
- </p>
- <?php
- }
- }
- // Omit closing PHP tag to avoid "Headers already sent" issues.