PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
themes
/
rehub
/
inc
/
widgets
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> <?php /** * Plugin Name: News Widget */ add_action( 'widgets_init', 'rehub_social_link_load_widget' ); function rehub_social_link_load_widget() { register_widget( 'rehub_social_link_widget' ); } class rehub_social_link_widget extends WP_Widget { function __construct() { $widget_ops = array( 'classname' => 'social_link', 'description' => __('Widget that displays advanced meta area. Use only in sidebar!', 'rehub_framework') ); $control_ops = array( 'width' => 250, 'height' => 350, 'id_base' => 'rehub_social_link' ); parent::__construct('rehub_social_link', __('ReHub: Social icons', 'rehub_framework'), $widget_ops, $control_ops ); } /** * How to display the widget on the screen. */ function widget( $args, $instance ) { extract( $args ); /* Our variables from the widget settings. */ $title = (!empty($instance['title'])) ? apply_filters('widget_title', $instance['title'] ) : ''; /* Before widget (defined by themes). */ echo ''.$before_widget; /* Display the widget title if one was input (before and after defined by themes). */ if ( $title ) echo '<div class="title">' . $title . '</div>'; ?> <?php echo rehub_get_social_links(array('icon_size'=>'big'));?> <?php /* After widget (defined by themes). */ echo ''.$after_widget; } /** * Update the widget settings. */ function update( $new_instance, $old_instance ) { $instance = $old_instance; /* Strip tags for title and name to remove HTML (important for text inputs). */ $instance['title'] = strip_tags( $new_instance['title'] ); return $instance; } function form( $instance ) { /* Set up some default widget settings. */ $defaults = array( 'title' => __('Follow Us', 'rehub_framework')); $instance = wp_parse_args( (array) $instance, $defaults ); ?> <p><em style="color:red;"><?php _e('Links on social profiles you can set at Rehub Theme Options - Social media options', 'rehub_framework');?></em></p> <p> <label for="<?php echo ''.$this->get_field_id( 'title' ); ?>"><?php _e('Title of widget:', 'rehub_framework'); ?></label> <input type="text" class="widefat" id="<?php echo ''.$this->get_field_id( 'title' ); ?>" name="<?php echo ''.$this->get_field_name( 'title' ); ?>" value="<?php echo ''.$instance['title']; ?>" /> </p> <?php } } ?>
[+]
..
[-] related_reviews.php
[edit]
[-] condition_widget.php
[edit]
[-] tabs_widget.php
[edit]
[-] outer_ads.php
[edit]
[-] social_link_widget.php
[edit]
[-] facebook_widget.php
[edit]
[-] dealwoo.php
[edit]
[-] tabsajax_widget.php
[edit]
[-] better_menu.php
[edit]
[-] featured_sidebar.php
[edit]
[-] posts_list.php
[edit]
[-] imagetrend_sidebar.php
[edit]
[-] sticky_scroll.php
[edit]
[-] woocategory.php
[edit]
[-] top_offers.php
[edit]
[-] login_widget.php
[edit]