function block_admin_paths

Implements hook_admin_paths().

File

modules/block/block.module, line 1091

Code

function block_admin_paths() {
    $paths = array(
        // Exclude the block demonstration page from admin (overlay) treatment.
        // This allows us to present this page in its true form, full page.
'admin/structure/block/demo/*' => FALSE,
    );
    return $paths;
}

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