Dash cleanup.

* Use wp_add_dashboard_widget() rather than add_meta_box().
 * Use original functions like wp_dashboard_primary(), wp_dashboard_right_now(), wp_dashboard_quick_press() (where possible).
 * Only include plugins section of the news widget when appropriate, which necessitates the set_current_screen() via the ajax action.
 * Remove some debug cruft that was preventing caching and invalidation.
 * Simplify lots of things where possible.
see #25824.


git-svn-id: https://develop.svn.wordpress.org/trunk@26220 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-11-15 20:14:44 +00:00
parent 8b8be72403
commit 9a936eb7d0
5 changed files with 134 additions and 160 deletions

View File

@ -2969,19 +2969,19 @@ body #dashboard-widgets .postbox form .submit {
/* Dashboard Quick Draft */
#dashboard_quick_draft div.updated {
#dashboard_quick_press div.updated {
margin-bottom: 10px;
border: 1px solid #eee;
border-width: 1px 1px 1px 0;
}
#dashboard_quick_draft form {
#dashboard_quick_press form {
padding: 0 12px 1px 12px;
overflow: hidden;
}
#dashboard_quick_draft .drafts,
#dashboard_quick_draft .easy-blogging {
#dashboard_quick_press .drafts,
#dashboard_quick_press .easy-blogging {
padding: 8px 12px 0;
}
@ -3012,15 +3012,15 @@ form.initial-form.quickpress-open input#title {
height: auto;
}
#dashboard_quick_draft input,
#dashboard_quick_draft textarea {
#dashboard_quick_press input,
#dashboard_quick_press textarea {
box-sizing: border-box;
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
margin: 0;
}
#dashboard_quick_draft textarea {
#dashboard_quick_press textarea {
resize: vertical;
}
@ -3070,21 +3070,21 @@ form.initial-form.quickpress-open input#title {
/* Dashboard Quick Draft - Drafts list */
#dashboard_quick_draft .drafts {
#dashboard_quick_press .drafts {
border-top: 1px solid #eee;
margin-top: 12px;
}
#dashboard_quick_draft .drafts abbr {
#dashboard_quick_press .drafts abbr {
border: none;
}
#dashboard_quick_draft .drafts h4 {
#dashboard_quick_press .drafts h4 {
margin: 0 0 8px 0;
font-weight: normal;
}
#dashboard_quick_draft .drafts .view-all {
#dashboard_quick_press .drafts .view-all {
float: right;
margin-top: 0;
}

View File

