Changeset 34499
- Timestamp:
- 09/24/2015 02:53:46 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-upgrader.php
r34498 r34499 15 15 16 16 /** 17 * WordPress Upgrader class for Upgrading/Installing a local set of files via the Filesystem Abstraction classes from a Zip file. 17 * Core class used for upgrading/installing a local set of files via 18 * the Filesystem Abstraction classes from a Zip file. 18 19 * 19 * @package WordPress20 * @subpackage Upgrader21 20 * @since 2.8.0 22 21 */ … … 754 753 755 754 /** 756 * Plugin Upgrader class for WordPress Plugins, It is designed to upgrade/install plugins from a local zip, remote zip URL, or uploaded zip file.755 * Core class used for upgrading/installing plugins. 757 756 * 758 * @package WordPress 759 * @subpackage Upgrader 757 * It is designed to upgrade/install plugins from a local zip, remote zip URL, 758 * or uploaded zip file. 759 * 760 760 * @since 2.8.0 761 * 762 * @see WP_Upgrader 761 763 */ 762 764 class Plugin_Upgrader extends WP_Upgrader { … … 1215 1217 1216 1218 /** 1217 * Theme Upgrader class for WordPress Themes, It is designed to upgrade/install themes from a local zip, remote zip URL, or uploaded zip file.1219 * Core class used for upgrading/installing themes. 1218 1220 * 1219 * @package WordPress 1220 * @subpackage Upgrader 1221 * It is designed to upgrade/install themes from a local zip, remote zip URL, 1222 * or uploaded zip file. 1223 * 1221 1224 * @since 2.8.0 1225 * 1226 * @see WP_Upgrader 1222 1227 */ 1223 1228 class Theme_Upgrader extends WP_Upgrader { … … 1779 1784 1780 1785 /** 1781 * Language pack upgrader, for updating translations of plugins, themes, and core. 1786 * Core class used for updating/installing language packs (translations) 1787 * for plugins, themes, and core. 1782 1788 * 1783 * @package WordPress1784 * @subpackage Upgrader1785 1789 * @since 3.7.0 1790 * 1791 * @see WP_Upgrader 1786 1792 */ 1787 1793 class Language_Pack_Upgrader extends WP_Upgrader { … … 2107 2113 2108 2114 /** 2109 * Core Upgrader class for WordPress. It allows for WordPress to upgrade itself in combination with the wp-admin/includes/update-core.php file2115 * Core class used for updating core. 2110 2116 * 2111 * @package WordPress 2112 * @subpackage Upgrader 2117 * It allows for WordPress to upgrade itself in combination with 2118 * the wp-admin/includes/update-core.php file. 2119 * 2113 2120 * @since 2.8.0 2121 * 2122 * @see WP_Upgrader 2114 2123 */ 2115 2124 class Core_Upgrader extends WP_Upgrader { … … 2444 2453 2445 2454 /** 2446 * Upgrade Skin helper for File uploads. This class handles the upload process and passes it as if it's a local file to the Upgrade/Installer functions.2455 * Core class used for handling file uploads. 2447 2456 * 2448 * @package WordPress 2449 * @subpackage Upgrader 2457 * This class handles the upload process and passes it as if it's a local file 2458 * to the Upgrade/Installer functions. 2459 * 2450 2460 * @since 2.8.0 2451 2461 */ … … 2559 2569 2560 2570 /** 2561 * The WordPress automatic background updater.2571 * Core class used for handling automatic background updates. 2562 2572 * 2563 * @package WordPress2564 * @subpackage Upgrader2565 2573 * @since 3.7.0 2566 2574 */
Note: See TracChangeset
for help on using the changeset viewer.