PHP 8.2.29
Preview: class-wp-widget.php Size: 18.00 KB
/home/medyaist/hurdamakara.com.tr/wp-includes/class-wp-widget.php
<?php
/**
 * Widget API: WP_Widget base class
 *
 * @package WordPress
 * @subpackage Widgets
 * @since 4.4.0
 */

/**
 * Core base class extended to register widgets.
 *
 * This class must be extended for each widget, and WP_Widget::widget() must be overridden.
 *
 * If adding widget options, WP_Widget::update() and WP_Widget::form() should also be overridden.
 *
 * @since 2.8.0
 * @since 4.4.0 Moved to its own file from wp-includes/widgets.php
 */
#[AllowDynamicProperties]
class WP_Widget {

	/**
	 * Root ID for all widgets of this type.
	 *
	 * @since 2.8.0
	 * @var mixed|string
	 */
	public $id_base;

	/**
	 * Name for this widget type.
	 *
	 * @since 2.8.0
	 * @var string
	 */
	public $name;

	/**
	 * Option name for this widget type.
	 *
	 * @since 2.8.0
	 * @var string
	 */
	public $option_name;

	/**
	 * Alt option name for this widget type.
	 *
	 * @since 2.8.0
	 * @var string
	 */
	public $alt_option_name;

	/**
	 * Option array passed to wp_register_sidebar_widget().
	 *
	 * @since 2.8.0
	 * @var array
	 */
	public $widget_options;

	/**
	 * Option array passed to wp_register_widget_control().
	 *
	 * @since 2.8.0
	 * @var array
	 */
	public $control_options;

	/**
	 * Unique ID number of the current instance.
	 *
	 * @since 2.8.0
	 * @var bool|int
	 */
	public $number = false;

	/**
	 * Unique ID string of the current instance (id_base-number).
	 *
	 * @since 2.8.0
	 * @var bool|string
	 */
	public $id = false;

	/**
	 * Whether the widget data has been updated.
	 *
	 * Set to true when the data is updated after a POST submit - ensures it does
	 * not happen twice.
	 *
	 * @since 2.8.0
	 * @var bool
	 */
	public $updated = false;

	//
	// Member functions that must be overridden by subclasses.
	//

	/**
	 * Echoes the widget content.
	 *
	 * Subclasses should override this function to generate their widget code.
	 *
	 * @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 ) {
		die( 'function WP_Widget::widget() must be overridden in a subclass.' );
	}

	/**
	 * Updates a particular instance of a widget.
	 *
	 * This function should check that `$new_instance` is set correctly. The newly-calculated
	 * value of `$instance` should be returned. If false is returned, the instance won't be
	 * saved/updated.
	 *
	 * @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 ) {
		return $new_instance;
	}

	/**
	 * Outputs the settings update form.
	 *
	 * @since 2.8.0
	 *
	 * @param array $instance The settings for the particular instance of the widget.
	 * @return string|void Default return is 'noform'.
	 */
	public function form( $instance ) {
		echo '<p class="no-options-widget">' . __( 'There are no options for this widget.' ) . '</p>';
		return 'noform';
	}

	// Functions you'll need to call.

