PHP 8.2.29
Preview: class-wp-roles.php Size: 9.17 KB
/home/medyaist/hurdamakara.com/wp-includes/class-wp-roles.php
<?php
/**
 * User API: WP_Roles class
 *
 * @package WordPress
 * @subpackage Users
 * @since 4.4.0
 */

/**
 * Core class used to implement a user roles API.
 *
 * The role option is simple, the structure is organized by role name that store
 * the name in value of the 'name' key. The capabilities are stored as an array
 * in the value of the 'capability' key.
 *
 *     array (
 *          'rolename' => array (
 *              'name' => 'rolename',
 *              'capabilities' => array()
 *          )
 *     )
 *
 * @since 2.0.0
 */
#[AllowDynamicProperties]
class WP_Roles {
	/**
	 * List of roles and capabilities.
	 *
	 * @since 2.0.0
	 * @var array[]
	 */
	public $roles;

	/**
	 * List of the role objects.
	 *
	 * @since 2.0.0
	 * @var WP_Role[]
	 */
	public $role_objects = array();

	/**
	 * List of role names.
	 *
	 * @since 2.0.0
	 * @var string[]
	 */
	public $role_names = array();

	/**
	 * Option name for storing role list.
	 *
	 * @since 2.0.0
	 * @var string
	 */
	public $role_key;

	/**
	 * Whether to use the database for retrieval and storage.
	 *
	 * @since 2.1.0
	 * @var bool
	 */
	public $use_db = true;

	/**
	 * The site ID the roles are initialized for.
	 *
	 * @since 4.9.0
	 * @var int
	 */
	protected $site_id = 0;

	/**
	 * Constructor.
	 *
	 * @since 2.0.0
	 * @since 4.9.0 The `$site_id` argument was added.
	 *
	 * @global array $wp_user_roles Used to set the 'roles' property value.
	 *
	 * @param int $site_id Site ID to initialize roles for. Default is the current site.
	 */
	public function __construct( $site_id = null ) {
		global $wp_user_roles;

		$this->use_db = empty( $wp_user_roles );

		$this->for_site( $site_id );
	}

	/**
	 * Makes private/protected methods readable for backward compatibility.
	 *
	 * @since 4.0.0
	 *
	 * @param string $name      Method to call.
	 * @param array  $arguments Arguments to pass when calling.
	 * @return mixed|false Return value of the callback, false otherwise.
	 */
	public function __call( $name, $arguments ) {
		if ( '_init' === $name ) {
			return $this->_init( ...$arguments );
		}
		return false;
	}

	/**
	 * Sets up the object properties.
	 *
	 * The role key is set to the current prefix for the $wpdb object with
	 * 'user_roles' appended. If the $wp_user_roles global is set, then it will
	 * be used and the role option will not be updated or used.
	 *
	 * @since 2.1.0
	 * @deprecated 4.9.0 Use WP_Roles::for_site()
	 */
	protected function _init() {
		_deprecated_function( __METHOD__, '4.9.0', 'WP_Roles::for_site()' );

		$this->for_site();
	}

	/**
	 * Reinitializes the object.
	 *
	 * Recreates the role objects. This is typically called only by switch_to_blog()
	 * after switching wpdb to a new site ID.
	 *
	 * @since 3.5.0
	 * @deprecated 4.7.0 Use WP_Roles::for_site()
	 */
	public function reinit() {
		_deprecated_function( __METHOD__, '4.7.0', 'WP_Roles::for_site()' );

		$this->for_site();
	}

