/var/www/vhosts/ihelp.ro/ajutam.ro/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php198040644editdlrm
admin-ajax.php51460644editdlrm
admin-footer.php28340644editdlrm
admin-functions.php4790644editdlrm
admin-header.php93360644editdlrm
admin-post.php20210644editdlrm
admin.php126460644editdlrm
async-upload.php56040644editdlrm
authorize-application.php103350644editdlrm
comment.php116220644editdlrm
contribute.php59980644editdlrm
credits.php44830644editdlrm
custom-background.php4890644editdlrm
custom-header.php4990644editdlrm
customize.php112710644editdlrm
edit-comments.php147290644editdlrm
edit-form-advanced.php295270644editdlrm
edit-form-blocks.php149470644editdlrm
edit-form-comment.php85430644editdlrm
edit-link-form.php63540644editdlrm
edit-tag-form.php106880644editdlrm
edit-tags.php225330644editdlrm
edit.php199520644editdlrm
erase-personal-data.php75050644editdlrm
export-personal-data.php79410644editdlrm
export.php112880644editdlrm
freedoms.php49160644editdlrm
import.php77660644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php181920644editdlrm
link-add.php9340644editdlrm
link-manager.php43610644editdlrm
link-parse-opml.php27840644editdlrm
link.php29570644editdlrm
load-scripts.php20700644editdlrm
load-styles.php29950644editdlrm
media-new.php32760644editdlrm
media-upload.php36680644editdlrm
media.php8190644editdlrm
menu-header.php100590644editdlrm
menu.php178800644editdlrm
moderation.php3070644editdlrm
ms-admin.php1960644editdlrm
ms-delete-site.php46130644editdlrm
ms-edit.php2160644editdlrm
ms-options.php2290644editdlrm
ms-sites.php2150644editdlrm
ms-themes.php2170644editdlrm
ms-upgrade-network.php2190644editdlrm
ms-users.php2150644editdlrm
my-sites.php48580644editdlrm
nav-menus.php493450644editdlrm
network.php55220644editdlrm
options-discussion.php162970644editdlrm
options-general.php221670644editdlrm
options-head.php6210644editdlrm
options-media.php65300644editdlrm
options-permalink.php217260644editdlrm
options-privacy.php101900644editdlrm
options-reading.php101740644editdlrm
options-writing.php93230644editdlrm
options.php139300644editdlrm
plugin-editor.php140820644editdlrm
plugin-install.php71240644editdlrm
plugins.php307240644editdlrm
post-new.php27680644editdlrm
post.php102740644editdlrm
press-this.php23960644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php28540644editdlrm
profile.php2830644editdlrm
revision.php58360644editdlrm
setup-config.php179040644editdlrm
site-editor.php122710644editdlrm
site-health-info.php40880644editdlrm
site-health.php104480644editdlrm
term.php22490644editdlrm
theme-editor.php172790644editdlrm
theme-install.php239450644editdlrm
themes.php490750644editdlrm
tools.php35140644editdlrm
update-core.php465390644editdlrm
update.php130920644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php64220644editdlrm
upload.php152590644editdlrm
user-edit.php413280644editdlrm
user-new.php246230644editdlrm
users.php238460644editdlrm
widgets-form-blocks.php52420644editdlrm
widgets-form.php197540644editdlrm
widgets.php11120644editdlrm
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-admin/authorize-application.php (10335B)
$app_name, 'app_id' => $app_id, ) ); if ( is_wp_error( $created ) ) { $error = $created; } else { list( $new_password ) = $created; if ( $success_url ) { $redirect = add_query_arg( array( 'site_url' => urlencode( site_url() ), 'user_login' => urlencode( wp_get_current_user()->user_login ), 'password' => urlencode( $new_password ), ), $success_url ); } } } if ( $redirect ) { // Explicitly not using wp_safe_redirect b/c sends to arbitrary domain. wp_redirect( $redirect ); exit; } } // Used in the HTML title tag. $title = __( 'Authorize Application' ); $app_name = ! empty( $_REQUEST['app_name'] ) ? $_REQUEST['app_name'] : ''; $app_id = ! empty( $_REQUEST['app_id'] ) ? $_REQUEST['app_id'] : ''; $success_url = ! empty( $_REQUEST['success_url'] ) ? $_REQUEST['success_url'] : null; if ( ! empty( $_REQUEST['reject_url'] ) ) { $reject_url = $_REQUEST['reject_url']; } elseif ( $success_url ) { $reject_url = add_query_arg( 'success', 'false', $success_url ); } else { $reject_url = null; } $user = wp_get_current_user(); $request = compact( 'app_name', 'app_id', 'success_url', 'reject_url' ); $is_valid = wp_is_authorize_application_password_request_valid( $request, $user ); if ( is_wp_error( $is_valid ) ) { wp_die( __( 'The Authorize Application request is not allowed.' ) . ' ' . implode( ' ', $is_valid->get_error_messages() ), __( 'Cannot Authorize Application' ) ); } if ( wp_is_site_protected_by_basic_auth( 'front' ) ) { wp_die( __( 'Your website appears to use Basic Authentication, which is not currently compatible with application passwords.' ), __( 'Cannot Authorize Application' ), array( 'response' => 501, 'link_text' => __( 'Go Back' ), 'link_url' => $reject_url ? add_query_arg( 'error', 'disabled', $reject_url ) : admin_url(), ) ); } if ( ! wp_is_application_passwords_available_for_user( $user ) ) { if ( wp_is_application_passwords_available() ) { $message = __( 'Application passwords are not available for your account. Please contact the site administrator for assistance.' ); } else { $message = __( 'Application passwords are not available.' ); } wp_die( $message, __( 'Cannot Authorize Application' ), array( 'response' => 501, 'link_text' => __( 'Go Back' ), 'link_url' => $reject_url ? add_query_arg( 'error', 'disabled', $reject_url ) : admin_url(), ) ); } wp_enqueue_script( 'auth-app' ); wp_localize_script( 'auth-app', 'authApp', array( 'site_url' => site_url(), 'user_login' => $user->user_login, 'success' => $success_url, 'reject' => $reject_url ? $reject_url : admin_url(), ) ); require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

get_error_message(), array( 'type' => 'error', ) ); } ?>