	/**
	 * PHP5 constructor.
	 *
	 * @since 2.8.0
	 *
	 * @param string $id_base         Base ID for the widget, lowercase and unique. If left empty,
	 *                                a portion of the widget's PHP class name will be used. Has to be 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() ) {
		if ( ! empty( $id_base ) ) {
			$id_base = strtolower( $id_base );
		} else {
			$id_base = preg_replace( '/(wp_)?widget_/', '', strtolower( get_class( $this ) ) );
		}

		$this->id_base         = $id_base;
		$this->name            = $name;
		$this->option_name     = 'widget_' . $this->id_base;
		$this->widget_options  = wp_parse_args(
			$widget_options,
			array(
				'classname'                   => str_replace( '\\', '_', $this->option_name ),
				'customize_selective_refresh' => false,
			)
		);
		$this->control_options = wp_parse_args( $control_options, array( 'id_base' => $this->id_base ) );
	}

	/**
	 * PHP4 constructor.
	 *
	 * @since 2.8.0
	 * @deprecated 4.3.0 Use __construct() instead.
	 *
	 * @see WP_Widget::__construct()
	 *
	 * @param string $id_base         Base ID for the widget, lowercase and unique. If left empty,
	 *                                a portion of the widget's PHP class name will be used. Has to be 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 WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) {
		_deprecated_constructor( 'WP_Widget', '4.3.0', get_class( $this ) );
		WP_Widget::__construct( $id_base, $name, $widget_options, $control_options );
	}

	/**
	 * Constructs name attributes for use in form() fields
	 *
	 * This function should be used in form() methods to create name attributes for fields
	 * to be saved by update()
	 *
	 * @since 2.8.0
	 * @since 4.4.0 Array format field names are now accepted.
	 *
	 * @param string $field_name Field name.
	 * @return string Name attribute for `$field_name`.
	 */
	public function get_field_name( $field_name ) {
		$pos = strpos( $field_name, '[' );

		if ( false !== $pos ) {
			// Replace the first occurrence of '[' with ']['.
			$field_name = '[' . substr_replace( $field_name, '][', $pos, strlen( '[' ) );
		} else {
			$field_name = '[' . $field_name . ']';
		}

		return 'widget-' . $this->id_base . '[' . $this->number . ']' . $field_name;
	}

	/**
	 * Constructs id attributes for use in WP_Widget::form() fields.
	 *
	 * This function should be used in form() methods to create id attributes
	 * for fields to be saved by WP_Widget::update().
	 *
	 * @since 2.8.0
	 * @since 4.4.0 Array format field IDs are now accepted.
	 *
	 * @param string $field_name Field name.
	 * @return string ID attribute for `$field_name`.
	 */
	public function get_field_id( $field_name ) {
		$field_name = str_replace( array( '[]', '[', ']' ), array( '', '-', '' ), $field_name );
		$field_name = trim( $field_name, '-' );

		return 'widget-' . $this->id_base . '-' . $this->number . '-' . $field_name;
	}

	/**
	 * Register all widget instances of this widget class.
	 *
	 * @since 2.8.0
	 */
	public function _register() {
		$settings = $this->get_settings();
		$empty    = true;

		// When $settings is an array-like object, get an intrinsic array for use with array_keys().
		if ( $settings instanceof ArrayObject || $settings instanceof ArrayIterator ) {
			$settings = $settings->getArrayCopy();
		}

		if ( is_array( $settings ) ) {
			foreach ( array_keys( $settings ) as $number ) {
				if ( is_numeric( $number ) ) {
					$this->_set( $number );
					$this->_register_one( $number );
					$empty = false;
				}
			}
		}

		if ( $empty ) {
			// If there are none, we register the widget's existence with a generic template.
			$this->_set( 1 );
			$this->_register_one();
		}
	}

	/**
	 * Sets the internal order number for the widget instance.
	 *
	 * @since 2.8.0
	 *
	 * @param int $number The unique order number of this widget instance compared to other
	 *                    instances of the same class.
	 */
	public function _set( $number ) {
		$this->number = $number;
		$this->id     = $this->id_base . '-' . $number;
	}

	/**
	 * Retrieves the widget display callback.
	 *
	 * @since 2.8.0
	 *
	 * @return callable Display callback.
	 */
	public function _get_display_callback() {
		return array( $this, 'display_callback' );
	}

	/**
	 * Retrieves the widget update callback.
	 *
	 * @since 2.8.0
	 *
	 * @return callable Update callback.
	 */
	public function _get_update_callback() {
		return array( $this, 'update_callback' );
	}

	/**
	 * Retrieves the form callback.
	 *
	 * @since 2.8.0
	 *
	 * @return callable Form callback.
	 */
	public function _get_form_callback() {
		return array( $this, 'form_callback' );
	}

	/**
	 * Determines whether the current request is inside the Customizer preview.
	 *
	 * If true -- the current request is inside the Customizer preview, then
	 * the object cache gets suspended and widgets should check this to decide
	 * whether they should store anything persistently to the object cache,
	 * to transients, or anywhere else.
	 *
	 * @since 3.9.0
	 *
	 * @global WP_Customize_Manager $wp_customize
	 *
	 * @return bool True if within the Customizer preview, false if not.
	 */
	public function is_preview() {
		global $wp_customize;
		return ( isset( $wp_customize ) && $wp_customize->is_preview() );
	}

