PHP 7.4.33
Preview: class-wp-customize-section.php Size: 11.11 KB
/var/www/letsgokerala.wpress.dk/httpdocs/wp-includes/class-wp-customize-section.php
<?php
/**
 * WordPress Customize Section classes
 *
 * @package WordPress
 * @subpackage Customize
 * @since 3.4.0
 */

/**
 * Customize Section class.
 *
 * A UI container for controls, managed by the WP_Customize_Manager class.
 *
 * @since 3.4.0
 *
 * @see WP_Customize_Manager
 */
class WP_Customize_Section {

	/**
	 * Incremented with each new class instantiation, then stored in $instance_number.
	 *
	 * Used when sorting two instances whose priorities are equal.
	 *
	 * @since 4.1.0
	 * @var int
	 */
	protected static $instance_count = 0;

	/**
	 * Order in which this instance was created in relation to other instances.
	 *
	 * @since 4.1.0
	 * @var int
	 */
	public $instance_number;

	/**
	 * WP_Customize_Manager instance.
	 *
	 * @since 3.4.0
	 * @var WP_Customize_Manager
	 */
	public $manager;

	/**
	 * Unique identifier.
	 *
	 * @since 3.4.0
	 * @var string
	 */
	public $id;

	/**
	 * Priority of the section which informs load order of sections.
	 *
	 * @since 3.4.0
	 * @var integer
	 */
	public $priority = 160;

	/**
	 * Panel in which to show the section, making it a sub-section.
	 *
	 * @since 4.0.0
	 * @var string
	 */
	public $panel = '';

	/**
	 * Capability required for the section.
	 *
	 * @since 3.4.0
	 * @var string
	 */
	public $capability = 'edit_theme_options';

	/**
	 * Theme features required to support the section.
	 *
	 * @since 3.4.0
	 * @var string|string[]
	 */
	public $theme_supports = '';

	/**
	 * Title of the section to show in UI.
	 *
	 * @since 3.4.0
	 * @var string
	 */
	public $title = '';

	/**
	 * Description to show in the UI.
	 *
	 * @since 3.4.0
	 * @var string
	 */
	public $description = '';

	/**
	 * Customizer controls for this section.
	 *
	 * @since 3.4.0
	 * @var array
	 */
	public $controls;

	/**
	 * Type of this section.
	 *
	 * @since 4.1.0
	 * @var string
	 */
	public $type = 'default';

	/**
	 * Active callback.
	 *
	 * @since 4.1.0
	 *
	 * @see WP_Customize_Section::active()
	 *
	 * @var callable Callback is called with one argument, the instance of
	 *               WP_Customize_Section, and returns bool to indicate whether
	 *               the section is active (such as it relates to the URL currently
	 *               being previewed).
	 */
	public $active_callback = '';

	/**
	 * Show the description or hide it behind the help icon.
	 *
	 * @since 4.7.0
	 *
	 * @var bool Indicates whether the Section's description should be
	 *           hidden behind a help icon ("?") in the Section header,
	 *           similar to how help icons are displayed on Panels.
	 */
	public $description_hidden = false;

	/**
	 * Constructor.
	 *
	 * Any supplied $args override class property defaults.
	 *
	 * @since 3.4.0
	 *
	 * @param WP_Customize_Manager $manager Customizer bootstrap instance.
	 * @param string               $id      A specific ID of the section.
	 * @param array                $args    {
	 *     Optional. Array of properties for the new Section object. Default empty array.
	 *
	 *     @type int             $priority           Priority of the section, defining the display order
	 *                                               of panels and sections. Default 160.
	 *     @type string          $panel              The panel this section belongs to (if any).
	 *                                               Default empty.
	 *     @type string          $capability         Capability required for the section.
	 *                                               Default 'edit_theme_options'
	 *     @type string|string[] $theme_supports     Theme features required to support the section.
	 *     @type string          $title              Title of the section to show in UI.
	 *     @type string          $description        Description to show in the UI.
	 *     @type string          $type               Type of the section.
	 *     @type callable        $active_callback    Active callback.
	 *     @type bool            $description_hidden Hide the description behind a help icon,
	 *                                               instead of inline above the first control.
	 *                                               Default false.
	 * }
	 */
	public function __construct( $manager, $id, $args = array() ) {
		$keys = array_keys( get_object_vars( $this ) );
		foreach ( $keys as $key ) {
			if ( isset( $args[ $key ] ) ) {
				$this->$key = $args[ $key ];
			}
		}

		$this->manager = $manager;
		$this->id      = $id;
		if ( empty( $this->active_callback ) ) {
			$this->active_callback = array( $this, 'active_callback' );
		}
		self::$instance_count += 1;
		$this->instance_number = self::$instance_count;

		$this->controls = array(); // Users cannot customize the $controls array.
	}

