function system_admin_menu_block_page
7.x system.admin.inc | system_admin_menu_block_page() |
6.x system.admin.inc | system_admin_menu_block_page() |
Provide a single block from the administration menu as a page.
This function is often a destination for these blocks. For example, 'admin/structure/types' needs to have a destination to be valid in the Drupal menu system, but too much information there might be hidden, so we supply the contents of the block.
Return value
The output HTML.
3 string references to 'system_admin_menu_block_page'
- system_get_module_admin_tasks in drupal-7.x/
modules/ system/ system.module - Generate a list of tasks offered by a specified module.
- system_menu in drupal-7.x/
modules/ system/ system.module - Implements hook_menu().
- user_menu in drupal-7.x/
modules/ user/ user.module - Implements hook_menu().
File
- drupal-7.x/
modules/ system/ system.admin.inc, line 66 - Admin page callbacks for the system module.
Code
function system_admin_menu_block_page() {
$item = menu_get_item();
if ($content = system_admin_menu_block($item)) {
$output = theme('admin_block_content', array('content' => $content));
}
else {
$output = t('You do not have any administrative items.');
}
return $output;
}