Make WordPress Core


Ignore:
Timestamp:
05/02/2024 05:18:53 PM (8 months ago)
Author:
SergeyBiryukov
Message:

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

Follow-up to [13602], [13686], [14879], [25806], [28495], [32655], [48661], [53952].

Props yagniksangani, audrasjb, SergeyBiryukov.
Fixes #61124.

File:
1 edited

Legend:

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

    r53952 r58082  
    2525     * which in turn calls the wp_get_theme() function.
    2626     *
     27     * @since 3.0.0
    2728     * @var WP_Theme|false The theme's info object, or false.
    2829     */
    2930    public $theme_info = false;
    3031
     32    /**
     33     * Sets up the strings used in the update process.
     34     *
     35     * @since 3.0.0
     36     */
    3137    public function add_strings() {
    3238        parent::add_strings();
     
    3642
    3743    /**
     44     * Performs an action before a bulk theme update.
     45     *
     46     * @since 3.0.0
     47     *
    3848     * @param string $title
    3949     */
     
    4353
    4454    /**
     55     * Performs an action following a bulk theme update.
     56     *
     57     * @since 3.0.0
     58     *
    4559     * @param string $title
    4660     */
     
    5165
    5266    /**
     67     * Displays the footer following the bulk update process.
     68     *
     69     * @since 3.0.0
    5370     */
    5471    public function bulk_footer() {
Note: See TracChangeset for help on using the changeset viewer.