	/**
	 * Check whether section is active to current Customizer preview.
	 *
	 * @since 4.1.0
	 *
	 * @return bool Whether the section is active to the current preview.
	 */
	final public function active() {
		$section = $this;
		$active  = call_user_func( $this->active_callback, $this );

		/**
		 * Filters response of WP_Customize_Section::active().
		 *
		 * @since 4.1.0
		 *
		 * @param bool                 $active  Whether the Customizer section is active.
		 * @param WP_Customize_Section $section WP_Customize_Section instance.
		 */
		$active = apply_filters( 'customize_section_active', $active, $section );

		return $active;
	}

	/**
	 * Default callback used when invoking WP_Customize_Section::active().
	 *
	 * Subclasses can override this with their specific logic, or they may provide
	 * an 'active_callback' argument to the constructor.
	 *
	 * @since 4.1.0
	 *
	 * @return true Always true.
	 */
	public function active_callback() {
		return true;
	}

	/**
	 * Gather the parameters passed to client JavaScript via JSON.
	 *
	 * @since 4.1.0
	 *
	 * @return array The array to be exported to the client as JSON.
	 */
	public function json() {
		$array                   = wp_array_slice_assoc( (array) $this, array( 'id', 'description', 'priority', 'panel', 'type', 'description_hidden' ) );
		$array['title']          = html_entity_decode( $this->title, ENT_QUOTES, get_bloginfo( 'charset' ) );
		$array['content']        = $this->get_content();
		$array['active']         = $this->active();
		$array['instanceNumber'] = $this->instance_number;

		if ( $this->panel ) {
			/* translators: &#9656; is the unicode right-pointing triangle. %s: Section title in the Customizer. */
			$array['customizeAction'] = sprintf( __( 'Customizing &#9656; %s' ), esc_html( $this->manager->get_panel( $this->panel )->title ) );
		} else {
			$array['customizeAction'] = __( 'Customizing' );
		}

		return $array;
	}

	/**
	 * Checks required user capabilities and whether the theme has the
	 * feature support required by the section.
	 *
	 * @since 3.4.0
	 *
	 * @return bool False if theme doesn't support the section or user doesn't have the capability.
	 */
	final public function check_capabilities() {
		if ( $this->capability && ! current_user_can( $this->capability ) ) {
			return false;
		}

		if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
			return false;
		}

