Make WordPress Core


Ignore:
Timestamp:
07/28/2020 11:55:19 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Docs: Add missing documentation for various upgrade/install class properties and methods.

Props ramiy.
Fixes #42923.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-theme-upgrader-skin.php

    r48545 r48661  
    1717 */
    1818class Theme_Upgrader_Skin extends WP_Upgrader_Skin {
     19
     20    /**
     21     * Holds the theme slug in the Theme Directory.
     22     *
     23     * @since 2.8.0
     24     *
     25     * @var object
     26     */
    1927    public $theme = '';
    2028
    2129    /**
    22      * @param array $args
     30     * Constructor.
     31     *
     32     * Sets up the theme upgrader skin.
     33     *
     34     * @since 2.8.0
     35     *
     36     * @param array $args Optional. The theme upgrader skin arguments to
     37     *                    override default options. Default empty array.
    2338     */
    2439    public function __construct( $args = array() ) {
     
    3752
    3853    /**
     54     * Action to perform following a single theme update.
     55     *
     56     * @since 2.8.0
    3957     */
    4058    public function after() {
Note: See TracChangeset for help on using the changeset viewer.