Changeset 52931
- Timestamp:
- 03/13/2022 09:54:14 PM (3 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/plugin-install.php
r52422 r52931 236 236 237 237 /** 238 * Retrieve popular WordPress plugin tags.238 * Retrieves popular WordPress plugin tags. 239 239 * 240 240 * @since 2.7.0 … … 262 262 263 263 /** 264 * Displays plugin install dashboard. 265 * 264 266 * @since 2.7.0 265 267 */ … … 343 345 344 346 /** 345 * Upload from zip347 * Displays a form to upload plugins from zip files. 346 348 * 347 349 * @since 2.8.0 … … 362 364 363 365 /** 364 * Show a username form for the favorites page366 * Shows a username form for the favorites page. 365 367 * 366 368 * @since 3.5.0 … … 384 386 385 387 /** 386 * Display plugin content based on plugin list.388 * Displays plugin content based on plugin list. 387 389 * 388 390 * @since 2.7.0 … … 419 421 420 422 /** 421 * Determine the status we can perform on a plugin.423 * Determines the status we can perform on a plugin. 422 424 * 423 425 * @since 3.0.0 … … 509 511 510 512 /** 511 * Display plugin information in dialog box form.513 * Displays plugin information in dialog box form. 512 514 * 513 515 * @since 2.7.0 -
trunk/src/wp-admin/includes/plugin.php
r52571 r52931 216 216 217 217 /** 218 * Get a list of a plugin's files.218 * Gets a list of a plugin's files. 219 219 * 220 220 * @since 2.8.0 … … 251 251 252 252 /** 253 * Check the plugins directory and retrieve all plugin files with plugin data.253 * Checks the plugins directory and retrieve all plugin files with plugin data. 254 254 * 255 255 * WordPress only supports plugin files in the base plugins directory … … 351 351 352 352 /** 353 * Check the mu-plugins directory and retrieve all mu-plugin files with any plugin data.353 * Checks the mu-plugins directory and retrieve all mu-plugin files with any plugin data. 354 354 * 355 355 * WordPress only includes mu-plugin files in the base mu-plugins directory (wp-content/mu-plugins). … … 410 410 411 411 /** 412 * Callback to sort array by a 'Name' key.412 * Declares a callback to sort array by a 'Name' key. 413 413 * 414 414 * @since 3.1.0 … … 425 425 426 426 /** 427 * Check the wp-content directory and retrieve all drop-ins with any plugin data.427 * Checks the wp-content directory and retrieve all drop-ins with any plugin data. 428 428 * 429 429 * @since 3.0.0 … … 729 729 730 730 /** 731 * Deactivate a single plugin or multiple plugins.731 * Deactivates a single plugin or multiple plugins. 732 732 * 733 733 * The deactivation hook is disabled by the plugin upgrader by using the $silent … … 837 837 838 838 /** 839 * Activate multiple plugins.839 * Activates multiple plugins. 840 840 * 841 841 * When WP_Error is returned, it does not mean that one of the plugins had … … 877 877 878 878 /** 879 * Remove directory and files of a plugin for a list of plugins.879 * Removes directory and files of a plugin for a list of plugins. 880 880 * 881 881 * @since 2.6.0 … … 1042 1042 1043 1043 /** 1044 * Validate active plugins1044 * Validates active plugins. 1045 1045 * 1046 1046 * Validate all active plugins, deactivates invalid and … … 1081 1081 1082 1082 /** 1083 * Validate the plugin path.1083 * Validates the plugin path. 1084 1084 * 1085 1085 * Checks that the main plugin file exists and is a valid plugin. See validate_file(). … … 1183 1183 1184 1184 /** 1185 * Whether the plugin can be uninstalled.1185 * Determines whether the plugin can be uninstalled. 1186 1186 * 1187 1187 * @since 2.7.0 … … 1202 1202 1203 1203 /** 1204 * Uninstall a single plugin.1204 * Uninstalls a single plugin. 1205 1205 * 1206 1206 * Calls the uninstall hook, if it is available. … … 2260 2260 2261 2261 /** 2262 * Output nonce, action, and option_page fields for a settings page.2262 * Outputs nonce, action, and option_page fields for a settings page. 2263 2263 * 2264 2264 * @since 2.7.0 … … 2288 2288 2289 2289 /** 2290 * Load a given plugin attempt to generate errors.2290 * Loads a given plugin attempt to generate errors. 2291 2291 * 2292 2292 * @since 3.0.0 … … 2305 2305 2306 2306 /** 2307 * Helper function for adding content to the Privacy Policy Guide.2307 * Declares an helper function for adding content to the Privacy Policy Guide. 2308 2308 * 2309 2309 * Plugins and themes should suggest text for inclusion in the site's privacy policy.
Note: See TracChangeset
for help on using the changeset viewer.