		return true;
	}

	/**
	 * Get the section's content for insertion into the Customizer pane.
	 *
	 * @since 4.1.0
	 *
	 * @return string Contents of the section.
	 */
	final public function get_content() {
		ob_start();
		$this->maybe_render();
		return trim( ob_get_clean() );
	}

	/**
	 * Check capabilities and render the section.
	 *
	 * @since 3.4.0
	 */
	final public function maybe_render() {
		if ( ! $this->check_capabilities() ) {
			return;
		}

		/**
		 * Fires before rendering a Customizer section.
		 *
		 * @since 3.4.0
		 *
		 * @param WP_Customize_Section $this WP_Customize_Section instance.
		 */
		do_action( 'customize_render_section', $this );
		/**
		 * Fires before rendering a specific Customizer section.
		 *
		 * The dynamic portion of the hook name, `$this->id`, refers to the ID
		 * of the specific Customizer section to be rendered.
		 *
		 * @since 3.4.0
		 */
		do_action( "customize_render_section_{$this->id}" );

		$this->render();
	}

	/**
	 * Render the section UI in a subclass.
	 *
	 * Sections are now rendered in JS by default, see WP_Customize_Section::print_template().
	 *
	 * @since 3.4.0
	 */
	protected function render() {}

	/**
	 * Render the section's JS template.
	 *
	 * This function is only run for section types that have been registered with
	 * WP_Customize_Manager::register_section_type().
	 *
	 * @since 4.3.0
	 *
	 * @see WP_Customize_Manager::render_template()
	 */
	public function print_template() {
		?>
		<script type="text/html" id="tmpl-customize-section-<?php echo $this->type; ?>">
			<?php $this->render_template(); ?>
		</script>
		<?php
	}

	/**
	 * An Underscore (JS) template for rendering this section.
	 *
	 * Class variables for this section class are available in the `data` JS object;
	 * export custom variables by overriding WP_Customize_Section::json().
	 *
	 * @since 4.3.0
	 *
	 * @see WP_Customize_Section::print_template()
	 */
	protected function render_template() {
		?>
		<li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }}">
			<h3 class="accordion-section-title" tabindex="0">
				{{ data.title }}
				<span class="screen-reader-text"><?php _e( 'Press return or enter to open this section' ); ?></span>
			</h3>
			<ul class="accordion-section-content">
				<li class="customize-section-description-container section-meta <# if ( data.description_hidden ) { #>customize-info<# } #>">
					<div class="customize-section-title">
						<button class="customize-section-back" tabindex="-1">
							<span class="screen-reader-text"><?php _e( 'Back' ); ?></span>
						</button>
						<h3>
							<span class="customize-action">
								{{{ data.customizeAction }}}
							</span>
							{{ data.title }}
						</h3>
						<# if ( data.description && data.description_hidden ) { #>
							<button type="button" class="customize-help-toggle dashicons dashicons-editor-help" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Help' ); ?></span></button>
							<div class="description customize-section-description">
								{{{ data.description }}}
							</div>
						<# } #>

						<div class="customize-control-notifications-container"></div>
					</div>

					<# if ( data.description && ! data.description_hidden ) { #>
						<div class="description customize-section-description">
							{{{ data.description }}}
						</div>
					<# } #>
				</li>
			</ul>
		</li>
		<?php
	}
}

/** WP_Customize_Themes_Section class */
require_once ABSPATH . WPINC . '/customize/class-wp-customize-themes-section.php';

/** WP_Customize_Sidebar_Section class */
require_once ABSPATH . WPINC . '/customize/class-wp-customize-sidebar-section.php';

/** WP_Customize_Nav_Menu_Section class */
require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-section.php';

Directory Contents

