????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/cherry-plugin-x/includes/widgets/ |
Upload File : |
<?php class My_Facebook_Widget extends WP_Widget { public function __construct() { parent::__construct('My_Facebook_Widget', __('Cherry - Facebook Like Box Widget', CHERRY_PLUGIN_DOMAIN), array( 'description' => __('Cherry - Facebook Like Box Widget', CHERRY_PLUGIN_DOMAIN)) ); } public function widget( $args, $instance ){ extract($args, EXTR_SKIP); $title = apply_filters('widget_title', empty($instance['title']) ? __('My Facebook Page', CHERRY_PLUGIN_DOMAIN) : $instance['title']); $facebook_URL = apply_filters('widget_facebook_URL', empty($instance['facebook_URL']) ? '' : $instance['facebook_URL']); $box_width = apply_filters('widget_box_width', empty($instance['box_width']) ? '100%' : $instance['box_width']); $box_height = apply_filters('widget_box_height', empty($instance['box_height']) ? '100%' : $instance['box_height']); $color_scheme = apply_filters('widget_color_scheme', empty($instance['color_scheme']) ? 'light' : $instance['color_scheme']); $display_haeder = apply_filters('widget_display_haeder', empty($instance['display_haeder']) ? 'false' : 'true'); $display_faces = apply_filters('widget_display_faces', empty($instance['display_faces']) ? 'false' : 'true'); $display_stream = apply_filters('widget_display_stream', empty($instance['display_stream']) ? 'false' : 'true'); $display_border = apply_filters('widget_display_border', empty($instance['display_border']) ? 'false' : 'true'); $location = get_bloginfo('language')==""? "en_US" : str_replace('-', '_', get_bloginfo('language')); if($color_scheme!='light'){ $color_scheme = 'data-colorscheme="dark"'; }else{ $color_scheme = ''; } if($facebook_URL!=''){ echo $before_widget; echo $before_title . $title . $after_title; ?> <div class="facebook_like_box"> <div id="fb-root"></div> <script> (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/<?php echo $location; ?>/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <div style="overflow:hidden;" class="fb-like-box <?php echo ($color_scheme != '')?'dark_background': ''; ?>" data-href="<?php esc_html_e($facebook_URL); ?>" data-width="<?php echo $box_width; ?>" data-height="<?php echo $box_height; ?>" data-show-faces="<?php echo $display_faces; ?>" <?php echo $color_scheme; ?> data-stream="<?php echo $display_stream; ?>" data-show-border="<?php echo $display_border; ?>" data-header="<?php echo $display_haeder; ?>"></div> </div> <?php echo $after_widget; } } public function update( $new_instance, $old_instance ){ $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); $instance['facebook_URL'] = $new_instance['facebook_URL']; $instance['box_width'] = $new_instance['box_width']; $instance['box_height'] = $new_instance['box_height']; $instance['color_scheme'] = $new_instance['color_scheme']; $instance['display_haeder'] = $new_instance['display_haeder']; $instance['display_faces'] = $new_instance['display_faces']; $instance['display_stream'] = $new_instance['display_stream']; $instance['display_border'] = $new_instance['display_border']; return $instance; } public function form( $instance ){ $defaults = array('title' => 'My Facebook Page', 'facebook_URL'=>'', 'box_width' => '100%', 'box_height' => '100%', 'color_scheme' => 'light', 'display_haeder' => 'on', 'display_faces' => 'on', 'display_stream' => 'on', 'display_border' => 'on', 'display_header' => 'on'); $instance = wp_parse_args( (array) $instance, $defaults ); $title = esc_attr($instance['title']); $facebook_URL = $instance['facebook_URL']; $box_width = $instance['box_width']; $box_height = $instance['box_height']; $color_scheme = $instance['color_scheme']; $display_haeder = $instance['display_haeder']; $display_faces = $instance['display_faces']; $display_stream = $instance['display_stream']; $display_border = $instance['display_border']; ?> <!--title--> <p> <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php _e('Title', CHERRY_PLUGIN_DOMAIN); ?></label> <input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" name="<?php echo esc_attr($this->get_field_name('title')); ?>" type="text" value="<?php echo esc_attr($title); ?>" /> </p> <!--facebook_URL--> <p> <label for="<?php echo esc_attr($this->get_field_id('facebook_URL')); ?>"><?php _e('Facebook page url', CHERRY_PLUGIN_DOMAIN).':'; ?></label> <input class="widefat" id="<?php echo esc_attr($this->get_field_id('facebook_URL')); ?>" name="<?php echo esc_attr($this->get_field_name('facebook_URL')); ?>" type="text" value="<?php echo esc_attr($facebook_URL); ?>" /> <span style="font-size:11px; color:#999;"><?php _e('The Like Box only works with ', CHERRY_PLUGIN_DOMAIN); ?><a target="_blank" href="https://www.facebook.com/help/174987089221178/" title="<?php _e('Facebook Pages.', CHERRY_PLUGIN_DOMAIN); ?>"><?php _e('Facebook Pages.', CHERRY_PLUGIN_DOMAIN); ?></a></span> </p> <!--box_width--> <p> <label for="<?php echo esc_attr($this->get_field_id('box_width')); ?>"><?php _e('Width', CHERRY_PLUGIN_DOMAIN); ?></label> <input class="widefat" id="<?php echo esc_attr($this->get_field_id('box_width')); ?>" name="<?php echo esc_attr($this->get_field_name('box_width')); ?>" type="text" value="<?php echo esc_attr($box_width); ?>" /> </p> <!--box_height--> <p> <label for="<?php echo esc_attr($this->get_field_id('box_height')); ?>"><?php _e('Height', CHERRY_PLUGIN_DOMAIN); ?></label> <input class="widefat" id="<?php echo esc_attr($this->get_field_id('box_height')); ?>" name="<?php echo esc_attr($this->get_field_name('box_height')); ?>" type="text" value="<?php echo esc_attr($box_height); ?>" /> </p> <!--color_scheme--> <p> <label for="<?php echo $this->get_field_id('color_scheme'); ?>"><?php _e('Color Scheme', CHERRY_PLUGIN_DOMAIN).":"; ?> <select id="<?php echo $this->get_field_id('color_scheme'); ?>" name="<?php echo $this->get_field_name('color_scheme'); ?>" style="width:140px;" > <option value="light" <?php echo ($color_scheme === 'light' ? ' selected="selected"' : ''); ?>><?php _e('Light', CHERRY_PLUGIN_DOMAIN) ?></option> <option value="dark" <?php echo ($color_scheme === 'dark' ? ' selected="selected"' : ''); ?>><?php _e('Dark', CHERRY_PLUGIN_DOMAIN) ?></option> </select> </label> </p> <!--display_haeder--> <p> <input class="checkbox" id="<?php echo $this->get_field_id('display_haeder'); ?>" name="<?php echo $this->get_field_name('display_haeder'); ?>" type="checkbox" <?php checked($instance['display_haeder'], 'on' ); ?> /> <label for="<?php echo $this->get_field_id('display_haeder'); ?>"><?php _e('Display header', CHERRY_PLUGIN_DOMAIN)."."; ?></label> </p> <!--display_faces--> <p> <input class="checkbox" id="<?php echo $this->get_field_id('display_faces'); ?>" name="<?php echo $this->get_field_name('display_faces'); ?>" type="checkbox" <?php checked($instance['display_faces'], 'on' ); ?> /> <label for="<?php echo $this->get_field_id('display_faces'); ?>"><?php _e('Display faces', CHERRY_PLUGIN_DOMAIN)."."; ?></label> </p> <!--display_stream--> <p> <input class="checkbox" id="<?php echo $this->get_field_id('display_stream'); ?>" name="<?php echo $this->get_field_name('display_stream'); ?>" type="checkbox" <?php checked($instance['display_stream'], 'on' ); ?> /> <label for="<?php echo $this->get_field_id('display_stream'); ?>"><?php _e('Display stream', CHERRY_PLUGIN_DOMAIN)."."; ?></label> </p> <!--display_border--> <p> <input class="checkbox" id="<?php echo $this->get_field_id('display_border'); ?>" name="<?php echo $this->get_field_name('display_border'); ?>" type="checkbox" <?php checked($instance['display_border'], 'on' ); ?> /> <label for="<?php echo $this->get_field_id('display_border'); ?>"><?php _e('Display border', CHERRY_PLUGIN_DOMAIN)."."; ?></label> </p> <?php } } ?>