	/**
	 * Adds a role name with capabilities to the list.
	 *
	 * Updates the list of roles, if the role doesn't already exist.
	 *
	 * The list of capabilities can be passed either as a numerically indexed array of capability names, or an
	 * associative array of boolean values keyed by the capability name. To explicitly deny the role a capability, set
	 * the value for that capability to false.
	 *
	 * Examples:
	 *
	 *     // Add a role that can edit posts.
	 *     wp_roles()->add_role( 'custom_role', 'Custom Role', array(
	 *         'read',
	 *         'edit_posts',
	 *     ) );
	 *
	 * Or, using an associative array:
	 *
	 *     // Add a role that can edit posts but explicitly cannot not delete them.
	 *     wp_roles()->add_role( 'custom_role', 'Custom Role', array(
	 *         'read' => true,
	 *         'edit_posts' => true,
	 *         'delete_posts' => false,
	 *     ) );
	 *
	 * @since 2.0.0
	 * @since x.y.z Support was added for a numerically indexed array of strings for the capabilities array.
	 *
	 * @param string                               $role         Role name.
	 * @param string                               $display_name Role display name.
	 * @param array<string,bool>|array<int,string> $capabilities Capabilities to be added to the role.
	 *                                                           Default empty array.
	 * @return WP_Role|void WP_Role object, if the role is added.
	 */
	public function add_role( $role, $display_name, $capabilities = array() ) {
		if ( empty( $role ) || isset( $this->roles[ $role ] ) ) {
			return;
		}

		if ( wp_is_numeric_array( $capabilities ) ) {
			$capabilities = array_fill_keys( $capabilities, true );
		}

		$this->roles[ $role ] = array(
			'name'         => $display_name,
			'capabilities' => $capabilities,
		);
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles, true );
		}
		$this->role_objects[ $role ] = new WP_Role( $role, $capabilities );
		$this->role_names[ $role ]   = $display_name;
		return $this->role_objects[ $role ];
	}

	/**
	 * Removes a role by name.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name.
	 */
	public function remove_role( $role ) {
		if ( ! isset( $this->role_objects[ $role ] ) ) {
			return;
		}

		unset( $this->role_objects[ $role ] );
		unset( $this->role_names[ $role ] );
		unset( $this->roles[ $role ] );

		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}

		if ( get_option( 'default_role' ) === $role ) {
			update_option( 'default_role', 'subscriber' );
		}
	}

	/**
	 * Adds a capability to role.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role  Role name.
	 * @param string $cap   Capability name.
	 * @param bool   $grant Optional. Whether role is capable of performing capability.
	 *                      Default true.
	 */
	public function add_cap( $role, $cap, $grant = true ) {
		if ( ! isset( $this->roles[ $role ] ) ) {
			return;
		}

		$this->roles[ $role ]['capabilities'][ $cap ] = $grant;
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}
	}

	/**
	 * Removes a capability from role.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name.
	 * @param string $cap  Capability name.
	 */
	public function remove_cap( $role, $cap ) {
		if ( ! isset( $this->roles[ $role ] ) ) {
			return;
		}

		unset( $this->roles[ $role ]['capabilities'][ $cap ] );
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}
	}

	/**
	 * Retrieves a role object by name.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name.
	 * @return WP_Role|null WP_Role object if found, null if the role does not exist.
	 */
	public function get_role( $role ) {
		if ( isset( $this->role_objects[ $role ] ) ) {
			return $this->role_objects[ $role ];
		} else {
			return null;
		}
	}

	/**
	 * Retrieves a list of role names.
	 *
	 * @since 2.0.0
	 *
	 * @return string[] List of role names.
	 */
	public function get_names() {
		return $this->role_names;
	}

	/**
	 * Determines whether a role name is currently in the list of available roles.
	 *
	 * @since 2.0.0
	 *
	 * @param string $role Role name to look up.
	 * @return bool
	 */
	public function is_role( $role ) {
		return isset( $this->role_names[ $role ] );
	}

	/**
	 * Initializes all of the available roles.
	 *
	 * @since 4.9.0
	 */
	public function init_roles() {
		if ( empty( $this->roles ) ) {
			return;
		}

		$this->role_objects = array();
		$this->role_names   = array();
		foreach ( array_keys( $this->roles ) as $role ) {
			$this->role_objects[ $role ] = new WP_Role( $role, $this->roles[ $role ]['capabilities'] );
			$this->role_names[ $role ]   = $this->roles[ $role ]['name'];
		}

		/**
		 * Fires after the roles have been initialized, allowing plugins to add their own roles.
		 *
		 * @since 4.7.0
		 *
		 * @param WP_Roles $wp_roles A reference to the WP_Roles object.
		 */
		do_action( 'wp_roles_init', $this );
	}

	/**
	 * Sets the site to operate on. Defaults to the current site.
	 *
	 * @since 4.9.0
	 *
	 * @global wpdb $wpdb WordPress database abstraction object.
	 *
	 * @param int $site_id Site ID to initialize roles for. Default is the current site.
	 */
	public function for_site( $site_id = null ) {
		global $wpdb;

		if ( ! empty( $site_id ) ) {
			$this->site_id = absint( $site_id );
		} else {
			$this->site_id = get_current_blog_id();
		}

		$this->role_key = $wpdb->get_blog_prefix( $this->site_id ) . 'user_roles';

		if ( ! empty( $this->roles ) && ! $this->use_db ) {
			return;
		}

		$this->roles = $this->get_roles_data();

		$this->init_roles();
	}

	/**
	 * Gets the ID of the site for which roles are currently initialized.
	 *
	 * @since 4.9.0
	 *
	 * @return int Site ID.
	 */
	public function get_site_id() {
		return $this->site_id;
	}

	/**
	 * Gets the available roles data.
	 *
	 * @since 4.9.0
	 *
	 * @global array $wp_user_roles Used to set the 'roles' property value.
	 *
	 * @return array Roles array.
	 */
	protected function get_roles_data() {
		global $wp_user_roles;

		if ( ! empty( $wp_user_roles ) ) {
			return $wp_user_roles;
		}

		if ( is_multisite() && get_current_blog_id() !== $this->site_id ) {
			remove_action( 'switch_blog', 'wp_switch_roles_and_user', 1 );

			$roles = get_blog_option( $this->site_id, $this->role_key, array() );

			add_action( 'switch_blog', 'wp_switch_roles_and_user', 1, 2 );

			return $roles;
		}

		return get_option( $this->role_key, array() );
	}
}

Directory Contents

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