wp/wp-includes/widgets/class-wp-widget-meta.php
changeset 9 177826044cd9
parent 7 cf61fcea0001
child 16 a86126ab1dd4
--- a/wp/wp-includes/widgets/class-wp-widget-meta.php	Mon Oct 14 18:06:33 2019 +0200
+++ b/wp/wp-includes/widgets/class-wp-widget-meta.php	Mon Oct 14 18:28:13 2019 +0200
@@ -25,8 +25,8 @@
 	 */
 	public function __construct() {
 		$widget_ops = array(
-			'classname' => 'widget_meta',
-			'description' => __( 'Login, RSS, & WordPress.org links.' ),
+			'classname'                   => 'widget_meta',
+			'description'                 => __( 'Login, RSS, & WordPress.org links.' ),
 			'customize_selective_refresh' => true,
 		);
 		parent::__construct( 'meta', __( 'Meta' ), $widget_ops );
@@ -52,12 +52,12 @@
 		if ( $title ) {
 			echo $args['before_title'] . $title . $args['after_title'];
 		}
-			?>
+		?>
 			<ul>
 			<?php wp_register(); ?>
 			<li><?php wp_loginout(); ?></li>
-			<li><a href="<?php echo esc_url( get_bloginfo( 'rss2_url' ) ); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
-			<li><a href="<?php echo esc_url( get_bloginfo( 'comments_rss2_url' ) ); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
+			<li><a href="<?php echo esc_url( get_bloginfo( 'rss2_url' ) ); ?>"><?php _e( 'Entries <abbr title="Really Simple Syndication">RSS</abbr>' ); ?></a></li>
+			<li><a href="<?php echo esc_url( get_bloginfo( 'comments_rss2_url' ) ); ?>"><?php _e( 'Comments <abbr title="Really Simple Syndication">RSS</abbr>' ); ?></a></li>
 			<?php
 			/**
 			 * Filters the "Powered by WordPress" text in the Meta widget.
@@ -68,18 +68,23 @@
 			 * @param string $title_text Default title text for the WordPress.org link.
 			 * @param array  $instance   Array of settings for the current widget.
 			 */
-			echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
-				esc_url( __( 'https://wordpress.org/' ) ),
-				esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
-				_x( 'WordPress.org', 'meta widget link text' )
-			), $instance );
+			echo apply_filters(
+				'widget_meta_poweredby',
+				sprintf(
+					'<li><a href="%s" title="%s">%s</a></li>',
+					esc_url( __( 'https://wordpress.org/' ) ),
+					esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
+					_x( 'WordPress.org', 'meta widget link text' )
+				),
+				$instance
+			);
 
 			wp_meta();
 			?>
 			</ul>
 			<?php
 
-		echo $args['after_widget'];
+			echo $args['after_widget'];
 	}
 
 	/**
@@ -93,7 +98,7 @@
 	 * @return array Updated settings to save.
 	 */
 	public function update( $new_instance, $old_instance ) {
-		$instance = $old_instance;
+		$instance          = $old_instance;
 		$instance['title'] = sanitize_text_field( $new_instance['title'] );
 
 		return $instance;
@@ -108,9 +113,8 @@
 	 */
 	public function form( $instance ) {
 		$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
-		$title = sanitize_text_field( $instance['title'] );
-?>
-			<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
-<?php
+		?>
+			<p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>" /></p>
+		<?php
 	}
 }