wp-admin/includes/dashboard.php
Lines:
1 to 78 of 78
<?php /** * WordPress Dashboard Widget Administration Screen API * * @package WordPress * @subpackage Administration */ /* function wp_dashboard_setup() – Registers dashboard widgets. */ /* function wp_add_dashboard_widget() – Adds a new dashboard widget. */ /* function _wp_dashboard_control_callback() – Outputs controls for the current dashboard widget. */ /* function wp_dashboard() – Displays the dashboard. */ // // Dashboard Widgets. // /* function wp_dashboard_right_now() – Dashboard widget that displays some basic stats about the site. */ /* function wp_network_dashboard_right_now() – */ /* function wp_dashboard_quick_press() – The Quick Draft widget display and creation of drafts. */ /* function wp_dashboard_recent_drafts() – Show recent drafts of the user on the dashboard. */ /* function _wp_dashboard_recent_comments_row() – Outputs a row for the Recent Comments widget. */ /* function wp_dashboard_site_activity() – Callback function for Activity widget. */ /* function wp_dashboard_recent_posts() – Generates Publishing Soon and Recently Published sections. */ /* function wp_dashboard_recent_comments() – Show Comments section. */ /* function wp_dashboard_rss_output() – Display generic dashboard RSS widget feed. */ /* function wp_dashboard_cached_rss_widget() – Checks to see if all of the feed url in $check_urls are cached. */ // // Dashboard Widgets Controls. // /* function wp_dashboard_trigger_widget_control() – Calls widget control callback. */ /* function wp_dashboard_rss_control() – The RSS dashboard widget control. */ /* function wp_dashboard_events_news() – Renders the Events and News dashboard widget. */ /* function wp_print_community_events_markup() – Prints the markup for the Community Events section of the Events and News Dashboard widget. */ /* function wp_print_community_events_templates() – Renders the events templates for the Event and News widget. */ /* function wp_dashboard_primary() – ‘WordPress Events and News’ dashboard widget. */ /* function wp_dashboard_primary_output() – Display the WordPress events and news feeds. */ /* function wp_dashboard_quota() – Displays file upload quota on dashboard. */ /* function wp_dashboard_browser_nag() – Displays the browser update nag. */ /* function dashboard_browser_nag_class() – */ /* function wp_check_browser_version() – Checks if the user needs a browser update. */ /* function wp_dashboard_php_nag() – Displays the PHP update nag. */ /* function dashboard_php_nag_class() – Adds an additional class to the PHP nag if the current version is insecure. */ /* function wp_dashboard_site_health() – Displays the Site Health Status widget. */ /* function wp_dashboard_empty() – Empty function usable by plugins to output empty dashboard widget (to be populated later by JS). */ /* function wp_welcome_panel() – Displays a welcome panel to introduce users to WordPress. */