Uses
Uses | Description |
---|---|
wp-admin/includes/class-wp-plugins-list-table.php: all_plugins | Filters the full array of plugins to list in the Plugins list table. |
wp-admin/includes/plugin.php: get_plugins() | Check the plugins directory and retrieve all plugin files with plugin data. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/theme.php: wp_get_themes() | Returns an array of WP_Theme objects based on the arguments. |
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/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
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/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: update_site_option() | Updates the value of an option that was already added for the current network. |
wp-includes/option.php: get_site_option() | Retrieve an option value for the current network based on name of option. |