function block_admin_display

Menu callback for admin/structure/block.

Parameters

$theme: The theme to display the administration page for. If not provided, defaults to the currently used theme.

1 string reference to 'block_admin_display'
block_menu in modules/block/block.module
Implements hook_menu().

File

modules/block/block.admin.inc, line 23

Code

function block_admin_display($theme = NULL) {
    global $theme_key;
    drupal_theme_initialize();
    if (!isset($theme)) {
        // If theme is not specifically set, rehash for the current theme.
        $theme = $theme_key;
    }
    // Fetch and sort blocks.
    $blocks = block_admin_display_prepare_blocks($theme);
    return drupal_get_form('block_admin_display_form', $blocks, $theme);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.