<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13084] trunk/wp-admin/includes/dashboard.php:
  Make Recent Comments dashboard widget configurable.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13084">13084</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-02-13 04:39:39 +0000 (Sat, 13 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Make Recent Comments dashboard widget configurable. Allows user to choose how many comments to display, see <a href="http://trac.wordpress.org/ticket/11891">#11891</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesdashboardphp">trunk/wp-admin/includes/dashboard.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesdashboardphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/dashboard.php (13083 => 13084)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/dashboard.php        2010-02-13 04:18:33 UTC (rev 13083)
+++ trunk/wp-admin/includes/dashboard.php        2010-02-13 04:39:39 UTC (rev 13084)
</span><span class="lines">@@ -28,8 +28,14 @@
</span><span class="cx">         wp_add_dashboard_widget( 'dashboard_right_now', __( 'Right Now' ), 'wp_dashboard_right_now' );
</span><span class="cx"> 
</span><span class="cx">         // Recent Comments Widget
</span><ins>+        if ( !isset( $widget_options['dashboard_recent_comments'] ) || !isset( $widget_options['dashboard_recent_comments']['items'] ) ) {
+                $update = true;
+                $widget_options['dashboard_recent_comments'] = array(
+                        'items' =&gt; 5,
+                );
+        }
</ins><span class="cx">         $recent_comments_title = __( 'Recent Comments' );
</span><del>-        wp_add_dashboard_widget( 'dashboard_recent_comments', $recent_comments_title, 'wp_dashboard_recent_comments' );
</del><ins>+        wp_add_dashboard_widget( 'dashboard_recent_comments', $recent_comments_title, 'wp_dashboard_recent_comments', 'wp_dashboard_recent_comments_control' );
</ins><span class="cx"> 
</span><span class="cx">         // Incoming Links Widget
</span><span class="cx">         if ( !isset( $widget_options['dashboard_incoming_links'] ) || !isset( $widget_options['dashboard_incoming_links']['home'] ) || $widget_options['dashboard_incoming_links']['home'] != get_option('home') ) {
</span><span class="lines">@@ -482,10 +488,16 @@
</span><span class="cx">         $comments = array();
</span><span class="cx">         $start = 0;
</span><span class="cx"> 
</span><ins>+        $widgets = get_option( 'dashboard_widget_options' );
+        if ( isset( $widgets['dashboard_recent_comments'] ) &amp;&amp; isset( $widgets['dashboard_recent_comments']['items'] ) )
+                $total_items = (int) $widgets['dashboard_recent_comments']['items'];
+        else
+                $total_items = 5;
+
</ins><span class="cx">         while ( count( $comments ) &lt; 5 &amp;&amp; $possible = $wpdb-&gt;get_results( &quot;SELECT * FROM $wpdb-&gt;comments c LEFT JOIN $wpdb-&gt;posts p ON c.comment_post_ID = p.ID WHERE p.post_status != 'trash' ORDER BY c.comment_date_gmt DESC LIMIT $start, 50&quot; ) ) {
</span><span class="cx"> 
</span><span class="cx">                 foreach ( $possible as $comment ) {
</span><del>-                        if ( count( $comments ) &gt;= 5 )
</del><ins>+                        if ( count( $comments ) &gt;= $total_items )
</ins><span class="cx">                                 break;
</span><span class="cx">                         if ( in_array( $comment-&gt;comment_approved, $allowed_states ) )
</span><span class="cx">                                 $comments[] = $comment;
</span><span class="lines">@@ -615,6 +627,32 @@
</span><span class="cx"> &lt;?php
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+/**
+ * The recent comments dashboard widget control.
+ *
+ * @since 3.0.0
+ */
+function wp_dashboard_recent_comments_control() {
+        if ( !$widget_options = get_option( 'dashboard_widget_options' ) )
+                $widget_options = array();
+
+        if ( !isset($widget_options['dashboard_recent_comments']) )
+                $widget_options['dashboard_recent_comments'] = array();
+
+        if ( 'POST' == $_SERVER['REQUEST_METHOD'] &amp;&amp; isset($_POST['widget-recent-comments']) ) {
+                $number = (int) stripslashes($_POST['widget-recent-comments']['items']);
+                if ( $number &lt; 1 || $number &gt; 15 )
+                        $number = 5;
+                $widget_options['dashboard_recent_comments']['items'] = $number;
+                update_option( 'dashboard_widget_options', $widget_options );
+        }
+
+        $number = isset( $widget_options['dashboard_recent_comments']['items'] ) ? (int) $widget_options['dashboard_recent_comments']['items'] : '';
+
+        echo '&lt;p&gt;&lt;label for=&quot;comments-number&quot;&gt;' . __('Number of comments to show:') . '&lt;/label&gt;';
+        echo '&lt;input id=&quot;comments-number&quot; name=&quot;widget-recent-comments[items]&quot; type=&quot;text&quot; value=&quot;' . $number . '&quot; size=&quot;3&quot; /&gt; &lt;small&gt;' . __( '(at most 15)' ) . '&lt;/p&gt;';
+}
+
</ins><span class="cx"> function wp_dashboard_incoming_links() {
</span><span class="cx">         echo '&lt;p class=&quot;widget-loading hide-if-no-js&quot;&gt;' . __( 'Loading&amp;#8230;' ) . '&lt;/p&gt;&lt;p class=&quot;describe hide-if-js&quot;&gt;' . __('This widget requires JavaScript.') . '&lt;/p&gt;';
</span><span class="cx"> }
</span></span></pre>
</div>
</div>

</body>
</html>