Uses
Uses | Description |
---|---|
wp-admin/includes/plugin.php: is_plugin_active() | Determines whether a plugin is active. |
wp-admin/includes/plugin.php: delete_plugins() | Remove directory and files of a plugin for a list of plugins. |
wp-admin/includes/plugin.php: get_plugin_data() | Parses the plugin contents to retrieve plugin’s metadata. |
wp-admin/includes/file.php: request_filesystem_credentials() | Displays a form to the user to request for their FTP/SSH details in order to connect to the filesystem. |
wp-admin/includes/file.php: WP_Filesystem() | Initializes and connects the WordPress Filesystem Abstraction classes. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: sanitize_text_field() | Sanitizes a string from user input or from the database. |
wp-includes/formatting.php: wp_unslash() | Remove slashes from a string or array of strings. |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/formatting.php: sanitize_key() | Sanitizes a string key. |
wp-includes/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
wp-includes/functions.php: validate_file() | Validates a file name and path against an allowed set of rules. |
wp-includes/functions.php: wp_send_json_error() | Send a JSON response back to an Ajax request, indicating failure. |
wp-includes/functions.php: wp_send_json_success() | Send a JSON response back to an Ajax request, indicating success. |
wp-includes/functions.php: wp_nonce_url() | Retrieve URL with nonce added to URL query. |
wp-includes/plugin.php: plugin_basename() | Gets the basename of a plugin. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |