Docs: Improve documentation for the __construct(), widget(), update(), and form() methods in WP_Widget_Recent_Posts.

Also fixes a typo in the class DocBlock.

Props leemon.
Fixes #34023. See #34013.

Built from https://develop.svn.wordpress.org/trunk@34613


git-svn-id: http://core.svn.wordpress.org/trunk@34577 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-09-27 00:46:25 +00:00
parent 4f8f817865
commit e76083ce6e
2 changed files with 33 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-34612'; $wp_version = '4.4-alpha-34613';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -8,7 +8,7 @@
*/ */
/** /**
* Core class used to implement a Recent_Posts widget. * Core class used to implement a Recent Posts widget.
* *
* @since 2.8.0 * @since 2.8.0
* *
@ -16,6 +16,12 @@
*/ */
class WP_Widget_Recent_Posts extends WP_Widget { class WP_Widget_Recent_Posts extends WP_Widget {
/**
* Sets up a new Recent Posts widget instance.
*
* @since 2.8.0
* @access public
*/
public function __construct() { public function __construct() {
$widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "Your site’s most recent Posts.") ); $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "Your site’s most recent Posts.") );
parent::__construct('recent-posts', __('Recent Posts'), $widget_ops); parent::__construct('recent-posts', __('Recent Posts'), $widget_ops);
@ -23,8 +29,14 @@ class WP_Widget_Recent_Posts extends WP_Widget {
} }
/** /**
* @param array $args * Outputs the content for the current Recent Posts widget instance.
* @param array $instance *
* @since 2.8.0
* @access public
*
* @param array $args Display arguments including 'before_title', 'after_title',
* 'before_widget', and 'after_widget'.
* @param array $instance Settings for the current Recent Posts widget instance.
*/ */
public function widget( $args, $instance ) { public function widget( $args, $instance ) {
if ( ! isset( $args['widget_id'] ) ) { if ( ! isset( $args['widget_id'] ) ) {
@ -58,7 +70,7 @@ class WP_Widget_Recent_Posts extends WP_Widget {
) ) ); ) ) );
if ($r->have_posts()) : if ($r->have_posts()) :
?> ?>
<?php echo $args['before_widget']; ?> <?php echo $args['before_widget']; ?>
<?php if ( $title ) { <?php if ( $title ) {
echo $args['before_title'] . $title . $args['after_title']; echo $args['before_title'] . $title . $args['after_title'];
@ -74,7 +86,7 @@ class WP_Widget_Recent_Posts extends WP_Widget {
<?php endwhile; ?> <?php endwhile; ?>
</ul> </ul>
<?php echo $args['after_widget']; ?> <?php echo $args['after_widget']; ?>
<?php <?php
// Reset the global $the_post as this query will have stomped on it // Reset the global $the_post as this query will have stomped on it
wp_reset_postdata(); wp_reset_postdata();
@ -82,9 +94,15 @@ class WP_Widget_Recent_Posts extends WP_Widget {
} }
/** /**
* @param array $new_instance * Handles updating the settings for the current Recent Posts widget instance.
* @param array $old_instance *
* @return array * @since 2.8.0
* @access public
*
* @param array $new_instance New settings for this instance as input by the user via
* WP_Widget::form().
* @param array $old_instance Old settings for this instance.
* @return array Updated settings to save.
*/ */
public function update( $new_instance, $old_instance ) { public function update( $new_instance, $old_instance ) {
$instance = $old_instance; $instance = $old_instance;
@ -95,7 +113,12 @@ class WP_Widget_Recent_Posts extends WP_Widget {
} }
/** /**
* @param array $instance * Outputs the settings form for the Recent Posts widget.
*
* @since 2.8.0
* @access public
*
* @param array $instance Current settings.
*/ */
public function form( $instance ) { public function form( $instance ) {
$title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : ''; $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';