@ -233,9 +233,14 @@ function wp_ajax_autocomplete_user() {
function wp_ajax_dashboard_widgets() {
require_once ABSPATH . 'wp-admin/includes/dashboard.php';
$pagenow = $_GET['pagenow'];
if ( $pagenow === 'dashboard-user' || $pagenow === 'dashboard-network' || $pagenow === 'dashboard' ) {
set_current_screen( $pagenow );
}
switch ( $_GET['widget'] ) {
case 'dashboard_rss' :
wp_dashboard_rss();
case 'dashboard_primary' :
wp_dashboard_primary();
break;
}
wp_die();

View File

@ -37,20 +37,20 @@ function wp_dashboard_setup() {
// Right Now
if ( is_blog_admin() && current_user_can('edit_posts') )
add_meta_box( 'dash-right-now', 'Site Content', 'dashboard_new_right_now', 'dashboard', 'normal', 'high' );
wp_add_dashboard_widget( 'dash-right-now', __( 'Site Content' ), 'wp_dashboard_right_now' );
if ( is_network_admin() )
wp_add_dashboard_widget( 'network_dashboard_right_now', __( 'Right Now' ), 'wp_network_dashboard_right_now' );
// Activity Widget
add_meta_box( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_activity', 'dashboard', 'normal', 'high' );
wp_add_dashboard_widget( 'dashboard_activity', __( 'Activity' ), 'wp_dashboard_activity' );
// QuickPress Widget
if ( is_blog_admin() && current_user_can( 'edit_posts' ) )
add_meta_box( 'dashboard_quick_draft', __( 'Quick Draft' ), 'wp_dashboard_quick_draft', 'dashboard', 'side', 'high' );
wp_add_dashboard_widget( 'dashboard_quick_press', __( 'Quick Draft' ), 'wp_dashboard_quick_press' );
// WordPress News
add_meta_box( 'dashboard_rss', __( 'WordPress News' ), 'wp_dashboard_rss', 'dashboard', 'side', 'low' );
wp_add_dashboard_widget( 'dashboard_primary', __( 'WordPress News' ), 'wp_dashboard_primary' );
// Hook to register new widgets
// Filter widget order
@ -104,12 +104,7 @@ function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_
}
}
if ( is_blog_admin () )
$side_widgets = array('dashboard_quick_draft');
else if (is_network_admin() )
$side_widgets = array();
else
$side_widgets = array();
$side_widgets = array( 'dashboard_quick_press', 'dashboard_primary' );
$location = 'normal';
if ( in_array($widget_id, $side_widgets) )
@ -118,6 +113,8 @@ function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_
$priority = 'core';
if ( 'dashboard_browser_nag' === $widget_id )
$priority = 'high';
elseif ( 'dashboard_primary' === $widget_id )
$priority = 'low';
add_meta_box( $widget_id, $widget_name, $callback, $screen, $location, $priority, $callback_args );
}
@ -164,7 +161,14 @@ function wp_dashboard() {
/* Dashboard Widgets */
function dashboard_new_right_now() {
/**
* Dashboard widget that displays some basic stats about the site.
*
* Formerly 'Right Now'. A streamlined 'Site Content' as of 3.8.
*
* @since 2.7.0
*/
function wp_dashboard_right_now() {
$theme = wp_get_theme();
if ( current_user_can( 'switch_themes' ) )
$theme_name = sprintf( '<a href="themes.php">%1$s</a>', $theme->display('Name') );
@ -283,7 +287,7 @@ function wp_network_dashboard_right_now() {
* @since 3.8.0
*
*/
function wp_dashboard_quick_draft( $error_msg=false ) {
function wp_dashboard_quick_press( $error_msg=false ) {
global $post_ID;
/* Check if a new auto-draft (= no new post_ID) is needed or if the old can be used */
@ -305,8 +309,6 @@ function wp_dashboard_quick_draft( $error_msg=false ) {
}
$post_ID = (int) $post->ID;
do_action( 'dashboard_quickdraft_beginning', $post );
?>
<form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press" class="initial-form">
@ -338,8 +340,6 @@ function wp_dashboard_quick_draft( $error_msg=false ) {
<?php
wp_dashboard_recent_quickdrafts();
do_action( 'dashboard_quickdraft_end' );
}
/**
@ -676,6 +676,20 @@ function dashboard_relative_date( $time ) {
}
/**
* Display generic dashboard RSS widget feed.
*
* @since 2.5.0
*
* @param string $widget_id
*/
function wp_dashboard_rss_output( $widget_id ) {
$widgets = get_option( 'dashboard_widget_options' );
echo '<div class="rss-widget">';
wp_widget_rss_output( $widgets[ $widget_id ] );
echo "</div>";
}
/**
* Checks to see if all of the feed url in $check_urls are cached.
*
@ -745,15 +759,12 @@ function wp_dashboard_trigger_widget_control( $widget_control_id = false ) {
}
/**
* Returns default WordPress News feeds
*
*
*
* @since 3.8.0
* WordPress News dashboard widget.
*
* @since 2.7.0
*/
function wp_dashboard_default_feeds() {
return array(
function wp_dashboard_primary() {
$feeds = array(
'news' => array(
'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ),
'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ),
@ -771,161 +782,120 @@ function wp_dashboard_default_feeds() {
'show_summary' => 0,
'show_author' => 0,
'show_date' => 0,
),
'plugins' => array(
)
);
if ( ( ! is_multisite() && is_blog_admin() && current_user_can( 'install_plugins' ) ) || ( is_network_admin() && current_user_can( 'manage_network_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
$feeds['plugins'] = array(
'link' => '',
'url' => array(
'popular' => 'http://wordpress.org/plugins/rss/browse/popular/'
'popular' => 'http://wordpress.org/plugins/rss/browse/popular/',
),
'title' => '',
'items' => 1,
'show_summary' => 0,
'show_author' => 0,
'show_date' => 0,
)
);
}
/**
* Check for cached feeds
*
*
*
* @since 3.8.0
*
*/
function wp_dashboard_rss() {
$default_feeds = wp_dashboard_default_feeds();
$widget_options = get_option( 'dashboard_widget_options' );
if ( !$widget_options || !is_array($widget_options) )
$widget_options = array();
//if ( ! isset( $widget_options['dashboard_rss'] ) ) {
$widget_options['dashboard_rss'] = $default_feeds;
update_option( 'dashboard_widget_options', $widget_options );
//}
foreach( $default_feeds as $key => $value ) {
$default_urls[] = $value['url'];
);
}
$cache_key = 'dash_' . md5( 'dashboard_rss' );
delete_transient( $cache_key );
do_action( 'dashboard_news_beginning' );
wp_dashboard_cached_rss_widget( 'dashboard_rss', 'wp_dashboard_news_output', $default_urls );
do_action( 'dashboard_news_end' );
wp_dashboard_cached_rss_widget( 'dashboard_primary', 'wp_dashboard_primary_output', $feeds );
}
/**
* Display news feeds
*
*
* Display the WordPress news feeds.
*
* @since 3.8.0
*
*/
function wp_dashboard_news_output() {
$widgets = get_option( 'dashboard_widget_options' );
foreach( $widgets['dashboard_rss'] as $type => $args ) {
function wp_dashboard_primary_output( $widget_id, $feeds ) {
foreach( $feeds as $type => $args ) {
$args['type'] = $type;
echo '<div class="rss-widget">';
wp_widget_news_output( $args['url'], $args );
if ( $type === 'plugins' ) {
wp_dashboard_plugins_output( $args['url'], $args );
} else {
wp_widget_rss_output( $args['url'], $args );
}
echo "</div>";
}
}
/**
* Generate code for each news feed
*
*
*
* @since 3.8.0
* Display plugins text for the WordPress news widget.
*
* @since 2.5.0
*/
function wp_widget_news_output( $rss, $args = array() ) {
// Regular RSS feeds
if ( isset( $args['type'] ) && 'plugins' != $args['type'] )
return wp_widget_rss_output( $rss, $args );
function wp_dashboard_plugins_output( $rss, $args = array() ) {
// Plugin feeds plus link to install them
if ( ! is_multisite() && current_user_can( 'install_plugins' ) ) {
$popular = fetch_feed( $args['url']['popular'] );
$popular = fetch_feed( $args['url']['popular'] );
if ( false === $plugin_slugs = get_transient( 'plugin_slugs' ) ) {
$plugin_slugs = array_keys( get_plugins() );
set_transient( 'plugin_slugs', $plugin_slugs, DAY_IN_SECONDS );
}
if ( false === $plugin_slugs = get_transient( 'plugin_slugs' ) ) {
$plugin_slugs = array_keys( get_plugins() );
set_transient( 'plugin_slugs', $plugin_slugs, DAY_IN_SECONDS );
}
echo '<ul>';
echo '<ul>';
foreach ( array(
'popular' => __( 'Popular Plugin' )
) as $feed => $label ) {
if ( is_wp_error($$feed) || !$$feed->get_item_quantity() )
foreach ( array(
'popular' => __( 'Popular Plugin' )
) as $feed => $label ) {
if ( is_wp_error($$feed) || !$$feed->get_item_quantity() )
continue;
$items = $$feed->get_items(0, 5);
// Pick a random, non-installed plugin
while ( true ) {
// Abort this foreach loop iteration if there's no plugins left of this type
if ( 0 == count($items) )
continue 2;
$item_key = array_rand($items);
$item = $items[$item_key];
list($link, $frag) = explode( '#', $item->get_link() );
$link = esc_url($link);
if ( preg_match( '|/([^/]+?)/?$|', $link, $matches ) )
$slug = $matches[1];
else {
unset( $items[$item_key] );
continue;
$items = $$feed->get_items(0, 5);
// Pick a random, non-installed plugin
while ( true ) {
// Abort this foreach loop iteration if there's no plugins left of this type
if ( 0 == count($items) )
continue 2;
$item_key = array_rand($items);
$item = $items[$item_key];
list($link, $frag) = explode( '#', $item->get_link() );
$link = esc_url($link);
if ( preg_match( '|/([^/]+?)/?$|', $link, $matches ) )
$slug = $matches[1];
else {
unset( $items[$item_key] );
continue;
}
// Is this random plugin's slug already installed? If so, try again.
reset( $plugin_slugs );
foreach ( $plugin_slugs as $plugin_slug ) {
if ( $slug == substr( $plugin_slug, 0, strlen( $slug ) ) ) {
unset( $items[$item_key] );
continue 2;
}
}
// If we get to this point, then the random plugin isn't installed and we can stop the while().
break;
}
// Eliminate some common badly formed plugin descriptions
while ( ( null !== $item_key = array_rand($items) ) && false !== strpos( $items[$item_key]->get_description(), 'Plugin Name:' ) )
unset($items[$item_key]);
// Is this random plugin's slug already installed? If so, try again.
reset( $plugin_slugs );
foreach ( $plugin_slugs as $plugin_slug ) {
if ( $slug == substr( $plugin_slug, 0, strlen( $slug ) ) ) {
unset( $items[$item_key] );
continue 2;
}
}
if ( !isset($items[$item_key]) )
continue;
$title = esc_html( $item->get_title() );
$description = esc_html( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) ) ) );
$ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) . '&amp;TB_iframe=true&amp;width=600&amp;height=800';
echo "<li class='dashboard-news-plugin'><span>$label:</span> <a href='$link' class='dashboard-news-plugin-link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span></li>";
$$feed->__destruct();
unset( $$feed );
// If we get to this point, then the random plugin isn't installed and we can stop the while().
break;
}
echo '</ul>';
// Eliminate some common badly formed plugin descriptions
while ( ( null !== $item_key = array_rand($items) ) && false !== strpos( $items[$item_key]->get_description(), 'Plugin Name:' ) )
unset($items[$item_key]);
if ( !isset($items[$item_key]) )
continue;
$title = esc_html( $item->get_title() );
$description = esc_html( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) ) ) );
$ilink = wp_nonce_url('plugin-install.php?tab=plugin-information&plugin=' . $slug, 'install-plugin_' . $slug) . '&amp;TB_iframe=true&amp;width=600&amp;height=800';
echo "<li class='dashboard-news-plugin'><span>$label:</span> <a href='$link' class='dashboard-news-plugin-link'>$title</a></h5>&nbsp;<span>(<a href='$ilink' class='thickbox' title='$title'>" . __( 'Install' ) . "</a>)</span></li>";
$$feed->__destruct();
unset( $$feed );
}
echo '</ul>';
}
/**

View File

@ -730,7 +730,7 @@ function get_others_pending($user_id) {
*/
function wp_dashboard_quick_press_output() {
_deprecated_function( __FUNCTION__, '3.2', 'wp_dashboard_quick_press()' );
wp_dashboard_quick_draft();
wp_dashboard_quick_press();
}
/**

View File

@ -1,3 +1,4 @@
/* global pagenow */
var ajaxWidgets, ajaxPopulateWidgets, quickPressLoad;
jQuery(document).ready( function($) {
@ -28,9 +29,7 @@ jQuery(document).ready( function($) {
});
// These widgets are sometimes populated via ajax
ajaxWidgets = [
'dashboard_rss'
];
ajaxWidgets = ['dashboard_primary'];
ajaxPopulateWidgets = function(el) {
function show(i, id) {
@ -38,7 +37,7 @@ jQuery(document).ready( function($) {
if ( e.length ) {
p = e.parent();
setTimeout( function(){
p.load( ajaxurl + '?action=dashboard-widgets&widget=' + id, '', function() {
p.load( ajaxurl + '?action=dashboard-widgets&widget=' + id + '&pagenow=' + pagenow, '', function() {
p.hide().slideDown('normal', function(){
$(this).css('display', '');
});