' . esc_html( $app_name ) . '' ); ?>

ID, true ); $blogs_count = count( $blogs ); if ( $blogs_count > 1 ) { ?>

the %2$s site in this installation that you have permissions on.', 'This will grant access to all %2$s sites in this installation that you have permissions on.', $blogs_count ); if ( is_super_admin() ) { /* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */ $message = _n( 'This will grant access to the %2$s site on the network as you have Super Admin rights.', 'This will grant access to all %2$s sites on the network as you have Super Admin rights.', $blogs_count ); } printf( $message, admin_url( 'my-sites.php' ), number_format_i18n( $blogs_count ) ); ?>

' . __( 'Be sure to save this in a safe location. You will not be able to retrieve it.' ) . '

'; $args = array( 'type' => 'success', 'additional_classes' => array( 'notice-alt', 'below-h2' ), 'paragraph_wrap' => false, ); wp_admin_notice( $message, $args ); /** * Fires in the Authorize Application Password new password section in the no-JS version. * * In most cases, this should be used in combination with the {@see 'wp_application_passwords_approve_app_request_success'} * action to ensure that both the JS and no-JS variants are handled. * * @since 5.6.0 * @since 5.6.1 Corrected action name and signature. * * @param string $new_password The newly generated application password. * @param array $request The array of request data. All arguments are optional and may be empty. * @param WP_User $user The user authorizing the application. */ do_action( 'wp_authorize_application_password_form_approved_no_js', $new_password, $request, $user ); else : ?>
'description-approve', ) ); ?>

' . esc_html( add_query_arg( array( 'site_url' => site_url(), 'user_login' => $user->user_login, 'password' => '[------]', ), $success_url ) ) . '' ); } else { _e( 'You will be given a password to manually enter into the application in question.' ); } ?>

'description-reject', ) ); ?>

' . esc_html( $reject_url ) . '' ); } else { _e( 'You will be returned to the WordPress Dashboard, and no changes will be made.' ); } ?>