/home/techb158/primomovers.ca/wp-admin
NameSizeModeActions
css/-0755rm
images/-0755rm
includes/-0755rm
js/-0755rm
maint/-0755rm
network/-0755rm
user/-0755rm
about.php164850644editdlrm
admin-ajax.php51460644editdlrm
admin-footer.php28040644editdlrm
admin-functions.php4720644editdlrm
admin-header.php92840644editdlrm
admin-post.php20210644editdlrm
admin.php129350644editdlrm
async-upload.php56040644editdlrm
authorize-application.php103350644editdlrm
comment.php116430644editdlrm
contribute.php56560644editdlrm
credits.php41410644editdlrm
custom-background.php4820644editdlrm
custom-header.php4920644editdlrm
customize.php115860644editdlrm
edit-comments.php144840644editdlrm
edit-form-advanced.php294810644editdlrm
edit-form-blocks.php155280644editdlrm
edit-form-comment.php139800644editdlrm
edit-link-form.php63470644editdlrm
edit-tag-form.php106580644editdlrm
edit-tags.php225100644editdlrm
edit.php199520644editdlrm
erase-personal-data.php75050644editdlrm
error_log8101550644editdlrm
export-personal-data.php79400644editdlrm
export.php112650644editdlrm
font-library.php14800644editdlrm
freedoms.php45740644editdlrm
import.php77660644editdlrm
index.php78640644editdlrm
install-helper.php69610644editdlrm
install.php183750644editdlrm
link-add.php9340644editdlrm
link-manager.php43610644editdlrm
link-parse-opml.php27210644editdlrm
link.php29570644editdlrm
load-scripts.php20700644editdlrm
load-styles.php29950644editdlrm
media-new.php32490644editdlrm
media-upload.php36680644editdlrm
media.php8190644editdlrm
menu-header.php100520644editdlrm
menu.php181340644editdlrm
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.php48310644editdlrm
nav-menus.php501990644editdlrm
network.php55230644editdlrm
options-connectors.php15430644editdlrm
options-discussion.php164030644editdlrm
options-general.php228550644editdlrm
options-head.php6140644editdlrm
options-media.php66400644editdlrm
options-permalink.php224910644editdlrm
options-privacy.php107040644editdlrm
options-reading.php101980644editdlrm
options-writing.php94040644editdlrm
options.php142660644editdlrm
plugin-editor.php140710644editdlrm
plugin-install.php74330644editdlrm
plugins.php307440644editdlrm
post-new.php27680644editdlrm
post.php108210644editdlrm
press-this.php24700644editdlrm
privacy-policy-guide.php37560644editdlrm
privacy.php25120644editdlrm
profile.php2830644editdlrm
revision.php58360644editdlrm
setup-config.php179280644editdlrm
site-editor.php124830644editdlrm
site-health-info.php41730644editdlrm
site-health.php104270644editdlrm
term.php22490644editdlrm
theme-editor.php172790644editdlrm
theme-install.php243150644editdlrm
themes.php497280644editdlrm
tools.php35140644editdlrm
update-core.php462020644editdlrm
update.php130620644editdlrm
upgrade-functions.php3410644editdlrm
upgrade.php63900644editdlrm
upload.php152920644editdlrm
user-edit.php418440644editdlrm
user-new.php246640644editdlrm
users.php256980644editdlrm
widgets-form-blocks.php52350644editdlrm
widgets-form.php195880644editdlrm
widgets.php11120644editdlrm
Edit: /home/techb158/primomovers.ca/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.' ); } ?>