<?php add_action( 'widgets_init', 'tie_youtube_widget_box' ); function tie_youtube_widget_box() { register_widget( 'tie_youtube_widget' ); } class tie_youtube_widget extends WP_Widget { public function __construct(){ $widget_ops = array( 'classname' => 'youtube-widget' ); $control_ops = array( 'width' => 250, 'height' => 350, 'id_base' => 'youtube-widget' ); parent::__construct( 'youtube-widget', THEME_NAME .' - '.__( 'YouTube Channel' , 'tie' ) , $widget_ops, $control_ops ); } public function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base ); $page_url = $instance['page_url']; echo $before_widget; if ( $title ) echo $before_title; echo $title ; echo $after_title; wp_enqueue_script( 'tie-google-platform-js', '//apis.google.com/js/platform.js' ); // Check if it is a channel or a user account if ( strpos( $instance['page_url'], 'UC' ) === 0 ){ $source = 'channelid'; } else{ $source = 'channel'; } echo ' <div class="youtube-box fitvidsignore"> <div class="g-ytsubscribe" data-'.$source.'="' . $page_url . '" data-layout="full" data-count="default"></div> </div> '; echo $after_widget; } public function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['page_url'] = strip_tags( $new_instance['page_url'] ); return $instance; } public function form( $instance ) { $defaults = array( 'title' =>__( 'Subscribe to our Channel' , 'tie') ); $instance = wp_parse_args( (array) $instance, $defaults ); ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' , 'tie') ?></label> <input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php if( !empty( $instance['title'] ) ) echo $instance['title']; ?>" class="widefat" type="text" /> </p> <p> <label for="<?php echo $this->get_field_id( 'page_url' ); ?>"><?php _e( 'Channel Name:' , 'tie') ?></label> <input id="<?php echo $this->get_field_id( 'page_url' ); ?>" name="<?php echo $this->get_field_name( 'page_url' ); ?>" value="<?php if( !empty( $instance['page_url'] ) ) echo $instance['page_url']; ?>" class="widefat" type="text" /> </p> <?php } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
widget-ads.php | File | 60.2 KB | 0664 |
|
widget-author-custom.php | File | 2.98 KB | 0664 |
|
widget-author.php | File | 4.8 KB | 0664 |
|
widget-authors-posts.php | File | 3.3 KB | 0664 |
|
widget-category.php | File | 3.48 KB | 0664 |
|
widget-comments-avatar.php | File | 2.58 KB | 0664 |
|
widget-custom-author.php | File | 2.9 KB | 0664 |
|
widget-facebook.php | File | 2.37 KB | 0664 |
|
widget-feedburner.php | File | 3.78 KB | 0664 |
|
widget-flickr.php | File | 3.74 KB | 0664 |
|
widget-instagram.php | File | 17.6 KB | 0664 |
|
widget-login.php | File | 1.44 KB | 0664 |
|
widget-news-pic.php | File | 3.87 KB | 0664 |
|
widget-posts.php | File | 4.54 KB | 0664 |
|
widget-search.php | File | 1.02 KB | 0664 |
|
widget-slider.php | File | 6.19 KB | 0664 |
|
widget-social.php | File | 3.3 KB | 0664 |
|
widget-soundcloud.php | File | 3.1 KB | 0664 |
|
widget-tabbed.php | File | 5.94 KB | 0664 |
|
widget-text-html.php | File | 3.73 KB | 0664 |
|
widget-timeline.php | File | 2.99 KB | 0664 |
|
widget-twitter.php | File | 8.42 KB | 0664 |
|
widget-video.php | File | 4.35 KB | 0664 |
|
widget-weather.php | File | 12.33 KB | 0664 |
|
widget-youtube.php | File | 2.39 KB | 0664 |
|