block_admin_paths

7 block.module block_admin_paths()
8 block.module block_admin_paths()

Implements hook_admin_paths().

File

modules/block/block.module, line 1030
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;
}
Login or register to post comments