function user_dashboard_show_block_content in UserDashboard 7
AJAX callback.
Displays the rendered contents of a specific block.
Parameters
string $module: The block's module name.
string $delta: The block's delta.
1 string reference to 'user_dashboard_show_block_content'
- user_dashboard_menu in ./
user_dashboard.module - Implements hook_menu().
File
- ./
user_dashboard.module, line 535 - The User Dashboard module forks Drupal 7's awesome Dashboard module to provide an individual dashboard for each user on the site.
Code
function user_dashboard_show_block_content($module, $delta) {
dashboard_show_block_content($module, $delta);
}