function block_admin_paths

Implements hook_admin_paths().

File

drupal/modules/block/block.module, line 1092
Controls the visual building blocks a page is constructed with.

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;
}