Make WordPress Core

Changeset 29159


Ignore:
Timestamp:
07/14/2014 12:41:20 AM (10 years ago)
Author:
DrewAPicture
Message:

Inline documentation cleanup for 4.0 audit.

phpDoc tweaks for methods, properties, and filters added in [29051]:

  • WP_Customize_Widgets::is_widget_rendered() method
  • WP_Customize_Widgets::is_sidebar_rendered() method

See #27993 and #28885.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-widgets.php

    r29051 r29159  
    10781078     * @access public
    10791079     *
    1080      * @param string $widget_id
    1081      * @return bool
     1080     * @param string $widget_id Widget ID to check.
     1081     * @return bool Whether the widget is rendered.
    10821082     */
    10831083    public function is_widget_rendered( $widget_id ) {
     
    10911091     * @access public
    10921092     *
    1093      * @param string $sidebar_id
    1094      * @return bool
     1093     * @param string $sidebar_id Sidebar ID to check.
     1094     * @return bool Whether the sidebar is rendered.
    10951095     */
    10961096    public function is_sidebar_rendered( $sidebar_id ) {
     
    11091109     * @access public
    11101110     *
    1111      * @param bool    $is_active  Whether the sidebar is active.
    1112      * @pasram string $sidebar_id Sidebar ID.
     1111     * @param bool   $is_active  Whether the sidebar is active.
     1112     * @param string $sidebar_id Sidebar ID.
    11131113     */
    11141114    public function tally_sidebars_via_is_active_sidebar_calls( $is_active, $sidebar_id ) {
Note: See TracChangeset for help on using the changeset viewer.