Dirs: 23 × Files: 201
Name Size Perms Modified Actions
assets DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
blocks DIR
- drwxr-xr-x 2026-03-04 09:40:31
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
css DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
customize DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
fonts DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
ID3 DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
images DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
IXR DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
js DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
pomo DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
Requests DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
rest-api DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
SimplePie DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
sitemaps DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
Text DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
widgets DIR
- drwxr-xr-x 2026-03-04 06:12:22
Edit Download
420 B lrw-r--r-- 2026-03-04 06:12:22
Edit Download
32.20 KB lrw-r--r-- 2021-03-18 05:05:57
Edit Download
12.06 KB lrw-r--r-- 2021-03-18 05:05:06
Edit Download
17.18 KB lrw-r--r-- 2021-03-18 05:05:16
Edit Download
1.46 KB lrw-r--r-- 2021-03-18 05:05:43
Edit Download
28.83 KB lrw-r--r-- 2021-03-18 05:04:50
Edit Download
12.74 KB lrw-r--r-- 2021-03-18 05:04:58
Edit Download
15.23 KB lrw-r--r-- 2021-03-18 05:04:53
Edit Download
1.06 KB lrw-r--r-- 2021-03-18 05:04:48
Edit Download
9.58 KB lrw-r--r-- 2021-03-18 05:05:08
Edit Download
33.30 KB lrw-r--r-- 2021-03-18 05:04:57
Edit Download
36.02 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
55.76 KB lrw-r--r-- 2021-03-18 05:05:18
Edit Download
12.80 KB lrw-r--r-- 2021-03-18 05:05:03
Edit Download
548 B lrw-r--r-- 2021-03-18 05:05:58
Edit Download
39.85 KB lrw-r--r-- 2021-03-18 05:06:03
Edit Download
2.54 KB lrw-r--r-- 2021-03-18 05:05:10
Edit Download
43.44 KB lrw-r--r-- 2021-03-18 05:05:49
Edit Download
422 B lrw-r--r-- 2021-03-18 05:05:15
Edit Download
7.42 KB lrw-r--r-- 2021-03-18 05:05:13
Edit Download
683 B lrw-r--r-- 2021-03-18 05:05:31
Edit Download
20.99 KB lrw-r--r-- 2021-03-18 05:06:02
Edit Download
30.10 KB lrw-r--r-- 2021-03-18 05:05:00
Edit Download
97.22 KB lrw-r--r-- 2021-03-18 05:05:03
Edit Download
472 B lrw-r--r-- 2021-03-18 05:05:34
Edit Download
38.06 KB lrw-r--r-- 2021-03-18 05:05:05
Edit Download
2.16 KB lrw-r--r-- 2021-03-18 05:05:02
Edit Download
7.97 KB lrw-r--r-- 2021-03-18 05:05:41
Edit Download
13.88 KB lrw-r--r-- 2021-03-18 05:05:51
Edit Download
8.71 KB lrw-r--r-- 2021-03-18 05:06:01
Edit Download
2.33 KB lrw-r--r-- 2021-03-18 05:05:09
Edit Download
7.11 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
17.21 KB lrw-r--r-- 2021-03-18 05:05:07
Edit Download
5.28 KB lrw-r--r-- 2021-03-18 05:05:17
Edit Download
10.75 KB lrw-r--r-- 2021-03-18 05:05:27
Edit Download
4.57 KB lrw-r--r-- 2021-03-18 05:05:22
Edit Download
15.40 KB lrw-r--r-- 2021-03-18 05:04:44
Edit Download
4.26 KB lrw-r--r-- 2021-03-18 05:04:48
Edit Download
4.56 KB lrw-r--r-- 2021-03-18 05:04:57
Edit Download
4.77 KB lrw-r--r-- 2021-03-18 05:04:45
Edit Download
5.36 KB lrw-r--r-- 2021-03-18 05:05:34
Edit Download
4.74 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
8.75 KB lrw-r--r-- 2021-03-18 05:05:27
Edit Download
6.86 KB lrw-r--r-- 2021-03-18 05:04:51
Edit Download
45.59 KB lrw-r--r-- 2021-03-18 05:05:22
Edit Download
9.47 KB lrw-r--r-- 2021-03-18 05:05:37
Edit Download
25.71 KB lrw-r--r-- 2021-03-18 05:05:35
Edit Download
202.44 KB lrw-r--r-- 2021-03-18 05:04:45
Edit Download
56.99 KB lrw-r--r-- 2021-03-18 05:05:28
Edit Download
10.54 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
11.11 KB lrw-r--r-- 2021-03-18 05:05:32
Edit Download
30.03 KB lrw-r--r-- 2021-03-18 05:05:21
Edit Download
67.47 KB lrw-r--r-- 2021-03-18 05:05:31
Edit Download
35.04 KB lrw-r--r-- 2021-03-18 05:05:32
Edit Download
2.58 KB lrw-r--r-- 2021-03-18 05:05:43
Edit Download
70.75 KB lrw-r--r-- 2021-03-18 05:05:06
Edit Download
15.94 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
7.44 KB lrw-r--r-- 2021-03-18 05:05:21
Edit Download
7.59 KB lrw-r--r-- 2021-03-18 05:05:53
Edit Download
2.63 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
1010 B lrw-r--r-- 2021-03-18 05:05:59
Edit Download
15.26 KB lrw-r--r-- 2021-03-18 05:05:53
Edit Download
7.27 KB lrw-r--r-- 2021-03-18 05:05:22
Edit Download
12.45 KB lrw-r--r-- 2021-03-18 05:05:38
Edit Download
6.73 KB lrw-r--r-- 2021-03-18 05:05:36
Edit Download
3.52 KB lrw-r--r-- 2021-03-18 05:05:35
Edit Download
5.94 KB lrw-r--r-- 2021-03-18 05:05:35
Edit Download
2.01 KB lrw-r--r-- 2021-03-18 05:05:59
Edit Download
4.43 KB lrw-r--r-- 2021-03-18 05:05:44
Edit Download
3.03 KB lrw-r--r-- 2021-03-18 05:05:38
Edit Download
16.20 KB lrw-r--r-- 2021-03-18 05:06:00
Edit Download
14.80 KB lrw-r--r-- 2021-03-18 05:05:28
Edit Download
26.76 KB lrw-r--r-- 2021-03-18 05:05:49
Edit Download
14.39 KB lrw-r--r-- 2021-03-18 05:06:01
Edit Download
6.73 KB lrw-r--r-- 2021-03-18 05:04:55
Edit Download
5.14 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
14.01 KB lrw-r--r-- 2021-03-18 05:05:04
Edit Download
1.84 KB lrw-r--r-- 2021-03-18 05:04:54
Edit Download
28.01 KB lrw-r--r-- 2021-03-18 05:04:42
Edit Download
5.39 KB lrw-r--r-- 2021-03-18 05:05:36
Edit Download
19.30 KB lrw-r--r-- 2021-03-18 05:04:52
Edit Download
12.55 KB lrw-r--r-- 2021-03-18 05:05:54
Edit Download
13.72 KB lrw-r--r-- 2021-03-18 05:06:01
Edit Download
6.87 KB lrw-r--r-- 2021-03-18 05:05:40
Edit Download
30.36 KB lrw-r--r-- 2021-03-18 05:05:36
Edit Download
5.02 KB lrw-r--r-- 2021-03-18 05:05:41
Edit Download
21.09 KB lrw-r--r-- 2021-03-18 05:05:26
Edit Download
6.65 KB lrw-r--r-- 2021-03-18 05:05:01
Edit Download
136.01 KB lrw-r--r-- 2021-03-18 05:05:47
Edit Download
6.54 KB lrw-r--r-- 2021-03-18 05:05:37
Edit Download
10.76 KB lrw-r--r-- 2021-03-18 05:05:46
Edit Download
4.35 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
3.45 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
11.57 KB lrw-r--r-- 2021-03-18 05:04:53
Edit Download
63.32 KB lrw-r--r-- 2021-03-18 05:05:17
Edit Download
2.54 KB lrw-r--r-- 2021-03-18 05:05:56
Edit Download
8.60 KB lrw-r--r-- 2021-03-18 05:04:56
Edit Download
7.54 KB lrw-r--r-- 2021-03-18 05:04:47
Edit Download
3.28 KB lrw-r--r-- 2021-03-18 05:05:09
Edit Download
1.79 KB lrw-r--r-- 2021-03-18 05:05:20
Edit Download
29.44 KB lrw-r--r-- 2021-03-18 05:05:57
Edit Download
7.60 KB lrw-r--r-- 2021-03-18 05:05:33
Edit Download
19.45 KB lrw-r--r-- 2021-03-18 05:05:04
Edit Download
13.57 KB lrw-r--r-- 2021-03-18 05:05:20
Edit Download
37.44 KB lrw-r--r-- 2021-03-18 05:04:54
Edit Download
5.39 KB lrw-r--r-- 2021-03-18 05:05:56
Edit Download
749 B lrw-r--r-- 2021-03-18 05:04:56
Edit Download
16.94 KB lrw-r--r-- 2021-03-18 05:05:51
Edit Download
51.20 KB lrw-r--r-- 2021-03-18 05:05:21
Edit Download
3.05 KB lrw-r--r-- 2021-03-18 05:05:52
Edit Download
31.47 KB lrw-r--r-- 2021-03-18 05:05:03
Edit Download
2.26 KB lrw-r--r-- 2021-03-18 05:04:43
Edit Download
22.48 KB lrw-r--r-- 2021-03-18 05:05:15
Edit Download
12.86 KB lrw-r--r-- 2021-03-18 05:06:03
Edit Download
2.66 KB lrw-r--r-- 2021-03-18 05:05:19
Edit Download
18.06 KB lrw-r--r-- 2021-03-18 05:05:07
Edit Download
213.79 KB lrw-r--r-- 2021-03-18 05:05:16
Edit Download
25.70 KB lrw-r--r-- 2026-03-04 05:56:21
Edit Download
13.01 KB lrw-r--r-- 2021-03-18 05:05:59
Edit Download
19.19 KB lrw-r--r-- 2021-03-18 05:05:54
Edit Download
11.07 KB lrw-r--r-- 2021-03-18 05:05:29
Edit Download
95.21 KB lrw-r--r-- 2021-03-18 05:05:38
Edit Download
128.23 KB lrw-r--r-- 2025-05-08 08:33:13
Edit Download
11.82 KB lrw-r--r-- 2021-03-18 05:04:53
Edit Download
40.90 KB lrw-r--r-- 2021-03-18 05:04:47
Edit Download
420 B lrw-r--r-- 2021-03-18 05:05:25
Edit Download
10.42 KB lrw-r--r-- 2021-03-18 05:05:14
Edit Download
28.28 KB lrw-r--r-- 2021-03-18 05:05:00
Edit Download
2.14 KB lrw-r--r-- 2021-03-18 05:04:44
Edit Download
125.26 KB lrw-r--r-- 2021-03-18 05:04:46
Edit Download
354 B lrw-r--r-- 2021-03-18 05:04:49
Edit Download
48.18 KB lrw-r--r-- 2021-03-18 05:05:46
Edit Download
4.17 KB lrw-r--r-- 2021-03-18 05:06:03
Edit Download
5.46 KB lrw-r--r-- 2021-03-18 05:05:40
Edit Download
3.13 KB lrw-r--r-- 2021-03-18 05:05:01
Edit Download
2.70 KB lrw-r--r-- 2021-03-18 05:05:08
Edit Download
1.21 KB lrw-r--r-- 2021-03-18 05:05:52
Edit Download
4.09 KB lrw-r--r-- 2021-03-18 05:05:33
Edit Download
3.84 KB lrw-r--r-- 2021-03-18 05:06:02
Edit Download
23.25 KB lrw-r--r-- 2021-03-18 05:04:58
Edit Download
309.02 KB lrw-r--r-- 2021-03-18 05:05:47
Edit Download
13.52 KB lrw-r--r-- 2021-03-18 05:05:08
Edit Download
8.34 KB lrw-r--r-- 2021-03-18 05:05:53
Edit Download
158.04 KB lrw-r--r-- 2021-03-18 05:05:48
Edit Download
22.60 KB lrw-r--r-- 2021-03-18 05:05:13
Edit Download
6.93 KB lrw-r--r-- 2021-03-18 05:04:50
Edit Download
4.76 KB lrw-r--r-- 2021-03-18 05:05:29
Edit Download
64.27 KB lrw-r--r-- 2021-03-18 05:05:23
Edit Download
57.08 KB lrw-r--r-- 2021-03-18 05:05:39
Edit Download
147.90 KB lrw-r--r-- 2021-03-18 05:05:10
Edit Download
49.83 KB lrw-r--r-- 2021-03-18 05:05:44
Edit Download
173 B lrw-r--r-- 2021-03-18 05:05:55
Edit Download
60.46 KB lrw-r--r-- 2021-03-18 05:05:11
Edit Download
173.10 KB lrw-r--r-- 2021-03-18 05:05:34
Edit Download
59.83 KB lrw-r--r-- 2021-03-18 05:05:31
Edit Download
25.49 KB lrw-r--r-- 2021-03-18 05:05:42
Edit Download
4.76 KB lrw-r--r-- 2021-03-18 05:05:24
Edit Download
6.47 KB lrw-r--r-- 2021-03-18 05:05:41
Edit Download
21.35 KB lrw-r--r-- 2021-03-18 05:05:11
Edit Download
2.67 KB lrw-r--r-- 2021-03-18 05:04:48
Edit Download
94.62 KB lrw-r--r-- 2021-03-18 05:05:51
Edit Download
19.88 KB lrw-r--r-- 2021-03-18 05:05:24
Edit Download
3.71 KB lrw-r--r-- 2021-03-18 05:05:19
Edit Download
4.15 KB lrw-r--r-- 2021-03-18 05:04:43
Edit Download
43.80 KB lrw-r--r-- 2021-03-18 05:04:59
Edit Download
23.37 KB lrw-r--r-- 2021-03-18 05:05:42
Edit Download
42.35 KB lrw-r--r-- 2021-03-18 05:04:51
Edit Download
75.21 KB lrw-r--r-- 2021-03-18 05:05:48
Edit Download
6.32 KB lrw-r--r-- 2021-03-18 05:06:04
Edit Download
103.88 KB lrw-r--r-- 2021-03-18 05:04:50
Edit Download
32.64 KB lrw-r--r-- 2021-03-18 05:05:12
Edit Download
7.17 KB lrw-r--r-- 2021-03-18 05:04:49
Edit Download
65.10 KB lrw-r--r-- 2021-03-18 05:05:58
Edit Download
9.42 KB lrw-r--r-- 2021-03-18 05:05:17
Edit Download
261.97 KB lrw-r--r-- 2021-03-18 05:05:14
Edit Download
36.12 KB lrw-r--r-- 2021-03-18 05:05:30
Edit Download
209 B lrw-r--r-- 2021-03-18 05:06:00
Edit Download
209 B lrw-r--r-- 2021-03-18 05:05:45
Edit Download
93.79 KB lrw-r--r-- 2021-03-18 05:05:23
Edit Download
22.30 KB lrw-r--r-- 2021-03-18 05:05:39
Edit Download
19.39 KB lrw-r--r-- 2021-03-18 05:05:52
Edit Download
5.52 KB lrw-r--r-- 2021-03-18 05:05:24
Edit Download
269 B lrw-r--r-- 2021-03-18 05:05:25
Edit Download
23.36 KB lrw-r--r-- 2021-03-18 05:04:52
Edit Download
98.29 KB lrw-r--r-- 2021-03-18 05:05:30
Edit Download
270 B lrw-r--r-- 2021-03-18 05:05:06
Edit Download
21.60 KB lrw-r--r-- 2021-03-18 05:04:56
Edit Download
3.28 KB lrw-r--r-- 2021-03-18 05:05:18
Edit Download
455 B lrw-r--r-- 2021-03-18 05:05:19
Edit Download
166.74 KB lrw-r--r-- 2021-03-18 05:05:05
Edit Download
4.60 KB lrw-r--r-- 2025-05-08 08:33:13
Edit Download
21.74 KB lrw-r--r-- 2021-03-18 05:05:55
Edit Download
126.12 KB lrw-r--r-- 2021-03-18 05:05:45
Edit Download
26.71 KB lrw-r--r-- 2021-03-18 05:05:44
Edit Download
148.31 KB lrw-r--r-- 2021-03-18 05:05:02
Edit Download
5.84 KB lrw-r--r-- 2021-03-18 05:04:49
Edit Download
808 B lrw-r--r-- 2021-03-18 05:06:01
Edit Download
60.75 KB lrw-r--r-- 2021-03-18 05:05:50
Edit Download
1.06 KB lrw-r--r-- 2021-03-18 05:04:44
Edit Download
107.21 KB lrw-r--r-- 2021-03-18 05:05:40
Edit Download
668 B lrw-r--r-- 2021-03-18 05:05:58
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).