	/**
	 * Generates the actual widget content (Do NOT override).
	 *
	 * Finds the instance and calls WP_Widget::widget().
	 *
	 * @since 2.8.0
	 *
	 * @param array     $args        Display arguments. See WP_Widget::widget() for information
	 *                               on accepted arguments.
	 * @param int|array $widget_args {
	 *     Optional. Internal order number of the widget instance, or array of multi-widget arguments.
	 *     Default 1.
	 *
	 *     @type int $number Number increment used for multiples of the same widget.
	 * }
	 */
	public function display_callback( $args, $widget_args = 1 ) {
		if ( is_numeric( $widget_args ) ) {
			$widget_args = array( 'number' => $widget_args );
		}

		$widget_args = wp_parse_args( $widget_args, array( 'number' => -1 ) );
		$this->_set( $widget_args['number'] );
		$instances = $this->get_settings();

		if ( isset( $instances[ $this->number ] ) ) {
			$instance = $instances[ $this->number ];

			/**
			 * Filters the settings for a particular widget instance.
			 *
			 * Returning false will effectively short-circuit display of the widget.
			 *
			 * @since 2.8.0
			 *
			 * @param array     $instance The current widget instance's settings.
			 * @param WP_Widget $widget   The current widget instance.
			 * @param array     $args     An array of default widget arguments.
			 */
			$instance = apply_filters( 'widget_display_callback', $instance, $this, $args );

			if ( false === $instance ) {
				return;
			}

			$was_cache_addition_suspended = wp_suspend_cache_addition();
			if ( $this->is_preview() && ! $was_cache_addition_suspended ) {
				wp_suspend_cache_addition( true );
			}

			$this->widget( $args, $instance );

			if ( $this->is_preview() ) {
				wp_suspend_cache_addition( $was_cache_addition_suspended );
			}
		}
	}

	/**
	 * Handles changed settings (Do NOT override).
	 *
	 * @since 2.8.0
	 *
	 * @global array $wp_registered_widgets
	 *
	 * @param int $deprecated Not used.
	 */
	public function update_callback( $deprecated = 1 ) {
		global $wp_registered_widgets;

		$all_instances = $this->get_settings();

		// We need to update the data.
		if ( $this->updated ) {
			return;
		}

		if ( isset( $_POST['delete_widget'] ) && $_POST['delete_widget'] ) {
			// Delete the settings for this instance of the widget.
			if ( isset( $_POST['the-widget-id'] ) ) {
				$del_id = $_POST['the-widget-id'];
			} else {
				return;
			}

			if ( isset( $wp_registered_widgets[ $del_id ]['params'][0]['number'] ) ) {
				$number = $wp_registered_widgets[ $del_id ]['params'][0]['number'];

				if ( $this->id_base . '-' . $number === $del_id ) {
					unset( $all_instances[ $number ] );
				}
			}
		} else {
			if ( isset( $_POST[ 'widget-' . $this->id_base ] ) && is_array( $_POST[ 'widget-' . $this->id_base ] ) ) {
				$settings = $_POST[ 'widget-' . $this->id_base ];
			} elseif ( isset( $_POST['id_base'] ) && $_POST['id_base'] === $this->id_base ) {
				$num      = $_POST['multi_number'] ? (int) $_POST['multi_number'] : (int) $_POST['widget_number'];
				$settings = array( $num => array() );
			} else {
				return;
			}

			foreach ( $settings as $number => $new_instance ) {
				$new_instance = stripslashes_deep( $new_instance );
				$this->_set( $number );

				$old_instance = isset( $all_instances[ $number ] ) ? $all_instances[ $number ] : array();

				$was_cache_addition_suspended = wp_suspend_cache_addition();
				if ( $this->is_preview() && ! $was_cache_addition_suspended ) {
					wp_suspend_cache_addition( true );
				}

				$instance = $this->update( $new_instance, $old_instance );

				if ( $this->is_preview() ) {
					wp_suspend_cache_addition( $was_cache_addition_suspended );
				}

				/**
				 * Filters a widget's settings before saving.
				 *
				 * Returning false will effectively short-circuit the widget's ability
				 * to update settings.
				 *
				 * @since 2.8.0
				 *
				 * @param array     $instance     The current widget instance's settings.
				 * @param array     $new_instance Array of new widget settings.
				 * @param array     $old_instance Array of old widget settings.
				 * @param WP_Widget $widget       The current widget instance.
				 */
				$instance = apply_filters( 'widget_update_callback', $instance, $new_instance, $old_instance, $this );

				if ( false !== $instance ) {
					$all_instances[ $number ] = $instance;
				}

				break; // Run only once.
			}
		}

		$this->save_settings( $all_instances );
		$this->updated = true;
	}

