Changeset 41289 for trunk/src/wp-admin/includes/class-wp-upgrader.php
- Timestamp:
- 08/22/2017 11:51:11 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-upgrader.php
r41168 r41289 80 80 * @type string $source The full path to the source the files were installed from. 81 81 * @type string $source_files List of all the files in the source directory. 82 * @type string $destination The full path to the install destination folder.82 * @type string $destination The full path to the installation destination folder. 83 83 * @type string $destination_name The name of the destination folder, or empty if `$destination` 84 84 * and `$local_destination` are the same. … … 571 571 572 572 /** 573 * Filters the install response after the installation has finished.573 * Filters the installation response after the installation has finished. 574 574 * 575 575 * @since 2.8.0 576 576 * 577 * @param bool $response Install response.577 * @param bool $response Installation response. 578 578 * @param array $hook_extra Extra arguments passed to hooked filters. 579 579 * @param array $result Installation result data. … … 591 591 592 592 /** 593 * Run an upgrade/install .593 * Run an upgrade/installation. 594 594 * 595 595 * Attempts to download the package (if it is not a local file), unpack it, and … … 613 613 * folder already exists. When true, `$clear_destination` 614 614 * should be false. Default true. 615 * @type bool $is_multi Whether this run is one of multiple upgrade/install 615 * @type bool $is_multi Whether this run is one of multiple upgrade/installation 616 616 * actions being performed in bulk. When true, the skin 617 617 * WP_Upgrader::header() and WP_Upgrader::footer() … … 736 736 $this->skin->feedback('process_failed'); 737 737 } else { 738 // Install succeeded.738 // Installation succeeded. 739 739 $this->skin->feedback('process_success'); 740 740 }
Note: See TracChangeset
for help on using the changeset viewer.