/home/altere25/sportzsoft.altereddigital.com/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php239520644editdlrm
admin-ajax.php49420644editdlrm
admin-footer.php28230644editdlrm
admin-functions.php4060644editdlrm
admin-header.php90320644editdlrm
admin-post.php20470644editdlrm
admin.php125590644editdlrm
async-upload.php47890644editdlrm
authorize-application.php103350644editdlrm
comment.php115650644editdlrm
contribute.php56240644editdlrm
credits.php37630644editdlrm
custom-background.php4160644editdlrm
custom-header.php4260644editdlrm
customize.php108650644editdlrm
edit-comments.php147260644editdlrm
edit-form-advanced.php293160644editdlrm
edit-form-blocks.php120240644editdlrm
edit-form-comment.php85440644editdlrm
edit-link-form.php63620644editdlrm
edit-tag-form.php107030644editdlrm
edit-tags.php224360644editdlrm
edit.php198970644editdlrm
erase-personal-data.php75380644editdlrm
export-personal-data.php79450644editdlrm
export.php112790644editdlrm
freedoms.php45370644editdlrm
import.php76470644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php175010644editdlrm
link-add.php7420644editdlrm
link-manager.php43650644editdlrm
link-parse-opml.php26900644editdlrm
link.php27610644editdlrm
load-scripts.php17000644editdlrm
load-styles.php26260644editdlrm
media-new.php32610644editdlrm
media-upload.php35690644editdlrm
media.php7630644editdlrm
menu-header.php100720644editdlrm
menu.php171500644editdlrm
moderation.php3070644editdlrm
ms-admin.php1960644editdlrm
ms-delete-site.php42870644editdlrm
ms-edit.php2160644editdlrm
ms-options.php2230644editdlrm
ms-sites.php2150644editdlrm
ms-themes.php2170644editdlrm
ms-upgrade-network.php2190644editdlrm
ms-users.php2150644editdlrm
my-sites.php48580644editdlrm
nav-menus.php489100644editdlrm
network.php54820644editdlrm
options-discussion.php159510644editdlrm
options-general.php171920644editdlrm
options-head.php4920644editdlrm
options-media.php65050644editdlrm
options-permalink.php216300644editdlrm
options-privacy.php102100644editdlrm
options-reading.php103140644editdlrm
options-writing.php92730644editdlrm
options.php136240644editdlrm
plugin-editor.php137140644editdlrm
plugin-install.php69400644editdlrm
plugins.php295140644editdlrm
post-new.php27030644editdlrm
post.php100880644editdlrm
press-this.php23860644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php24700644editdlrm
profile.php2830644editdlrm
revision.php56000644editdlrm
setup-config.php177420644editdlrm
site-editor.php61020644editdlrm
site-health-info.php40700644editdlrm
site-health.php103870644editdlrm
term.php22490644editdlrm
theme-editor.php155130644editdlrm
theme-install.php239110644editdlrm
themes.php480150644editdlrm
tools.php35140644editdlrm
update-core.php462850644editdlrm
update.php130920644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php56880644editdlrm
upload.php151980644editdlrm
user-edit.php400050644editdlrm
user-new.php245610644editdlrm
users.php238470644editdlrm
widgets-form-blocks.php45000644editdlrm
widgets-form.php196350644editdlrm
widgets.php11120644editdlrm
Edit: /home/altere25/sportzsoft.altereddigital.com/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.' ); } ?>