PATH:
var
/
softaculous
/
sitepad
/
editor
/
site-admin
<?php /** * WordPress Generic Request (POST/GET) Handler * * Intended for form submission handling in themes and plugins. * * @package WordPress * @subpackage Administration */ /** We are located in WordPress Administration Screens */ if ( ! defined( 'WP_ADMIN' ) ) { define( 'WP_ADMIN', true ); } if ( defined( 'ABSPATH' ) ) { require_once( ABSPATH . 'kickstart.php' ); } else { require_once( dirname( dirname( __FILE__ ) ) . '/kickstart.php' ); } /** Allow for cross-domain requests (from the front end). */ send_origin_headers(); require_once( ABSPATH . 'site-admin/includes/admin.php' ); nocache_headers(); /** This action is documented in site-admin/admin.php */ do_action( 'admin_init' ); $action = empty( $_REQUEST['action'] ) ? '' : $_REQUEST['action']; if ( ! is_user_logged_in() ) { if ( empty( $action ) ) { /** * Fires on a non-authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post_nopriv' ); } else { /** * Fires on a non-authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_nopriv_{$action}" ); } } else { if ( empty( $action ) ) { /** * Fires on an authenticated admin post request where no action is supplied. * * @since 2.6.0 */ do_action( 'admin_post' ); } else { /** * Fires on an authenticated admin post request for the given action. * * The dynamic portion of the hook name, `$action`, refers to the given * request action. * * @since 2.6.0 */ do_action( "admin_post_{$action}" ); } }
[-] options-permalink.php
[edit]
[-] admin-header.php
[edit]
[-] custom-background.php
[edit]
[-] features.php
[edit]
[-] upload.php
[edit]
[-] sitemap.php
[edit]
[-] profile.php
[edit]
[+]
..
[-] load-scripts.php
[edit]
[-] term.php
[edit]
[-] export.php
[edit]
[-] edit-form-comment.php
[edit]
[-] edit-form-blocks.php
[edit]
[-] menu.php
[edit]
[-] import.php
[edit]
[-] setup.php
[edit]
[-] custom-header.php
[edit]
[-] themes_setup.php
[edit]
[-] user-edit.php
[edit]
[-] comment.php
[edit]
[-] edit-tags.php
[edit]
[-] edit-tag-form.php
[edit]
[-] edit.php
[edit]
[-] menu-header.php
[edit]
[-] cookie-consent.php
[edit]
[-] media-new.php
[edit]
[-] user-new.php
[edit]
[-] seo.php
[edit]
[-] users.php
[edit]
[+]
images
[-] async-upload.php
[edit]
[+]
css
[-] options-discussion.php
[edit]
[-] options-reading.php
[edit]
[-] post-new.php
[edit]
[-] index.php
[edit]
[+]
fonts
[-] post.php
[edit]
[-] google-analytics.php
[edit]
[+]
js
[-] admin-ajax.php
[edit]
[-] media.php
[edit]
[-] admin.php
[edit]
[-] plans.php
[edit]
[-] load-styles.php
[edit]
[-] edit-form-advanced.php
[edit]
[-] smtp-mail.php
[edit]
[-] themes.php
[edit]
[-] options-general.php
[edit]
[-] nav-menus.php
[edit]
[-] media-upload.php
[edit]
[-] options-head.php
[edit]
[+]
includes
[-] admin-post.php
[edit]
[-] admin-footer.php
[edit]
[-] privacy.php
[edit]
[-] mailchimp.php
[edit]
[-] options.php
[edit]
[-] options-media.php
[edit]
[-] customize.php
[edit]
[-] revision.php
[edit]