	/**
	 * Generates the widget control form (Do NOT override).
	 *
	 * @since 2.8.0
	 *
	 * @param int|array $widget_args {
	 *     Optional. Internal order number of the widget instance, or array of multi-widget arguments.
	 *     Default 1.
	 *
	 *     @type int $number Number increment used for multiples of the same widget.
	 * }
	 * @return string|null
	 */
	public function form_callback( $widget_args = 1 ) {
		if ( is_numeric( $widget_args ) ) {
			$widget_args = array( 'number' => $widget_args );
		}

		$widget_args   = wp_parse_args( $widget_args, array( 'number' => -1 ) );
		$all_instances = $this->get_settings();

		if ( -1 === $widget_args['number'] ) {
			// We echo out a form where 'number' can be set later.
			$this->_set( '__i__' );
			$instance = array();
		} else {
			$this->_set( $widget_args['number'] );
			$instance = $all_instances[ $widget_args['number'] ];
		}

		/**
		 * Filters the widget instance's settings before displaying the control form.
		 *
		 * Returning false effectively short-circuits display of the control form.
		 *
		 * @since 2.8.0
		 *
		 * @param array     $instance The current widget instance's settings.
		 * @param WP_Widget $widget   The current widget instance.
		 */
		$instance = apply_filters( 'widget_form_callback', $instance, $this );

		$return = null;

		if ( false !== $instance ) {
			$return = $this->form( $instance );

			/**
			 * Fires at the end of the widget control form.
			 *
			 * Use this hook to add extra fields to the widget form. The hook
			 * is only fired if the value passed to the 'widget_form_callback'
			 * hook is not false.
			 *
			 * Note: If the widget has no form, the text echoed from the default
			 * form method can be hidden using CSS.
			 *
			 * @since 2.8.0
			 *
			 * @param WP_Widget $widget   The widget instance (passed by reference).
			 * @param null      $return   Return null if new fields are added.
			 * @param array     $instance An array of the widget's settings.
			 */
			do_action_ref_array( 'in_widget_form', array( &$this, &$return, $instance ) );
		}

		return $return;
	}

	/**
	 * Registers an instance of the widget class.
	 *
	 * @since 2.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 ) {
		wp_register_sidebar_widget(
			$this->id,
			$this->name,
			$this->_get_display_callback(),
			$this->widget_options,
			array( 'number' => $number )
		);

		_register_widget_update_callback(
			$this->id_base,
			$this->_get_update_callback(),
			$this->control_options,
			array( 'number' => -1 )
		);

		_register_widget_form_callback(
			$this->id,
			$this->name,
			$this->_get_form_callback(),
			$this->control_options,
			array( 'number' => $number )
		);
	}

	/**
	 * Saves the settings for all instances of the widget class.
	 *
	 * @since 2.8.0
	 *
	 * @param array $settings Multi-dimensional array of widget instance settings.
	 */
	public function save_settings( $settings ) {
		$settings['_multiwidget'] = 1;
		update_option( $this->option_name, $settings );
	}

	/**
	 * Retrieves the settings for all instances of the widget class.
	 *
	 * @since 2.8.0
	 *
	 * @return array Multi-dimensional array of widget instance settings.
	 */
	public function get_settings() {

		$settings = get_option( $this->option_name );

		if ( false === $settings ) {
			$settings = array();
			if ( isset( $this->alt_option_name ) ) {
				// Get settings from alternative (legacy) option.
				$settings = get_option( $this->alt_option_name, array() );

				// Delete the alternative (legacy) option as the new option will be created using `$this->option_name`.
				delete_option( $this->alt_option_name );
			}
			// Save an option so it can be autoloaded next time.
			$this->save_settings( $settings );
		}

		if ( ! is_array( $settings ) && ! ( $settings instanceof ArrayObject || $settings instanceof ArrayIterator ) ) {
			$settings = array();
		}

		if ( ! empty( $settings ) && ! isset( $settings['_multiwidget'] ) ) {
			// Old format, convert if single widget.
			$settings = wp_convert_widget_settings( $this->id_base, $this->option_name, $settings );
		}

		unset( $settings['_multiwidget'], $settings['__i__'] );

		return $settings;
	}
}

