Of the entire website the Dashboard is seen by administrators the most, but it is the hardest part of Wordpress to customize. Well not anymore. This plugin allows you to add whatever you want to the Dashboard through PHP and HTML and allows you to even add Sidebar Widgets. You may also wipe the entire dashboard or individually remove some of the more irritating sections like the Dev news, Planet Wordpress and the getting started section.
In WordPress 2.5, the code is cleaner, the plugin is more responsive and you can add both “real” sidebar widgets, or add “fake” ones to match the dashboard.
This plugin is currently intended for 2.5, but it also works in Wordpress 2.1 - 2.3 and can work in Wordpress 2.0.x if you use the Completely Wipe Dashboard option.

Installation is a breeze:
1. Download the zip file for Wordpress Dashboard Editor
2. Unzip and upload dashboard.php to your wp-content/plugins/ folder.
3. Go to your dashboard. There will be a new sub-menu item.
4. Select any options you want and add any PHP or HTML code that you want to the textbox.
Code Examples:
To add a sidebar widget to your dashboard (after selecting the option from the Dashboard management page) use the code:
<?php dynamic_sidebar(admin);?>
The Admin sidebar is modified and controlled the exact same way as any other sidebar.
If you use the WP-UserOnline plugin you can use:
<?php echo useronline_page();?>
In WordPress 2.1-2.3 f you find that your new content doesn’t align nicely you can add:
1. <div style="float:left; width:460px;">
2. //
3. //Add all other content here
4. //
5. </div>
Any code that can be used in your Wordpress Theme can be used in the dashboard. This means that you can have different information appear for the different user roles among other things.
source: anthologyoi
Related Stuff
Google Buzz Button Wordpress Plugin ReleasedIf you are looking for a Google Buzz button to add into your Wordpress site then we have released the first Wordpress plugin exclusively ...
Plug And Play Ecommerce With Wordpress PluginsSince 2003 Wordpress has slowly been gaining popularity amongst the elite of the internet, the bloggers. It is one of those few things ...
Add Google Search to Your WordPress BlogThe native WordPress search does not return very relevant results, thus it makes a lot of sense to add Google Search into your WordPress ...
Add More Sidebars to Your WordPress ThemeYou can add more than one sidebar section to your WordPress site. For example, with the stc-intermountain.org site, I added a whole bunch ...
Series Posting in WordpressIn my functions.php file, I have some code which implements series posting. This relies on the thematic ...

Original Source: