wp admin dashboard.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface DashboardFacadeInterface {
    function wp_dashboard_setup();
    function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_callback = null, $callback_args = null );
    function _wp_dashboard_control_callback( $dashboard, $meta_box );
    function wp_dashboard();
    function wp_dashboard_right_now();
    function wp_network_dashboard_right_now();
    function wp_dashboard_quick_press( $error_msg = false );
    function wp_dashboard_recent_drafts( $drafts = false );
    function _wp_dashboard_recent_comments_row( &$comment, $show_date = true );
    function wp_dashboard_site_activity();
    function wp_dashboard_recent_posts( $args );
    function wp_dashboard_recent_comments( $total_items = 5 );
    function wp_dashboard_rss_output( $widget_id );
    function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = array() );
    function wp_dashboard_trigger_widget_control( $widget_control_id = false );
    function wp_dashboard_rss_control( $widget_id, $form_inputs = array() );
    function wp_dashboard_primary();
    function wp_dashboard_primary_output( $widget_id, $feeds );
    function wp_dashboard_plugins_output( $rss, $args = array() );
    function wp_dashboard_quota();
    function wp_dashboard_browser_nag();
    function dashboard_browser_nag_class( $classes );
    function wp_check_browser_version();
    function wp_dashboard_empty();
    function wp_welcome_panel();
}