CMS: Unknown
Server IP: 162.214.74.50
Root:
/home/iideug/public_html/harshils.iideug.com
Directory:
home
/
iideug
/
public_html
/
rohan.iideug.com
/
wp-admin
/
includes
File: /home/iideug/public_html/rohan.iideug.com/wp-admin/includes/class-automatic-upgrader-skin.php
<?php /** * Upgrader API: Automatic_Upgrader_Skin class * * @package WordPress * @subpackage Upgrader * @since 4.6.0 */ /** * Upgrader Skin for Automatic WordPress Upgrades. * * This skin is designed to be used when no output is intended, all output * is captured and stored for the caller to process and log/email/discard. * * @since 3.7.0 * @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php. * * @see Bulk_Upgrader_Skin */ class Automatic_Upgrader_Skin extends WP_Upgrader_Skin { protected $messages = array(); /** * Determines whether the upgrader needs FTP/SSH details in order to connect * to the filesystem. * * @since 3.7.0 * @since 4.6.0 The `$context` parameter default changed from `false` to an empty string. * * @see request_filesystem_credentials() * * @param bool|WP_Error $error Optional. Whether the current request has failed to connect, * or an error object. Default false. * @param string $context Optional. Full path to the directory that is tested * for being writable. Default empty. * @param bool $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable. Default false. * @return bool True on success, false on failure. */ public function request_filesystem_credentials( $error = false, $context = '', $allow_relaxed_file_ownership = false ) { if ( $context ) { $this->options['context'] = $context; } /* * TODO: Fix up request_filesystem_credentials(), or split it, to allow us to request a no-output version. * This will output a credentials form in event of failure. We don't want that, so just hide with a buffer. */ ob_start(); $result = parent::request_filesystem_credentials( $error, $context, $allow_relaxed_file_ownership ); ob_end_clean(); return $result; } /** * Retrieves the upgrade messages. * * @since 3.7.0 * * @return string[] Messages during an upgrade. */ public function get_upgrade_messages() { return $this->messages; } /** * Stores a message about the upgrade. * * @since 3.7.0 * @since 5.9.0 Renamed `$data` to `$feedback` for PHP 8 named parameter support. * * @param string|array|WP_Error $feedback Message data. * @param mixed ...$args Optional text replacements. */ public function feedback( $feedback, ...$args ) { if ( is_wp_error( $feedback ) ) { $string = $feedback->get_error_message(); } elseif ( is_array( $feedback ) ) { return; } else { $string = $feedback; } if ( ! empty( $this->upgrader->strings[ $string ] ) ) { $string = $this->upgrader->strings[ $string ]; } if ( str_contains( $string, '%' ) ) { if ( ! empty( $args ) ) { $string = vsprintf( $string, $args ); } } $string = trim( $string ); // Only allow basic HTML in the messages, as it'll be used in emails/logs rather than direct browser output. $string = wp_kses( $string, array( 'a' => array( 'href' => true, ), 'br' => true, 'em' => true, 'strong' => true, ) ); if ( empty( $string ) ) { return; } $this->messages[] = $string; } /** * Creates a new output buffer. * * @since 3.7.0 */ public function header() { ob_start(); } /** * Retrieves the buffered content, deletes the buffer, and processes the output. * * @since 3.7.0 */ public function footer() { $output = ob_get_clean(); if ( ! empty( $output ) ) { $this->feedback( $output ); } } }
Name
Size
Modify
Permissions
Actions
admin-filters.php
7.8 kb
2025-10-21 13:46:24
644
U
E
O
D
ajax-actions.php
148.3 kb
2025-08-15 11:01:30
644
U
E
O
D
class-automatic-upgrader-skin.php
3.6 kb
2023-06-22 14:36:26
644
U
E
O
D
class-bulk-theme-upgrader-skin.php
2.6 kb
2024-05-02 17:20:10
644
U
E
O
D
class-bulk-upgrader-skin.php
6.6 kb
2024-05-02 17:20:10
644
U
E
O
D
class-file-upload-upgrader.php
4.1 kb
2024-03-07 05:58:16
644
U
E
O
D
class-language-pack-upgrader-skin.php
2.8 kb
2024-05-02 17:20:10
644
U
E
O
D
class-pclzip.php
192.1 kb
2024-12-12 22:23:16
644
U
E
O
D
class-theme-upgrader-skin.php
4.1 kb
2024-02-26 20:35:08
644
U
E
O
D
class-walker-category-checklist.php
5 kb
2024-08-13 23:37:16
644
U
E
O
D
class-walker-nav-menu-checklist.php
5.6 kb
2026-03-10 14:01:32
644
U
E
O
D
class-wp-ajax-upgrader-skin.php
4.1 kb
2023-06-22 14:36:26
644
U
E
O
D
class-wp-application-passwords-list-table.php
6.8 kb
2024-02-16 21:47:12
644
U
E
O
D
class-wp-comments-list-table.php
32.4 kb
2026-01-27 02:19:34
644
U
E
O
D
class-wp-community-events.php
18.2 kb
2025-06-02 15:00:28
644
U
E
O
D
class-wp-filesystem-ftpext.php
22.7 kb
2025-11-03 21:38:34
644
U
E
O
D
class-wp-links-list-table.php
9 kb
2024-07-17 15:43:16
644
U
E
O
D
class-wp-list-table-compat.php
1.5 kb
2020-11-14 16:54:08
644
U
E
O
D
class-wp-media-list-table.php
25.3 kb
2025-03-17 18:54:28
644
U
E
O
D
class-wp-ms-sites-list-table.php
21.6 kb
2025-06-27 15:09:32
644
U
E
O
D
class-wp-ms-themes-list-table.php
27.8 kb
2025-03-10 18:16:28
644
U
E
O
D
class-wp-ms-users-list-table.php
15.4 kb
2025-02-27 00:09:24
644
U
E
O
D
class-wp-plugin-install-list-table.php
24.5 kb
2025-07-31 22:49:34
644
U
E
O
D
class-wp-plugins-list-table.php
56.4 kb
2025-09-08 20:58:38
644
U
E
O
D
class-wp-post-comments-list-table.php
1.4 kb
2022-10-04 03:47:16
644
U
E
O
D
class-wp-posts-list-table.php
63.7 kb
2025-07-25 15:17:22
644
U
E
O
D
class-wp-privacy-data-export-requests-list-table.php
5.4 kb
2022-03-10 19:22:02
644
U
E
O
D
class-wp-privacy-data-removal-requests-list-table.php
5.6 kb
2023-09-08 09:32:24
644
U
E
O
D
class-wp-privacy-policy-content.php
31.9 kb
2025-08-27 10:34:28
644
U
E
O
D
class-wp-site-health-auto-updates.php
14 kb
2024-11-04 15:25:18
644
U
E
O
D
class-wp-site-health.php
121.9 kb
2025-11-04 08:50:36
644
U
E
O
D
class-wp-terms-list-table.php
20.7 kb
2025-07-23 17:00:42
644
U
E
O
D
class-wp-theme-install-list-table.php
15.2 kb
2025-01-21 21:49:22
644
U
E
O
D
class-wp-themes-list-table.php
10.1 kb
2025-08-27 10:34:28
644
U
E
O
D
class-wp-upgrader-skin.php
6.9 kb
2024-05-02 17:20:10
644
U
E
O
D
class-wp-upgrader-skins.php
1.4 kb
2019-10-08 17:19:04
644
U
E
O
D
class-wp-users-list-table.php
18.6 kb
2024-01-10 11:57:16
644
U
E
O
D
credits.php
5.7 kb
2024-12-19 03:44:24
644
U
E
O
D
dashboard.php
68.2 kb
2025-11-10 20:39:36
644
U
E
O
D
edit-tag-messages.php
1.4 kb
2021-12-07 12:20:02
644
U
E
O
D
ms-admin-filters.php
1.3 kb
2022-09-20 02:51:10
644
U
E
O
D
options.php
4.2 kb
2025-08-27 10:34:28
644
U
E
O
D
revision.php
16.2 kb
2025-08-16 21:53:28
644
U
E
O
D