Fix PHP 8.4 compatibility issues in Sensational theme
- Fixed deprecated WP_Widget constructors in all widget files - Changed $this->WP_Widget() to parent::__construct() in: * widget-social.php * widget-fblikebox.php * widget-googleplus.php * widget-tabs.php - Fixed old-style constructor methods to __construct() in: * widget-ad125.php (mts_Ad_Widget -> __construct) * widget-ad300.php (mts_ad_300_Widget -> __construct) - Fixed for loop syntax error in widget-tweets.php (for(i; -> for($i = 1;) - Enabled registration for ad125 and ad300 widgets - Added new 'After First Paragraph' widget area for in-content ads All widgets now compatible with PHP 8.4 and editable in WordPress admin. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
208
functions/widget-social.php
Normal file
208
functions/widget-social.php
Normal file
@@ -0,0 +1,208 @@
|
||||
<?php
|
||||
|
||||
/*-----------------------------------------------------------------------------------
|
||||
|
||||
Plugin Name: Social Profile Icons
|
||||
Description: Show social profile icons in sidebar or footer.
|
||||
Version: 1.0
|
||||
|
||||
-----------------------------------------------------------------------------------*/
|
||||
|
||||
//Widget Registration.
|
||||
|
||||
function mythemeshop_load_widget() {
|
||||
|
||||
register_widget( 'Social_Profile_Icons_Widget' );
|
||||
|
||||
}
|
||||
class Social_Profile_Icons_Widget extends WP_Widget {
|
||||
|
||||
protected $defaults;
|
||||
protected $sizes;
|
||||
protected $profiles;
|
||||
|
||||
function __construct() {
|
||||
|
||||
$this->defaults = array(
|
||||
'title' => '',
|
||||
'new_window' => 0,
|
||||
'size' => 32,
|
||||
'dribbble' => '',
|
||||
'email' => '',
|
||||
'facebook' => '',
|
||||
'gplus' => '',
|
||||
'linkedin' => '',
|
||||
'pinterest' => '',
|
||||
'rss' => '',
|
||||
'stumbleupon' => '',
|
||||
'twitter' => '',
|
||||
'youtube' => '',
|
||||
'flickr' => '',
|
||||
'lastfm' => '',
|
||||
'tumblr' => '',
|
||||
'vimeo' => '',
|
||||
);
|
||||
|
||||
|
||||
$this->sizes = array( '32' );
|
||||
|
||||
$this->profiles = array(
|
||||
'dribbble' => array(
|
||||
'label' => __( 'Dribbble URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-dribbble"><a title="Dribbble" href="%s" %s>Dribbble</a></li>',
|
||||
),
|
||||
'email' => array(
|
||||
'label' => __( 'Email URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-email"><a title="Email" href="%s" %s>Email</a></li>',
|
||||
),
|
||||
'facebook' => array(
|
||||
'label' => __( 'Facebook URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-facebook"><a title="Facebook" href="%s" %s>Facebook</a></li>',
|
||||
),
|
||||
'gplus' => array(
|
||||
'label' => __( 'Google+ URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-gplus"><a title="Google+" href="%s" %s>Google+</a></li>',
|
||||
),
|
||||
'linkedin' => array(
|
||||
'label' => __( 'Linkedin URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-linkedin"><a title="LinkedIn" href="%s" %s>Linkedin</a></li>',
|
||||
),
|
||||
'pinterest' => array(
|
||||
'label' => __( 'Pinterest URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-pinterest"><a title="Pinterest" href="%s" %s>Pinterest</a></li>',
|
||||
),
|
||||
'rss' => array(
|
||||
'label' => __( 'RSS URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-rss"><a title="RSS" href="%s" %s>RSS</a></li>',
|
||||
),
|
||||
'stumbleupon' => array(
|
||||
'label' => __( 'StumbleUpon URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-stumbleupon"><a title="StumbleUpon" href="%s" %s>StumbleUpon</a></li>',
|
||||
),
|
||||
'twitter' => array(
|
||||
'label' => __( 'Twitter URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-twitter"><a title="Twitter" href="%s" %s>Twitter</a></li>',
|
||||
),
|
||||
'youtube' => array(
|
||||
'label' => __( 'YouTube URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-youtube"><a title="YouTube" href="%s" %s>YouTube</a></li>',
|
||||
),
|
||||
'flickr' => array(
|
||||
'label' => __( 'Flickr URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-flickr"><a title="Flickr" href="%s" %s>Flickr</a></li>',
|
||||
),
|
||||
'lastfm' => array(
|
||||
'label' => __( 'Lastfm URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-lastfm"><a title="Lastfm" href="%s" %s>Lastfm</a></li>',
|
||||
),
|
||||
'tumblr' => array(
|
||||
'label' => __( 'Tumblr URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-tumblr"><a title="Tumblr" href="%s" %s>Tumblr</a></li>',
|
||||
),
|
||||
'vimeo' => array(
|
||||
'label' => __( 'Vimeo URI', 'mythemeshop' ),
|
||||
'pattern' => '<li class="social-vimeo"><a title="Vimeo" href="%s" %s>Vimeo</a></li>',
|
||||
),
|
||||
);
|
||||
|
||||
$widget_ops = array(
|
||||
'classname' => 'social-profile-icons',
|
||||
'description' => __( 'Show profile icons.', 'mythemeshop' ),
|
||||
);
|
||||
|
||||
$control_ops = array(
|
||||
'id_base' => 'social-profile-icons',
|
||||
#'width' => 505,
|
||||
#'height' => 350,
|
||||
);
|
||||
|
||||
parent::__construct( 'social-profile-icons', __( 'MyThemeShop: Social Profile Icons', 'mythemeshop' ), $widget_ops, $control_ops );
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Widget Form.
|
||||
*
|
||||
* Outputs the widget form that allows users to control the output of the widget.
|
||||
*
|
||||
*/
|
||||
function form( $instance ) {
|
||||
|
||||
/** Merge with defaults */
|
||||
$instance = wp_parse_args( (array) $instance, $this->defaults );
|
||||
?>
|
||||
|
||||
<p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'mythemeshop' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>" /></p>
|
||||
|
||||
<p><label><input id="<?php echo $this->get_field_id( 'new_window' ); ?>" type="checkbox" name="<?php echo $this->get_field_name( 'new_window' ); ?>" value="1" <?php checked( 1, $instance['new_window'] ); ?>/> <?php esc_html_e( 'Open links in new window?', 'mythemeshop' ); ?></label></p>
|
||||
|
||||
<hr style="background: #ccc; border: 0; height: 1px; margin: 20px 0;" />
|
||||
|
||||
<?php
|
||||
foreach ( (array) $this->profiles as $profile => $data ) {
|
||||
|
||||
printf( '<p><label for="%s">%s:</label>', esc_attr( $this->get_field_id( $profile ) ), esc_attr( $data['label'] ) );
|
||||
printf( '<input type="text" id="%s" class="widefat" name="%s" value="%s" /></p>', esc_attr( $this->get_field_id( $profile ) ), esc_attr( $this->get_field_name( $profile ) ), esc_url( $instance[$profile] ) );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Form validation and sanitization.
|
||||
*
|
||||
* Runs when you save the widget form. Allows you to validate or sanitize widget options before they are saved.
|
||||
*
|
||||
*/
|
||||
function update( $newinstance, $oldinstance ) {
|
||||
|
||||
foreach ( $newinstance as $key => $value ) {
|
||||
|
||||
/** Sanitize Profile URIs */
|
||||
if ( array_key_exists( $key, (array) $this->profiles ) ) {
|
||||
$newinstance[$key] = esc_url( $newinstance[$key] );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return $newinstance;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Widget Output.
|
||||
*
|
||||
* Outputs the actual widget on the front-end based on the widget options the user selected.
|
||||
*
|
||||
*/
|
||||
function widget( $args, $instance ) {
|
||||
|
||||
extract( $args );
|
||||
|
||||
/** Merge with defaults */
|
||||
$instance = wp_parse_args( (array) $instance, $this->defaults );
|
||||
|
||||
echo $before_widget;
|
||||
|
||||
if ( ! empty( $instance['title'] ) )
|
||||
echo $before_title . apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ) . $after_title;
|
||||
|
||||
$output = '';
|
||||
|
||||
$new_window = $instance['new_window'] ? 'target="_blank"' : '';
|
||||
|
||||
foreach ( (array) $this->profiles as $profile => $data ) {
|
||||
if ( ! empty( $instance[$profile] ) )
|
||||
$output .= sprintf( $data['pattern'], esc_url( $instance[$profile] ), $new_window );
|
||||
}
|
||||
|
||||
if ( $output )
|
||||
printf( '<div class="social-profile-icons"><ul class="%s">%s</ul></div>', '',$output );
|
||||
|
||||
echo $after_widget;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
add_action( 'widgets_init', 'mythemeshop_load_widget' );
|
||||
Reference in New Issue
Block a user