Directory Contents

Dirs: 29 × Files: 149
Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
assets DIR
- drwxr-xr-x 2026-01-13 05:10:58
Edit Download
- drwxr-xr-x 2026-01-13 16:50:50
Edit Download
- drwxr-xr-x 2026-01-08 23:33:37
Edit Download
- drwxr-xr-x 2026-01-08 23:34:33
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-30 00:47:11
Edit Download
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
css DIR
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
customize DIR
- drwxr-xr-x 2026-01-13 11:42:45
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-13 05:04:45
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-14 23:22:58
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-07 00:14:27
Edit Download
images DIR
- drwxr-xr-x 2026-01-13 05:26:49
Edit Download
- drwxr-xr-x 2026-01-14 23:23:24
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-14 23:19:44
Edit Download
js DIR
- drwxr-xr-x 2026-01-07 21:52:17
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-14 23:23:59
Edit Download
- drwxr-xr-x 2026-01-13 05:07:20
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-07 00:17:33
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-14 23:24:20
Edit Download
Requests DIR
- drwxr-xr-x 2024-03-25 09:23:08
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-14 23:24:29
Edit Download
SimplePie DIR
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
sitemaps DIR
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
- drwxr-xr-x 2026-01-13 20:28:36
Edit Download
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
Text DIR
- drwxr-xr-x 2026-01-13 05:04:56
Edit Download
- drwxr-xr-x 2026-01-08 23:35:37
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-14 23:25:34
Edit Download
7.80 KB lrw-r--r-- 2025-11-17 07:58:28
Edit Download
18.94 KB lrw-r--r-- 2025-10-24 01:04:26
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 05:52:24
Edit Download
12.90 KB lrw-r--r-- 2024-11-29 19:46:22
Edit Download
61.02 KB lrw-r--r-- 2025-11-07 09:42:34
Edit Download
112.05 KB lrw-r--r-- 2025-10-21 08:32:36
Edit Download
42.63 KB lrw-r--r-- 2025-10-19 14:42:28
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.46 KB lrw-r--r-- 2024-07-17 21:52:18
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 10:53:28
Edit Download
8.28 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
2.92 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 11:47:34
Edit Download
11.62 KB lrw-r--r-- 2025-03-05 19:17:24
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
1.97 KB lrw-r--r-- 2024-09-19 22:55:36
Edit Download
11.25 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
5.32 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
10.60 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
67.84 KB lrw-r--r-- 2025-11-24 21:54:36
Edit Download
6.34 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
5.49 KB lrw-r--r-- 2025-03-04 10:06:28
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
7.02 KB lrw-r--r-- 2025-10-30 13:03:32
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 13:29:36
Edit Download
16.86 KB lrw-r--r-- 2024-05-01 21:01:10
Edit Download
24.23 KB lrw-r--r-- 2025-10-20 06:20:28
Edit Download
3.97 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
47.66 KB lrw-r--r-- 2025-10-31 15:57:30
Edit Download
9.22 KB lrw-r--r-- 2025-02-11 10:40:30
Edit Download
25.51 KB lrw-r--r-- 2025-09-06 23:47:36
Edit Download
198.38 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
56.65 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
70.91 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
35.30 KB lrw-r--r-- 2025-11-10 17:28:32
Edit Download
15.02 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
2.57 KB lrw-r--r-- 2025-10-14 02:47:32
Edit Download
39.83 KB lrw-r--r-- 2024-06-14 09:18:12
Edit Download
70.64 KB lrw-r--r-- 2025-04-24 19:22:30
Edit Download
15.56 KB lrw-r--r-- 2025-04-10 10:47:26
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 13:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-30 20:03:30
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.28 KB lrw-r--r-- 2025-11-03 20:47:34
Edit Download
7.22 KB lrw-r--r-- 2023-06-24 14:17:24
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 18:32:18
Edit Download
4.30 KB lrw-r--r-- 2023-10-11 04:05:26
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
40.60 KB lrw-r--r-- 2025-08-20 09:55:28
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-26 18:05:30
Edit Download
17.01 KB lrw-r--r-- 2025-04-28 13:37:28
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 19:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 14:16:30
Edit Download
16.49 KB lrw-r--r-- 2025-02-25 19:40:22
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 22:25:14
Edit Download
29.82 KB lrw-r--r-- 2025-04-20 20:51:30
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 12:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
19.42 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-04 19:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 02:05:12
Edit Download
30.93 KB lrw-r--r-- 2025-06-24 20:40:34
Edit Download
4.99 KB lrw-r--r-- 2024-09-03 15:19:14
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 10:23:28
Edit Download
24.72 KB lrw-r--r-- 2025-10-21 01:33:30
Edit Download
29.96 KB lrw-r--r-- 2025-02-09 08:09:22
Edit Download
6.34 KB lrw-r--r-- 2025-08-20 12:01:32
Edit Download
159.91 KB lrw-r--r-- 2025-10-22 03:30:30
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
4.77 KB lrw-r--r-- 2025-02-17 08:24:22
Edit Download
3.38 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 08:11:22
Edit Download
62.19 KB lrw-r--r-- 2025-07-15 05:22:38
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.17 KB lrw-r--r-- 2025-06-29 18:47:30
Edit Download
31.13 KB lrw-r--r-- 2025-10-27 13:12:36
Edit Download
33.38 KB lrw-r--r-- 2025-11-18 07:12:30
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 08:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-16 19:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
30.91 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
7.29 KB lrw-r--r-- 2025-06-27 12:09:32
Edit Download
7.35 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
11.86 KB lrw-r--r-- 2025-10-28 18:37:34
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 18:42:28
Edit Download
39.99 KB lrw-r--r-- 2025-10-22 13:30:32
Edit Download
5.17 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
979 B lrw-r--r-- 2024-02-14 16:27:10
Edit Download
18.44 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.24 KB lrw-r--r-- 2024-11-19 23:50:24
Edit Download
34.90 KB lrw-r--r-- 2024-11-03 23:34:16
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
160.50 KB lrw-r--r-- 2025-11-10 03:43:38
Edit Download
64.27 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
2.94 KB lrw-r--r-- 2025-07-06 08:57:36
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
18.00 KB lrw-r--r-- 2024-11-02 12:01:20
Edit Download
210.40 KB lrw-r--r-- 2025-08-21 12:00:40
Edit Download
25.86 KB lrw-r--r-- 2025-11-01 01:46:32
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
11.10 KB lrw-r--r-- 2024-09-30 20:58:16
Edit Download
37.02 KB lrw-r--r-- 2025-11-10 19:51:36
Edit Download
4.02 KB lrw-r--r-- 2023-05-02 12:45:22
Edit Download
31.84 KB lrw-r--r-- 2026-01-30 20:29:56
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 21:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
9.56 KB lrw-r--r-- 2025-10-09 19:05:40
Edit Download
281.84 KB lrw-r--r-- 2025-11-06 20:37:32
Edit Download
14.95 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
8.44 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 10:43:24
Edit Download
81.72 KB lrw-r--r-- 2025-10-22 18:02:36
Edit Download
25.24 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 14:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 13:35:36
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 10:42:30
Edit Download
6.94 KB lrw-r--r-- 2024-05-27 13:29:16
Edit Download
200 B lrw-r--r-- 2020-11-12 08:17:08
Edit Download
255 B lrw-r--r-- 2020-11-16 19:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
9.68 KB lrw-r--r-- 2025-10-21 08:32:36
Edit Download
23.49 KB lrw-r--r-- 2025-11-04 16:51:36
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
2.84 KB lrw-r--r-- 2025-08-27 07:34:28
Edit Download
6.09 KB lrw-r--r-- 2025-11-07 09:42:34
Edit Download
6.41 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
69.46 KB lrw-r--r-- 2025-09-12 15:05:36
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 16:48:26
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).